org.openmdx.audit2.cci2.Involvement Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.audit2.cci2;
/**
* Class Involvement
*/
public interface Involvement
extends org.openmdx.base.cci2.ExtentCapable{
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference afterImage
.
* @return The – possibly null
– value for this reference.
*/
public org.openmdx.base.cci2.Modifiable getAfterImage(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference afterImage
.
* @param afterImage The new – possibly null
– value for this reference.
*/
public void setAfterImage(
org.openmdx.base.cci2.Modifiable afterImage
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference beforeImage
.
* @return The – possibly null
– value for this reference.
*/
public org.openmdx.base.cci2.Modifiable getBeforeImage(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference beforeImage
.
* @param beforeImage The new – possibly null
– value for this reference.
*/
public void setBeforeImage(
org.openmdx.base.cci2.Modifiable beforeImage
);
// ----------------------------------------------------------------------------
// Instance/AttributeGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the attribute modifiedFeature
.
* @return A set containing all elements for this attribute.
*/
public java.util.Set getModifiedFeature(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference object
.
* @return The – possibly null
– value for this reference.
*/
public org.openmdx.base.cci2.Modifiable getObject(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference object
.
* @param object The new – possibly null
– value for this reference.
*/
public void setObject(
org.openmdx.base.cci2.Modifiable object
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute objectId
.
* @return The non-null value for attribute objectId
.
*/
public java.lang.String getObjectId(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute taskId
.
* @return The possibly null value for attribute taskId
.
*/
public java.lang.String getTaskId(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference unitOfWork
.
* @return The non-null
value for this reference.
*/
public org.openmdx.audit2.cci2.UnitOfWork getUnitOfWork(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute unitOfWorkId
.
* @return The non-null value for attribute unitOfWorkId
.
*/
public java.lang.String getUnitOfWorkId(
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
/**
* Object Identity
*/
public interface Identity extends org.oasisopen.cci2.Identity {
/**
* Retrieve the UnitOfWork
's identity
* @return the parent object's identity
*/
public org.openmdx.audit2.cci2.UnitOfWork.Identity getUnitOfWork();
/**
* Tells whether the id
value is persistent or reassignable.
* @return PERSISTENT
or REASSIGNABLE
*/
public org.oasisopen.cci2.QualifierType getIdType();
/**
* The id
value
* @return the id
value
*/
public java.lang.String getId();
}
}