add DescriptionTemplateType
This commit is contained in:
parent
f80d8df515
commit
6853faf361
|
@ -0,0 +1,24 @@
|
|||
package eu.eudat.commonmodels.models;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public class DescriptionTemplateTypeModel {
|
||||
private UUID id;
|
||||
private String name;
|
||||
|
||||
public UUID getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(UUID id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
|
@ -1,6 +1,8 @@
|
|||
package eu.eudat.commonmodels.models.descriptiotemplate;
|
||||
|
||||
|
||||
import eu.eudat.commonmodels.models.DescriptionTemplateTypeModel;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public class DescriptionTemplateModel {
|
||||
|
@ -10,6 +12,7 @@ public class DescriptionTemplateModel {
|
|||
private String label;
|
||||
|
||||
private String description;
|
||||
private DescriptionTemplateTypeModel type;
|
||||
|
||||
private UUID groupId;
|
||||
|
||||
|
@ -74,6 +77,14 @@ public class DescriptionTemplateModel {
|
|||
public void setDefinition(DefinitionModel definition) {
|
||||
this.definition = definition;
|
||||
}
|
||||
|
||||
public DescriptionTemplateTypeModel getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(DescriptionTemplateTypeModel type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue