-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/publisher-1.18.0'
- Loading branch information
Showing
722 changed files
with
368 additions
and
84,182 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
20 changes: 20 additions & 0 deletions
20
...er-domain/src/main/java/nl/idgis/publisher/domain/query/ListDatasetPublishedServices.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,20 @@ | ||
package nl.idgis.publisher.domain.query; | ||
|
||
import java.util.List; | ||
|
||
import nl.idgis.publisher.domain.web.DatasetPublishedService; | ||
|
||
public class ListDatasetPublishedServices implements DomainQuery<List<DatasetPublishedService>> { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private final String datasetId; | ||
|
||
public ListDatasetPublishedServices (final String datasetId) { | ||
this.datasetId = datasetId; | ||
} | ||
|
||
public String getDatasetId () { | ||
return this.datasetId; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
publisher-domain/src/main/java/nl/idgis/publisher/domain/query/ListPerformPublish.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,18 @@ | ||
package nl.idgis.publisher.domain.query; | ||
|
||
import java.util.List; | ||
|
||
public class ListPerformPublish implements DomainQuery<Boolean> { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private final List<PerformPublish> performPublishes; | ||
|
||
public ListPerformPublish(List<PerformPublish> performPublishes) { | ||
this.performPublishes = performPublishes; | ||
} | ||
|
||
public List<PerformPublish> getPerformPublishes() { | ||
return performPublishes; | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
publisher-domain/src/main/java/nl/idgis/publisher/domain/web/DatasetPublishedService.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,47 @@ | ||
package nl.idgis.publisher.domain.web; | ||
|
||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonGetter; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
@author Sandro | ||
* | ||
*/ | ||
public class DatasetPublishedService extends Identifiable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private final String name; | ||
private final String environmentId; | ||
|
||
@JsonCreator | ||
public DatasetPublishedService( | ||
final @JsonProperty("") String id, | ||
final @JsonProperty("") String name, | ||
final @JsonProperty("") String environmentId | ||
) { | ||
super(id); | ||
this.name = name; | ||
this.environmentId = environmentId; | ||
} | ||
|
||
@JsonGetter | ||
public String name() { | ||
return name; | ||
} | ||
|
||
@JsonGetter | ||
public String environmentId() { | ||
return environmentId; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "DatasetPublishedService [" | ||
+ "name=" + name | ||
+ ", environmentId=" + environmentId | ||
+ "]"; | ||
} | ||
|
||
} |
Oops, something went wrong.