![JAR search and dependency download from the Maven repository](/logo.png)
sk.seges.acris.shared.model.dto.CountryDTO Maven / Gradle / Ivy
The newest version!
package sk.seges.acris.shared.model.dto;
import java.io.Serializable;
import javax.annotation.Generated;
import sk.seges.sesam.pap.model.annotation.TransferObjectMapping;
@SuppressWarnings("serial")
@TransferObjectMapping(dtoClass = CountryDTO.class,
domainClassName = "sk.seges.corpis.server.domain.jpa.JpaCountry",
configurationClassName = "sk.seges.acris.server.model.dto.configuration.CountryDTOConfiguration",
generateConverter = false, generateDto = false,
converterClassName = "sk.seges.acris.server.model.dto.configuration.CountryDTOConverter")
@Generated(value = "sk.seges.corpis.pap.model.hibernate.HibernateTransferObjectProcessor")
public class CountryDTO implements Serializable {
public static final String COUNTRY = "country";
private String country;
public static final String ID = "id";
private Long id;
public static final String LABEL = "label";
private String label;
public CountryDTO() {}
public CountryDTO(String country, Long id, String label) {
this.country = country;
this.id = id;
this.label = label;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy