argos/dmp-backend/src/main/java/eu/eudat/models/datasetprofile/DatasetProfileAutocompleteI...

50 lines
1000 B
Java

package eu.eudat.models.datasetprofile;
import eu.eudat.entities.DatasetProfile;
import eu.eudat.models.DataModel;
import java.util.UUID;
public class DatasetProfileAutocompleteItem implements DataModel<DatasetProfile,DatasetProfileAutocompleteItem> {
private UUID id;
private String label;
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
@Override
public DatasetProfileAutocompleteItem fromDataModel(DatasetProfile entity) {
this.id = entity.getId();
this.label = entity.getLabel();
return this;
}
@Override
public DatasetProfile toDataModel() {
DatasetProfile profile = new DatasetProfile();
profile.setId(this.id);
return profile;
}
@Override
public String getHint() {
return null;
}
}