-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from OP-TED/release/1.12.0
Prepare release of version 1.12.0
- Loading branch information
Showing
100 changed files
with
35,767 additions
and
228 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
50 changes: 50 additions & 0 deletions
50
src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/field/BusinessEntity.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,50 @@ | ||
package eu.europa.ted.eforms.sdk.analysis.domain.field; | ||
|
||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
|
||
@JsonPropertyOrder({"id", "name", "description", "labelId", "repeatable", "repeatsWithNodeId", | ||
"changeIdentification", "instanceIdentifier"}) | ||
public class BusinessEntity { | ||
private String id; | ||
private String name; | ||
private String description; | ||
private String labelId; | ||
private boolean repeatable; | ||
private String repeatsWithNodeId; | ||
|
||
private BusinessEntityChangeIdentification changeIdentification; | ||
|
||
private BusinessEntityIdentifier instanceIdentifier; | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
|
||
public String getLabelId() { | ||
return labelId; | ||
} | ||
|
||
public boolean isRepeatable() { | ||
return repeatable; | ||
} | ||
|
||
public String getRepeatsWithNodeId() { | ||
return repeatsWithNodeId; | ||
} | ||
|
||
public BusinessEntityChangeIdentification getChangeIdentification() { | ||
return changeIdentification; | ||
} | ||
|
||
public BusinessEntityIdentifier getInstanceIdentifier() { | ||
return instanceIdentifier; | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...va/eu/europa/ted/eforms/sdk/analysis/domain/field/BusinessEntityChangeIdentification.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,22 @@ | ||
package eu.europa.ted.eforms.sdk.analysis.domain.field; | ||
|
||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
|
||
@JsonPropertyOrder({"identifyInChangeNotice", "useInstanceIdentifier", "changeIdentifier"}) | ||
public class BusinessEntityChangeIdentification { | ||
private boolean identifyInChangeNotice; | ||
private boolean useInstanceIdentifier; | ||
private String changeIdentifier; | ||
|
||
public boolean isIdentifyInChangeNotice() { | ||
return identifyInChangeNotice; | ||
} | ||
|
||
public boolean isUseInstanceIdentifier() { | ||
return useInstanceIdentifier; | ||
} | ||
|
||
public String getChangeIdentifier() { | ||
return changeIdentifier; | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/field/BusinessEntityIdentifier.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,40 @@ | ||
package eu.europa.ted.eforms.sdk.analysis.domain.field; | ||
|
||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
|
||
import eu.europa.ted.eforms.sdk.analysis.domain.field.enums.IdentifierSchemeFormatName; | ||
|
||
@JsonPropertyOrder({"referencedBusinessEntityId", "prefix", "schemeName", "identifierFieldId", | ||
"captionFieldId"}) | ||
public class BusinessEntityIdentifier { | ||
private IdentifierSchemeFormatName formatName; | ||
private String prefix; | ||
private String schemeName; | ||
private String referencedBusinessEntityId; | ||
private String identifierFieldId; | ||
private String captionFieldId; | ||
|
||
public IdentifierSchemeFormatName getFormatName() { | ||
return formatName; | ||
} | ||
|
||
public String getPrefix() { | ||
return prefix; | ||
} | ||
|
||
public String getSchemeName() { | ||
return schemeName; | ||
} | ||
|
||
public String getReferencedBusinessEntityId() { | ||
return referencedBusinessEntityId; | ||
} | ||
|
||
public String getIdentifierFieldId() { | ||
return identifierFieldId; | ||
} | ||
|
||
public String getCaptionFieldId() { | ||
return captionFieldId; | ||
} | ||
} |
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.