net.nan21.dnet.module.bd.standards.ds.model.ClassificationSystemDs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nan21.dnet.module.bd.presenter Show documentation
Show all versions of nan21.dnet.module.bd.presenter Show documentation
Base data module presentation layer.
The newest version!
/*
* DNet eBusiness Suite
* Copyright: 2010-2013 Nan21 Electronics SRL. All rights reserved.
* Use is subject to license terms.
*/
package net.nan21.dnet.module.bd.standards.ds.model;
import net.nan21.dnet.core.api.annotation.Ds;
import net.nan21.dnet.core.api.annotation.DsField;
import net.nan21.dnet.core.api.annotation.SortField;
import net.nan21.dnet.core.presenter.model.base.AbstractTypeWithCodeDs;
import net.nan21.dnet.module.bd.standards.domain.entity.ClassificationSystem;
@Ds(entity = ClassificationSystem.class, sort = {@SortField(field = ClassificationSystemDs.f_name)})
public class ClassificationSystemDs
extends
AbstractTypeWithCodeDs {
public static final String f_internal = "internal";
public static final String f_tag = "tag";
public static final String f_useInContext = "useInContext";
@DsField
private Boolean internal;
@DsField
private String tag;
@DsField
private String useInContext;
public ClassificationSystemDs() {
super();
}
public ClassificationSystemDs(ClassificationSystem e) {
super(e);
}
public Boolean getInternal() {
return this.internal;
}
public void setInternal(Boolean internal) {
this.internal = internal;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getUseInContext() {
return this.useInContext;
}
public void setUseInContext(String useInContext) {
this.useInContext = useInContext;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy