org.opencrx.kernel.contract1.cci2.ShippingDetail Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.contract1.cci2;
/**
* Abstract class {@code ShippingDetail}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:36.710623112Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface ShippingDetail
{
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code carrier}.
* @return The —possibly {@code null}— value for this reference.
*/
public org.opencrx.kernel.account1.cci2.Account getCarrier(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference {@code carrier}.
* @param carrier The new—possibly {@code null}—value for this reference.
*/
public void setCarrier(
org.opencrx.kernel.account1.cci2.Account carrier
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code giftMessage}.
* @return The possibly null value for attribute {@code giftMessage}.
*/
public java.lang.String getGiftMessage(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code giftMessage}.
* @param giftMessage The possibly null new value for attribute {@code giftMessage}.
*/
public void setGiftMessage(
java.lang.String giftMessage
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code isGift}.
* @return The non-null value for attribute {@code isGift}.
*/
public boolean isGift(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code isGift}.
* @param isGift The non-{@code null} new value for attribute {@code isGift}.
*/
public void setGift(
boolean isGift
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code shippingInstructions}.
* @return The possibly null value for attribute {@code shippingInstructions}.
*/
public java.lang.String getShippingInstructions(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code shippingInstructions}.
* @param shippingInstructions The possibly null new value for attribute {@code shippingInstructions}.
*/
public void setShippingInstructions(
java.lang.String shippingInstructions
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code shippingMethod}.
* @return The non-null value for attribute {@code shippingMethod}.
*/
public short getShippingMethod(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code shippingMethod}.
* @param shippingMethod The non-{@code null} new value for attribute {@code shippingMethod}.
*/
public void setShippingMethod(
short shippingMethod
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code shippingTrackingNumber}.
* @return The possibly null value for attribute {@code shippingTrackingNumber}.
*/
public java.lang.String getShippingTrackingNumber(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code shippingTrackingNumber}.
* @param shippingTrackingNumber The possibly null new value for attribute {@code shippingTrackingNumber}.
*/
public void setShippingTrackingNumber(
java.lang.String shippingTrackingNumber
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}