update common models
This commit is contained in:
parent
2c98acb185
commit
10a8e93803
|
@ -51,17 +51,17 @@
|
|||
<dependency>
|
||||
<groupId>gr.cite.opendmp</groupId>
|
||||
<artifactId>repositorydepositbase</artifactId>
|
||||
<version>2.0.6</version>
|
||||
<version>2.0.7</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>gr.cite.opendmp</groupId>
|
||||
<artifactId>common-models</artifactId>
|
||||
<version>0.0.9</version>
|
||||
<version>0.0.10</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>gr.cite.opendmp</groupId>
|
||||
<artifactId>file-transformer-base</artifactId>
|
||||
<version>0.0.13</version>
|
||||
<version>0.0.14</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>gr.cite</groupId>
|
||||
|
|
|
@ -55,8 +55,8 @@ public class FieldSetCommonModelBuilder extends BaseCommonModelBuilder<FieldSetM
|
|||
m.setDescription(d.getDescription());
|
||||
m.setExtendedDescription(d.getExtendedDescription());
|
||||
m.setAdditionalInformation(d.getAdditionalInformation());
|
||||
m.setHasMultiplicity(d.getHasMultiplicity());
|
||||
if (d.getMultiplicity() != null) m.setMultiplicity(this.builderFactory.builder(MultiplicityCommonModelBuilder.class).authorize(this.authorize).build(d.getMultiplicity()));
|
||||
// if (d.getHasMultiplicity() != null) m.se(this.builderFactory.builder(MultiplicityCommonModelBuilder.class).authorize(this.authorize).build(d.getMultiplicity())); //TODO: HasMultiplicity
|
||||
if (d.getFields() != null) m.setFields(this.builderFactory.builder(FieldCommonModelBuilder.class).authorize(this.authorize).build(d.getFields()));
|
||||
models.add(new CommonModelBuilderItemResponse<>(m, d));
|
||||
}
|
||||
|
|
|
@ -22,7 +22,8 @@
|
|||
"UNSUCCESSFUL-DELETE": "Unsuccessful Delete",
|
||||
"UNSUCCESSFUL-EMAIL-SEND": "Failed sending email",
|
||||
"UNSUCCESSFUL-REMOVE-TEMPLATE": "Failed to remove template, one or more Descriptions of this Plan use this template",
|
||||
"UNSUCCESSFUL-FINALIZE": "Unsuccessful Finalize"
|
||||
"UNSUCCESSFUL-FINALIZE": "Unsuccessful Finalize",
|
||||
"SUCCESSFUL-RESET": "Successful Reset"
|
||||
},
|
||||
"ERRORS": {
|
||||
"HTTP-REQUEST-ERROR": "An Unexpected Error Has Occurred"
|
||||
|
@ -304,8 +305,8 @@
|
|||
"TENANT-CONFIGURATION-EDITOR": {
|
||||
"TITLE": "Tenant Configuration",
|
||||
"DEFAULT-USER-LOCALE":{
|
||||
"TITLE": "Default User Locale",
|
||||
"HINT": "Default locale assigned to new users"
|
||||
"TITLE": "Default Tenant Locale",
|
||||
"HINT": "Default tenant locale"
|
||||
},
|
||||
"CSS-COLORS":{
|
||||
"TITLE": "App Colors",
|
||||
|
|
Loading…
Reference in New Issue