org.opencrx.kernel.contract1.cci2.DeliveryRequest Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.contract1.cci2;
/**
* Class {@code DeliveryRequest}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:36.550135697Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface DeliveryRequest
extends org.opencrx.kernel.generic.cci2.CrxObject{
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code comments}.
* @return The possibly null value for attribute {@code comments}.
*/
public java.lang.String getComments(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code comments}.
* @param comments The possibly null new value for attribute {@code comments}.
*/
public void setComments(
java.lang.String comments
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code earliestDeliveryAt}.
* @return The possibly null value for attribute {@code earliestDeliveryAt}.
*/
public java.util.Date getEarliestDeliveryAt(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code earliestDeliveryAt}.
* @param earliestDeliveryAt The possibly null new value for attribute {@code earliestDeliveryAt}.
*/
public void setEarliestDeliveryAt(
java.util.Date earliestDeliveryAt
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code latestDeliveryAt}.
* @return The possibly null value for attribute {@code latestDeliveryAt}.
*/
public java.util.Date getLatestDeliveryAt(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code latestDeliveryAt}.
* @param latestDeliveryAt The possibly null new value for attribute {@code latestDeliveryAt}.
*/
public void setLatestDeliveryAt(
java.util.Date latestDeliveryAt
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code state}.
* @return The non-null value for attribute {@code state}.
*/
public short getState(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code state}.
* @param state The non-{@code null} new value for attribute {@code state}.
*/
public void setState(
short state
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
/**
* Object Identity
*/
public interface Identity extends org.oasisopen.cci2.Identity {
/**
* Retrieve the {@code DeliveryRequestContainer}'s identity
* @return the parent object's identity
*/
public org.oasisopen.cci2.Identity getDeliveryRequestContainer();
/**
* Tells whether the {@code id} value is persistent or reassignable.
* @return {@code PERSISTENT} or {@code REASSIGNABLE}
*/
public org.oasisopen.cci2.QualifierType getIdType();
/**
* The {@code id} value
* @return the {@code id} value
*/
public java.lang.String getId();
}
}