org.opencrx.kernel.depot1.cci2.SimpleBooking Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.depot1.cci2;
/**
* Class {@code SimpleBooking}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:36.238399143Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface SimpleBooking
extends org.opencrx.kernel.depot1.cci2.Booking{
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code isLocked}.
* @return The possibly null value for attribute {@code isLocked}.
*/
public java.lang.Boolean isLocked(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code isLocked}.
* @param isLocked The possibly null new value for attribute {@code isLocked}.
*/
public void setLocked(
java.lang.Boolean isLocked
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code lockModifiedAt}.
* @return The possibly null value for attribute {@code lockModifiedAt}.
*/
public java.util.Date getLockModifiedAt(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code lockModifiedAt}.
* @param lockModifiedAt The possibly null new value for attribute {@code lockModifiedAt}.
*/
public void setLockModifiedAt(
java.util.Date lockModifiedAt
);
// ----------------------------------------------------------------------------
// Instance/Operation
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.base.cci2.Void lockSimpleBooking(
org.opencrx.kernel.depot1.cci2.LockSimpleBookingParams in
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code lockingReason}.
* @return The possibly null value for attribute {@code lockingReason}.
*/
public java.lang.Short getLockingReason(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code lockingReason}.
* @param lockingReason The possibly null new value for attribute {@code lockingReason}.
*/
public void setLockingReason(
java.lang.Short lockingReason
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code originId}.
* @return The possibly null value for attribute {@code originId}.
*/
public java.lang.String getOriginId(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code originId}.
* @param originId The possibly null new value for attribute {@code originId}.
*/
public void setOriginId(
java.lang.String originId
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code quantity}.
* @return The non-null value for attribute {@code quantity}.
*/
public java.math.BigDecimal getQuantity(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code quantity}.
* @param quantity The non-{@code null} new value for attribute {@code quantity}.
*/
public void setQuantity(
java.math.BigDecimal quantity
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code quantityUom}.
* @return The —possibly {@code null}— value for this reference.
*/
public org.opencrx.kernel.uom1.cci2.Uom getQuantityUom(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference {@code quantityUom}.
* @param quantityUom The new—possibly {@code null}—value for this reference.
*/
public void setQuantityUom(
org.opencrx.kernel.uom1.cci2.Uom quantityUom
);
// ----------------------------------------------------------------------------
// Instance/Operation
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.base.cci2.Void unlockSimpleBooking(
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
/**
* Object Identity
*/
public interface Identity extends org.oasisopen.cci2.Identity {
/**
* Retrieve the {@code Segment}'s identity
* @return the parent object's identity
*/
public org.openmdx.base.cci2.Segment.Identity getSegment();
/**
* 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();
}
}