ScheduleIntegrationProperties.java
package com.tradecloud.domain.configuration.orderintegration;
import com.tradecloud.common.base.PersistenceBase;
import javax.persistence.Access;
import javax.persistence.AccessType;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;
@Entity
@Table(name = "scheduleintegrationproperties")
@Access(AccessType.FIELD)
public class ScheduleIntegrationProperties extends PersistenceBase {
private static final long serialVersionUID = 1L;
@NotNull
private boolean tariffHeading;
@NotNull
private boolean valid;
@NotNull
private boolean dutyPercent;
@NotNull
private boolean dutyRate;
@NotNull
private boolean otherDuty1;
@NotNull
private boolean otherDuty2;
@NotNull
private boolean otherDuty3;
@NotNull
private boolean calculationMethod;
@NotNull
private boolean tradeAgreement;
@NotNull
private boolean originatingPlace;
@NotNull
private boolean supplementaryQuantity1;
@NotNull
private boolean supplementaryQuantity2;
@NotNull
private boolean supplementaryQuantity3;
public boolean isTariffHeading() {
return tariffHeading;
}
public void setTariffHeading(boolean tariffHeading) {
this.tariffHeading = tariffHeading;
}
public boolean isValid() {
return valid;
}
public void setValid(boolean valid) {
this.valid = valid;
}
public boolean isDutyPercent() {
return dutyPercent;
}
public void setDutyPercent(boolean dutyPercent) {
this.dutyPercent = dutyPercent;
}
public boolean isDutyRate() {
return dutyRate;
}
public void setDutyRate(boolean dutyRate) {
this.dutyRate = dutyRate;
}
public boolean isOtherDuty1() {
return otherDuty1;
}
public void setOtherDuty1(boolean otherDuty1) {
this.otherDuty1 = otherDuty1;
}
public boolean isOtherDuty2() {
return otherDuty2;
}
public void setOtherDuty2(boolean otherDuty2) {
this.otherDuty2 = otherDuty2;
}
public boolean isOtherDuty3() {
return otherDuty3;
}
public void setOtherDuty3(boolean otherDuty3) {
this.otherDuty3 = otherDuty3;
}
public boolean isCalculationMethod() {
return calculationMethod;
}
public void setCalculationMethod(boolean calculationMethod) {
this.calculationMethod = calculationMethod;
}
public boolean isTradeAgreement() {
return tradeAgreement;
}
public void setTradeAgreement(boolean tradeAgreement) {
this.tradeAgreement = tradeAgreement;
}
public boolean isOriginatingPlace() {
return originatingPlace;
}
public void setOriginatingPlace(boolean originatingPlace) {
this.originatingPlace = originatingPlace;
}
public boolean isSupplementaryQuantity1() {
return supplementaryQuantity1;
}
public void setSupplementaryQuantity1(boolean supplementaryQuantity1) {
this.supplementaryQuantity1 = supplementaryQuantity1;
}
public boolean isSupplementaryQuantity2() {
return supplementaryQuantity2;
}
public void setSupplementaryQuantity2(boolean supplementaryQuantity2) {
this.supplementaryQuantity2 = supplementaryQuantity2;
}
public boolean isSupplementaryQuantity3() {
return supplementaryQuantity3;
}
public void setSupplementaryQuantity3(boolean supplementaryQuantity3) {
this.supplementaryQuantity3 = supplementaryQuantity3;
}
}