ShipmentIntegrationProperties.java
package com.tradecloud.domain.configuration.shipment;
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 = "shipmentintegrationproperties")
@Access(AccessType.FIELD)
public class ShipmentIntegrationProperties extends PersistenceBase {
private static final long serialVersionUID = 1L;
@NotNull
private boolean shipmentReference;
@NotNull
private boolean shippingMode;
@NotNull
private boolean logisticsServiceProvider;
@NotNull
private boolean incoterm;
@NotNull
private boolean clearingAgent;
@NotNull
private boolean vesselName;
@NotNull
private boolean billOfLadingDate;
@NotNull
private boolean masterBillOfLadingDate;
@NotNull
private boolean exFactoryDate;
@NotNull
private boolean houseWayBillNumber;
@NotNull
private boolean houseWayBillDate;
@NotNull
private boolean airWayBillNumber;
@NotNull
private boolean roadConsignmentNote;
@NotNull
private boolean roadConsignmentNoteDate;
@NotNull
private boolean foreignHub;
@NotNull
private boolean status;
@NotNull
private boolean motherVesselVoyageNumber;
@NotNull
private boolean motherVesselVesselName;
@NotNull
private boolean motherVesselCarrier;
@NotNull
private boolean motherVesselFlightNumber;
@NotNull
private boolean motherVesselAirlineName;
@NotNull
private boolean motherVesselVehicleRegistrationNumber;
@NotNull
private boolean motherVesselTransporterName;
@NotNull
private boolean motherVesselPlaceOfLoading;
@NotNull
private boolean motherVesselPlaceOfDischarge;
@NotNull
private boolean motherVesselEstimateDateOfDeparture;
@NotNull
private boolean motherVesselActualDateOfDeparture;
@NotNull
private boolean shippedOnBoardDate;
@NotNull
private boolean vesselCallSign;
@NotNull
private boolean motherVesselEstimateArrivalDateAtPOD;
@NotNull
private boolean motherVesselActualArrivalDateAtPOD;
@NotNull
private boolean containerType;
@NotNull
private boolean containerClearingDepot;
@NotNull
private boolean containerFinalDestination;
@NotNull
private boolean containerSealReference;
@NotNull
private boolean containerNumberOfCartonsPerContainer;
@NotNull
private boolean containerTareWeight;
@NotNull
private boolean containerGrossVolume;
@NotNull
private boolean containerTransporter;
@NotNull
private boolean containerPickupDate;
@NotNull
private boolean containerCustomsEntryDate;
@NotNull
private boolean containerCustomsExitDate;
@NotNull
private boolean containerStoppedByCustoms;
@NotNull
private boolean containerCustomsStoppedUnpacked;
@NotNull
private boolean containerDischargeDate;
@NotNull
private boolean containerCarrierReleaseDate;
@NotNull
private boolean containerTransporterAvailabilityDate;
@NotNull
private boolean containerActualArrivalDateAtFinalDestination;
@NotNull
private boolean containerEstimateArrivalDateAtFD;
@NotNull
private boolean containerActualArrivalDateAtDepot;
@NotNull
private boolean containerEstimateArrivalDateAtDepot;
@NotNull
private boolean updateContainers;
@NotNull
private boolean shippingType;
@NotNull
private boolean itemQuantityOnPackingList;
@NotNull
private boolean proportionOnPackingList;
@NotNull
private boolean billOfLadingReference;
@NotNull
private boolean containerReference;
@NotNull
private boolean sealReference;
@NotNull
private boolean numberOfCartonsPerContainer;
@NotNull
private boolean unitQuantity;
@NotNull
private boolean placeOfDeparture;
@NotNull
private boolean placeOfReceipt;
@NotNull
private boolean placeOfIssue;
@NotNull
private boolean placeOfArrival;
@NotNull
private boolean estimateDateOfDeparture;
@NotNull
private boolean actualDateOfDeparture;
@NotNull
private boolean estimateArrivalDateAtTransshipmentPort;
@NotNull
private boolean actualArrivalDateAtTransshipmentPort;
@NotNull
private boolean estimateDateOfDepartureFromTransshipmentPort;
@NotNull
private boolean actualDateOfDepartureFromTransshipmentPort;
@NotNull
private boolean voyageNumber;
@NotNull
private boolean carrier;
@NotNull
private boolean placeOfDischarge;
@NotNull
private boolean estimateArrivalDateAtPOD;
@NotNull
private boolean seaMotherVoyageNumber;
@NotNull
private boolean seaMotherVesselName;
@NotNull
private boolean seaMothercarrierName;
@NotNull
private boolean seaMotherFeederVesselName;
private boolean useNetWeightToGrossAndCalculate;
private boolean useMasterBillOfLadingFromXMLRefAsBillOfLadingRef;
private boolean createSeaShipmentByMasterWaybillNumber;
private boolean masterBillOfLadingReference;
@NotNull
private int delaySubmissionToLSP;
@NotNull
private boolean roundQuantityToInt;
@NotNull
private boolean telexReleaseDate;
public int getDelaySubmissionToLSP() {
return delaySubmissionToLSP;
}
public void setDelaySubmissionToLSP(int delaySubmissionToLSP) {
this.delaySubmissionToLSP = delaySubmissionToLSP;
}
public boolean isAirWayBillNumber() {
return airWayBillNumber;
}
public void setAirWayBillNumber(boolean airWayBillNumber) {
this.airWayBillNumber = airWayBillNumber;
}
public boolean isBillOfLadingDate() {
return billOfLadingDate;
}
public void setBillOfLadingDate(boolean billOfLadingDate) {
this.billOfLadingDate = billOfLadingDate;
}
public boolean isBillOfLadingReference() {
return billOfLadingReference;
}
public void setBillOfLadingReference(boolean billOfLadingReference) {
this.billOfLadingReference = billOfLadingReference;
}
public boolean isContainerActualArrivalDateAtFinalDestination() {
return containerActualArrivalDateAtFinalDestination;
}
public void setContainerActualArrivalDateAtFinalDestination(boolean containerActualArrivalDateAtFinalDestination) {
this.containerActualArrivalDateAtFinalDestination = containerActualArrivalDateAtFinalDestination;
}
public boolean isContainerCarrierReleaseDate() {
return containerCarrierReleaseDate;
}
public void setContainerCarrierReleaseDate(boolean containerCarrierReleaseDate) {
this.containerCarrierReleaseDate = containerCarrierReleaseDate;
}
public boolean isContainerClearingDepot() {
return containerClearingDepot;
}
public void setContainerClearingDepot(boolean containerClearingDepot) {
this.containerClearingDepot = containerClearingDepot;
}
public boolean isContainerCustomsEntryDate() {
return containerCustomsEntryDate;
}
public void setContainerCustomsEntryDate(boolean containerCustomsEntryDate) {
this.containerCustomsEntryDate = containerCustomsEntryDate;
}
public boolean isContainerCustomsExitDate() {
return containerCustomsExitDate;
}
public void setContainerCustomsExitDate(boolean containerCustomsExitDate) {
this.containerCustomsExitDate = containerCustomsExitDate;
}
public boolean isContainerCustomsStoppedUnpacked() {
return containerCustomsStoppedUnpacked;
}
public void setContainerCustomsStoppedUnpacked(boolean containerCustomsStoppedUnpacked) {
this.containerCustomsStoppedUnpacked = containerCustomsStoppedUnpacked;
}
public boolean isContainerDischargeDate() {
return containerDischargeDate;
}
public void setContainerDischargeDate(boolean containerDischargeDate) {
this.containerDischargeDate = containerDischargeDate;
}
public boolean isContainerEstimateArrivalDateAtFD() {
return containerEstimateArrivalDateAtFD;
}
public void setContainerEstimateArrivalDateAtFD(boolean containerEstimateArrivalDateAtFD) {
this.containerEstimateArrivalDateAtFD = containerEstimateArrivalDateAtFD;
}
public boolean isContainerFinalDestination() {
return containerFinalDestination;
}
public void setContainerFinalDestination(boolean containerFinalDestination) {
this.containerFinalDestination = containerFinalDestination;
}
public boolean isContainerGrossVolume() {
return containerGrossVolume;
}
public void setContainerGrossVolume(boolean containerGrossVolume) {
this.containerGrossVolume = containerGrossVolume;
}
public boolean isContainerNumberOfCartonsPerContainer() {
return containerNumberOfCartonsPerContainer;
}
public void setContainerNumberOfCartonsPerContainer(boolean containerNumberOfCartonsPerContainer) {
this.containerNumberOfCartonsPerContainer = containerNumberOfCartonsPerContainer;
}
public boolean isContainerReference() {
return containerReference;
}
public void setContainerReference(boolean containerReference) {
this.containerReference = containerReference;
}
public boolean isContainerSealReference() {
return containerSealReference;
}
public void setContainerSealReference(boolean containerSealReference) {
this.containerSealReference = containerSealReference;
}
public boolean isContainerStoppedByCustoms() {
return containerStoppedByCustoms;
}
public void setContainerStoppedByCustoms(boolean containerStoppedByCustoms) {
this.containerStoppedByCustoms = containerStoppedByCustoms;
}
public boolean isContainerTransporter() {
return containerTransporter;
}
public void setContainerTransporter(boolean containerTransporter) {
this.containerTransporter = containerTransporter;
}
public boolean isContainerTransporterAvailabilityDate() {
return containerTransporterAvailabilityDate;
}
public void setContainerTransporterAvailabilityDate(boolean containerTransporterAvailabilityDate) {
this.containerTransporterAvailabilityDate = containerTransporterAvailabilityDate;
}
public boolean isContainerType() {
return containerType;
}
public void setContainerType(boolean containerType) {
this.containerType = containerType;
}
public boolean isItemQuantityOnPackingList() {
return itemQuantityOnPackingList;
}
public void setItemQuantityOnPackingList(boolean itemQuantityOnPackingList) {
this.itemQuantityOnPackingList = itemQuantityOnPackingList;
}
public boolean isExFactoryDate() {
return exFactoryDate;
}
public void setExFactoryDate(boolean exFactoryDate) {
this.exFactoryDate = exFactoryDate;
}
public boolean isForeignHub() {
return foreignHub;
}
public void setForeignHub(boolean foreignHub) {
this.foreignHub = foreignHub;
}
public boolean isHouseWayBillNumber() {
return houseWayBillNumber;
}
public void setHouseWayBillNumber(boolean houseWayBillNumber) {
this.houseWayBillNumber = houseWayBillNumber;
}
public boolean isHouseWayBillDate() {
return houseWayBillDate;
}
public void setHouseWayBillDate(boolean houseWayBillDate) {
this.houseWayBillDate = houseWayBillDate;
}
public boolean isMotherVesselActualArrivalDateAtPOD() {
return motherVesselActualArrivalDateAtPOD;
}
public void setMotherVesselActualArrivalDateAtPOD(boolean motherVesselActualArrivalDateAtPOD) {
this.motherVesselActualArrivalDateAtPOD = motherVesselActualArrivalDateAtPOD;
}
public boolean isMotherVesselActualDateOfDeparture() {
return motherVesselActualDateOfDeparture;
}
public void setMotherVesselActualDateOfDeparture(boolean motherVesselActualDateOfDeparture) {
this.motherVesselActualDateOfDeparture = motherVesselActualDateOfDeparture;
}
public boolean isMotherVesselAirlineName() {
return motherVesselAirlineName;
}
public void setMotherVesselAirlineName(boolean motherVesselAirlineName) {
this.motherVesselAirlineName = motherVesselAirlineName;
}
public boolean isMotherVesselCarrier() {
return motherVesselCarrier;
}
public void setMotherVesselCarrier(boolean motherVesselCarrier) {
this.motherVesselCarrier = motherVesselCarrier;
}
public boolean isMotherVesselEstimateArrivalDateAtPOD() {
return motherVesselEstimateArrivalDateAtPOD;
}
public void setMotherVesselEstimateArrivalDateAtPOD(boolean motherVesselEstimateArrivalDateAtPOD) {
this.motherVesselEstimateArrivalDateAtPOD = motherVesselEstimateArrivalDateAtPOD;
}
public boolean isMotherVesselEstimateDateOfDeparture() {
return motherVesselEstimateDateOfDeparture;
}
public void setMotherVesselEstimateDateOfDeparture(boolean motherVesselEstimateDateOfDeparture) {
this.motherVesselEstimateDateOfDeparture = motherVesselEstimateDateOfDeparture;
}
public boolean isMotherVesselFlightNumber() {
return motherVesselFlightNumber;
}
public void setMotherVesselFlightNumber(boolean motherVesselFlightNumber) {
this.motherVesselFlightNumber = motherVesselFlightNumber;
}
public boolean isMotherVesselPlaceOfDischarge() {
return motherVesselPlaceOfDischarge;
}
public void setMotherVesselPlaceOfDischarge(boolean motherVesselPlaceOfDischarge) {
this.motherVesselPlaceOfDischarge = motherVesselPlaceOfDischarge;
}
public boolean isMotherVesselPlaceOfLoading() {
return motherVesselPlaceOfLoading;
}
public void setMotherVesselPlaceOfLoading(boolean motherVesselPlaceOfLoading) {
this.motherVesselPlaceOfLoading = motherVesselPlaceOfLoading;
}
public boolean isMotherVesselTransporterName() {
return motherVesselTransporterName;
}
public void setMotherVesselTransporterName(boolean motherVesselTransporterName) {
this.motherVesselTransporterName = motherVesselTransporterName;
}
public boolean isMotherVesselVehicleRegistrationNumber() {
return motherVesselVehicleRegistrationNumber;
}
public void setMotherVesselVehicleRegistrationNumber(boolean motherVesselVehicleRegistrationNumber) {
this.motherVesselVehicleRegistrationNumber = motherVesselVehicleRegistrationNumber;
}
public boolean isMotherVesselVesselName() {
return motherVesselVesselName;
}
public void setMotherVesselVesselName(boolean motherVesselVesselName) {
this.motherVesselVesselName = motherVesselVesselName;
}
public boolean isMotherVesselVoyageNumber() {
return motherVesselVoyageNumber;
}
public void setMotherVesselVoyageNumber(boolean motherVesselVoyageNumber) {
this.motherVesselVoyageNumber = motherVesselVoyageNumber;
}
public boolean isRoadConsignmentNote() {
return roadConsignmentNote;
}
public void setRoadConsignmentNote(boolean roadConsignmentNote) {
this.roadConsignmentNote = roadConsignmentNote;
}
public boolean isRoadConsignmentNoteDate() {
return roadConsignmentNoteDate;
}
public void setRoadConsignmentNoteDate(boolean roadConsignmentNoteDate) {
this.roadConsignmentNoteDate = roadConsignmentNoteDate;
}
public boolean isStatus() {
return status;
}
public void setStatus(boolean status) {
this.status = status;
}
public boolean isUpdateContainers() {
return updateContainers;
}
public void setUpdateContainers(boolean updateContainers) {
this.updateContainers = updateContainers;
}
public boolean isShippingType() {
return shippingType;
}
public void setShippingType(boolean shippingType) {
this.shippingType = shippingType;
}
public boolean isProportionOnPackingList() {
return proportionOnPackingList;
}
public void setProportionOnPackingList(boolean proportionOnPackingList) {
this.proportionOnPackingList = proportionOnPackingList;
}
public boolean isCarrier() {
return carrier;
}
public void setCarrier(boolean carrier) {
this.carrier = carrier;
}
public boolean isClearingAgent() {
return clearingAgent;
}
public void setClearingAgent(boolean clearingAgent) {
this.clearingAgent = clearingAgent;
}
public boolean isIncoterm() {
return incoterm;
}
public void setIncoterm(boolean incoterm) {
this.incoterm = incoterm;
}
public boolean isLogisticsServiceProvider() {
return logisticsServiceProvider;
}
public void setLogisticsServiceProvider(boolean logisticsServiceProvider) {
this.logisticsServiceProvider = logisticsServiceProvider;
}
public boolean isShipmentReference() {
return shipmentReference;
}
public void setShipmentReference(boolean shipmentReference) {
this.shipmentReference = shipmentReference;
}
public boolean isShippingMode() {
return shippingMode;
}
public void setShippingMode(boolean shippingMode) {
this.shippingMode = shippingMode;
}
public boolean isVesselName() {
return vesselName;
}
public void setVesselName(boolean vesselName) {
this.vesselName = vesselName;
}
public boolean isVoyageNumber() {
return voyageNumber;
}
public void setVoyageNumber(boolean voyageNumber) {
this.voyageNumber = voyageNumber;
}
public boolean isContainerEstimateArrivalDateAtDepot() {
return containerEstimateArrivalDateAtDepot;
}
public void setContainerEstimateArrivalDateAtDepot(boolean containerEstimateArrivalDateAtDepot) {
this.containerEstimateArrivalDateAtDepot = containerEstimateArrivalDateAtDepot;
}
public boolean isContainerPickupDate() {
return containerPickupDate;
}
public void setContainerPickupDate(boolean containerPickupDate) {
this.containerPickupDate = containerPickupDate;
}
public boolean isContainerActualArrivalDateAtDepot() {
return containerActualArrivalDateAtDepot;
}
public void setContainerActualArrivalDateAtDepot(boolean containerActualArrivalDateAtDepot) {
this.containerActualArrivalDateAtDepot = containerActualArrivalDateAtDepot;
}
public boolean isContainerTareWeight() {
return containerTareWeight;
}
public void setContainerTareWeight(boolean containerTareWeight) {
this.containerTareWeight = containerTareWeight;
}
public boolean isSealReference() {
return sealReference;
}
public void setSealReference(boolean sealReference) {
this.sealReference = sealReference;
}
public boolean isNumberOfCartonsPerContainer() {
return numberOfCartonsPerContainer;
}
public void setNumberOfCartonsPerContainer(boolean numberOfCartonsPerContainer) {
this.numberOfCartonsPerContainer = numberOfCartonsPerContainer;
}
public boolean isUnitQuantity() {
return unitQuantity;
}
public void setUnitQuantity(boolean unitQuantity) {
this.unitQuantity = unitQuantity;
}
public boolean isPlaceOfDeparture() {
return placeOfDeparture;
}
public void setPlaceOfDeparture(boolean placeOfDeparture) {
this.placeOfDeparture = placeOfDeparture;
}
public boolean isPlaceOfArrival() {
return placeOfArrival;
}
public void setPlaceOfArrival(boolean placeOfArrival) {
this.placeOfArrival = placeOfArrival;
}
public boolean isEstimateDateOfDeparture() {
return estimateDateOfDeparture;
}
public void setEstimateDateOfDeparture(boolean estimateDateOfDeparture) {
this.estimateDateOfDeparture = estimateDateOfDeparture;
}
public boolean isActualDateOfDeparture() {
return actualDateOfDeparture;
}
public void setActualDateOfDeparture(boolean actualDateOfDeparture) {
this.actualDateOfDeparture = actualDateOfDeparture;
}
public boolean isEstimateArrivalDateAtTransshipmentPort() {
return estimateArrivalDateAtTransshipmentPort;
}
public void setEstimateArrivalDateAtTransshipmentPort(boolean estimateArrivalDateAtTransshipmentPort) {
this.estimateArrivalDateAtTransshipmentPort = estimateArrivalDateAtTransshipmentPort;
}
public boolean isActualArrivalDateAtTransshipmentPort() {
return actualArrivalDateAtTransshipmentPort;
}
public void setActualArrivalDateAtTransshipmentPort(boolean actualArrivalDateAtTransshipmentPort) {
this.actualArrivalDateAtTransshipmentPort = actualArrivalDateAtTransshipmentPort;
}
public boolean isEstimateDateOfDepartureFromTransshipmentPort() {
return estimateDateOfDepartureFromTransshipmentPort;
}
public void setEstimateDateOfDepartureFromTransshipmentPort(boolean estimateDateOfDepartureFromTransshipmentPort) {
this.estimateDateOfDepartureFromTransshipmentPort = estimateDateOfDepartureFromTransshipmentPort;
}
public boolean isActualDateOfDepartureFromTransshipmentPort() {
return actualDateOfDepartureFromTransshipmentPort;
}
public void setActualDateOfDepartureFromTransshipmentPort(boolean actualDateOfDepartureFromTransshipmentPort) {
this.actualDateOfDepartureFromTransshipmentPort = actualDateOfDepartureFromTransshipmentPort;
}
public boolean isPlaceOfDischarge() {
return placeOfDischarge;
}
public void setPlaceOfDischarge(boolean placeOfDischarge) {
this.placeOfDischarge = placeOfDischarge;
}
public boolean isEstimateArrivalDateAtPOD() {
return estimateArrivalDateAtPOD;
}
public void setEstimateArrivalDateAtPOD(boolean estimateArrivalDateAtPOD) {
this.estimateArrivalDateAtPOD = estimateArrivalDateAtPOD;
}
public boolean isSeaMotherVoyageNumber() {
return seaMotherVoyageNumber;
}
public void setSeaMotherVoyageNumber(boolean seaMotherVoyageNumber) {
this.seaMotherVoyageNumber = seaMotherVoyageNumber;
}
public boolean isSeaMotherVesselName() {
return seaMotherVesselName;
}
public void setSeaMotherVesselName(boolean seaMotherVesselName) {
this.seaMotherVesselName = seaMotherVesselName;
}
public boolean isSeaMothercarrierName() {
return seaMothercarrierName;
}
public void setSeaMothercarrierName(boolean seaMothercarrierName) {
this.seaMothercarrierName = seaMothercarrierName;
}
public boolean isSeaMotherFeederVesselName() {
return seaMotherFeederVesselName;
}
public void setSeaMotherFeederVesselName(boolean seaMotherFeederVesselName) {
this.seaMotherFeederVesselName = seaMotherFeederVesselName;
}
public boolean isUseNetWeightToGrossAndCalculate() {
return useNetWeightToGrossAndCalculate;
}
public void setUseNetWeightToGrossAndCalculate(boolean useNetWeightToGrossAndCalculate) {
this.useNetWeightToGrossAndCalculate = useNetWeightToGrossAndCalculate;
}
public boolean isUseMasterBillOfLadingFromXMLRefAsBillOfLadingRef() {
return useMasterBillOfLadingFromXMLRefAsBillOfLadingRef;
}
public void setUseMasterBillOfLadingFromXMLRefAsBillOfLadingRef(boolean useMasterBillOfLadingFromXMLRefAsBillOfLadingRef) {
this.useMasterBillOfLadingFromXMLRefAsBillOfLadingRef = useMasterBillOfLadingFromXMLRefAsBillOfLadingRef;
}
public boolean isCreateSeaShipmentByMasterWaybillNumber() {
return createSeaShipmentByMasterWaybillNumber;
}
public void setCreateSeaShipmentByMasterWaybillNumber(boolean createSeaShipmentByMasterWaybillNumber) {
this.createSeaShipmentByMasterWaybillNumber = createSeaShipmentByMasterWaybillNumber;
}
public boolean isMasterBillOfLadingReference() {
return masterBillOfLadingReference;
}
public void setMasterBillOfLadingReference(boolean masterBillOfLadingReference) {
this.masterBillOfLadingReference = masterBillOfLadingReference;
}
public boolean isMasterBillOfLadingDate() {
return masterBillOfLadingDate;
}
public void setMasterBillOfLadingDate(boolean masterBillOfLadingDate) {
this.masterBillOfLadingDate = masterBillOfLadingDate;
}
public boolean isShippedOnBoardDate() {
return shippedOnBoardDate;
}
public void setShippedOnBoardDate(boolean shippedOnBoardDate) {
this.shippedOnBoardDate = shippedOnBoardDate;
}
public boolean isVesselCallSign() {
return vesselCallSign;
}
public void setVesselCallSign(boolean vesselCallSign) {
this.vesselCallSign = vesselCallSign;
}
public boolean isPlaceOfReceipt() {
return placeOfReceipt;
}
public void setPlaceOfReceipt(boolean placeOfReceipt) {
this.placeOfReceipt = placeOfReceipt;
}
public boolean isPlaceOfIssue() {
return placeOfIssue;
}
public void setPlaceOfIssue(boolean placeOfIssue) {
this.placeOfIssue = placeOfIssue;
}
public boolean isTelexReleaseDate() {
return telexReleaseDate;
}
public void setTelexReleaseDate(boolean telexReleaseDate) {
this.telexReleaseDate = telexReleaseDate;
}
public boolean isRoundQuantityToInt() {
return roundQuantityToInt;
}
public void setRoundQuantityToInt(boolean roundQuantityToInt) {
this.roundQuantityToInt = roundQuantityToInt;
}
}