-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring for multimodal multicampaign
- Loading branch information
1 parent
304a40a
commit cf1d48c
Showing
43 changed files
with
18,856 additions
and
744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 0 additions & 105 deletions
105
backend/src/main/java/it/smartcommunitylab/pgazienda/domain/PGApp.java
This file was deleted.
Oops, something went wrong.
56 changes: 56 additions & 0 deletions
56
backend/src/main/java/it/smartcommunitylab/pgazienda/domain/Territory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package it.smartcommunitylab.pgazienda.domain; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
public class Territory { | ||
|
||
private String territoryId; | ||
private Map<String, String> name = new HashMap<>(); | ||
private Map<String, String> description = new HashMap<>(); | ||
private String timezone; | ||
|
||
private Map<String, Object> territoryData = new HashMap<>(); | ||
|
||
public String getTerritoryId() { | ||
return territoryId; | ||
} | ||
|
||
public void setTerritoryId(String territoryId) { | ||
this.territoryId = territoryId; | ||
} | ||
|
||
public Map<String, String> getName() { | ||
return name; | ||
} | ||
|
||
public void setName(Map<String, String> name) { | ||
this.name = name; | ||
} | ||
|
||
public Map<String, String> getDescription() { | ||
return description; | ||
} | ||
|
||
public void setDescription(Map<String, String> description) { | ||
this.description = description; | ||
} | ||
|
||
public String getTimezone() { | ||
return timezone; | ||
} | ||
|
||
public void setTimezone(String timezone) { | ||
this.timezone = timezone; | ||
} | ||
|
||
public Map<String, Object> getTerritoryData() { | ||
return territoryData; | ||
} | ||
|
||
public void setTerritoryData(Map<String, Object> territoryData) { | ||
this.territoryData = territoryData; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.