org.opencrx.kernel.reservation1.cci2
Interface Event

All Superinterfaces:
AlertSender, Auditee, org.openmdx.base.cci2.BasicObject, Cloneable, org.openmdx.base.cci2.ContextCapable, CrxObject, DescriptionContainer, org.openmdx.base.cci2.ExtentCapable, Importer, Indexed, SecureObject, org.openmdx.compatibility.view1.cci2.ViewCapable, XmlExporter
All Known Subinterfaces:
Event
All Known Implementing Classes:
Event

public interface Event
extends CrxObject, DescriptionContainer

Class Event


Nested Class Summary
static interface Event.Identity
          Object Identity
 
Method Summary
 void addContact(boolean idIsPersistent, String id, ContactRole contact)
          Adds the specified element to the set of the values for the reference contact.
 void addPart(boolean idIsPersistent, String id, Part part)
          Adds the specified element to the set of the values for the reference part.
<T extends ContactRole>
Collection<T>
getContact()
          Retrieves a set containing all the elements for the reference contact.
 ContactRole getContact(boolean idIsPersistent, String id)
          Retrieves the value for the reference contact for the specified qualifier attribute value.
 String getDescription()
          Retrieves the possibly null value for the optional attribute description.
 String getName()
          Retrieves the value for the attribute name.
<T extends Part>
Collection<T>
getPart()
          Retrieves a set containing all the elements for the reference part.
 Part getPart(boolean idIsPersistent, String id)
          Retrieves the value for the reference part for the specified qualifier attribute value.
 Uom getSliceUom()
          Retrieves the value for the reference sliceUom.
 Uom getSlotUom()
          Retrieves the value for the reference slotUom.
 void setDescription(String description)
          Sets a new value for the attribute description.
 void setName(String name)
          Sets a new value for the attribute name.
 void setSliceUom(Uom sliceUom)
          Sets a new value for the reference sliceUom.
 void setSlotUom(Uom slotUom)
          Sets a new value for the reference slotUom.
 
Methods inherited from interface org.opencrx.kernel.generic.cci2.CrxObject
addAdditionalExternalLink, addAttachedDocument, addMedia, addNote, addPropertySet, addRating, getAdditionalExternalLink, getAdditionalExternalLink, getAttachedDocument, getAttachedDocument, getCategory, getDisabledReason, getExternalLink, getMedia, getMedia, getNote, getNote, getPropertySet, getPropertySet, getPropertySetEntry, getPropertySetEntry, getRating, getRating, getUserBoolean4, getUserCode0, getUserCode1, getUserCode2, getUserCode3, getUserCode4, getUserDate0, getUserDate1, getUserDate2, getUserDate3, getUserDate4, getUserDateTime0, getUserDateTime1, getUserDateTime2, getUserDateTime3, getUserDateTime4, getUserNumber0, getUserNumber1, getUserNumber2, getUserNumber3, getUserNumber4, getUserString0, getUserString1, getUserString2, getUserString3, getUserString4, isDisabled, isUserBoolean0, isUserBoolean1, isUserBoolean2, isUserBoolean3, setCategory, setDisabled, setDisabledReason, setExternalLink, setUserBoolean0, setUserBoolean1, setUserBoolean2, setUserBoolean3, setUserBoolean4, setUserCode0, setUserCode1, setUserCode2, setUserCode3, setUserCode4, setUserDate0, setUserDate1, setUserDate2, setUserDate3, setUserDate4, setUserDateTime0, setUserDateTime1, setUserDateTime2, setUserDateTime3, setUserDateTime4, setUserNumber0, setUserNumber1, setUserNumber2, setUserNumber3, setUserNumber4, setUserString0, setUserString1, setUserString2, setUserString3, setUserString4
 
Methods inherited from interface org.opencrx.kernel.base.cci2.AlertSender
sendAlert
 
Methods inherited from interface org.opencrx.kernel.base.cci2.Auditee
getAudit, getAudit
 
Methods inherited from interface org.opencrx.kernel.base.cci2.Cloneable
clone_
 
Methods inherited from interface org.opencrx.kernel.base.cci2.Importer
importItem
 
Methods inherited from interface org.opencrx.kernel.base.cci2.Indexed
getIndexEntry, getIndexEntry, updateIndex
 
Methods inherited from interface org.opencrx.kernel.base.cci2.SecureObject
addOwningGroup, checkPermissions, getAccessGrantedByParent, getAccessLevelBrowse, getAccessLevelDelete, getAccessLevelUpdate, getOwner, getOwningGroup, getOwningUser, removeAllOwningGroup, removeOwningGroup, setAccessLevel, setAccessLevelBrowse, setAccessLevelDelete, setAccessLevelUpdate, setOwningUser, setOwningUser
 
Methods inherited from interface org.opencrx.kernel.base.cci2.XmlExporter
exportXml
 
Methods inherited from interface org.openmdx.base.cci2.BasicObject
getCreatedAt, getCreatedBy, getModifiedAt, getModifiedBy
 
Methods inherited from interface org.openmdx.base.cci2.ExtentCapable
getIdentity
 
Methods inherited from interface org.openmdx.compatibility.view1.cci2.ViewCapable
getView, getView
 
Methods inherited from interface org.opencrx.kernel.generic.cci2.DescriptionContainer
addAdditionalDescription, getAdditionalDescription, getAdditionalDescription
 

Method Detail

getContact

<T extends ContactRole> Collection<T> getContact()
Retrieves a set containing all the elements for the reference contact.

Returns:
A set containing all the elements for this reference.

getContact

ContactRole getContact(boolean idIsPersistent,
                       String id)
Retrieves the value for the reference contact for the specified qualifier attribute value.

Parameters:
idIsPersistent - Defines whether value for the qualifier is persistent or not
id - The value for the qualifier attribute that qualifies this reference.
Returns:
The possibly null value for this qualifier

addContact

void addContact(boolean idIsPersistent,
                String id,
                ContactRole contact)
Adds the specified element to the set of the values for the reference contact.

Note: This is an extension to the JMI 1 standard.

Parameters:
idIsPersistent - true if id is persistent
id - The qualifier attribute value that qualifies the reference to get the element to be appended.
contact - The element to be appended.

getDescription

String getDescription()
Retrieves the possibly null value for the optional attribute description.

Returns:
The possibly null value for attribute description.

setDescription

void setDescription(String description)
Sets a new value for the attribute description.

Parameters:
description - The possibly null new value for attribute description.

getName

String getName()
Retrieves the value for the attribute name.

Returns:
The non-null value for attribute name.

setName

void setName(String name)
Sets a new value for the attribute name.

Parameters:
name - The non-null new value for attribute name.

getPart

<T extends Part> Collection<T> getPart()
Retrieves a set containing all the elements for the reference part.

Returns:
A set containing all the elements for this reference.

getPart

Part getPart(boolean idIsPersistent,
             String id)
Retrieves the value for the reference part for the specified qualifier attribute value.

Parameters:
idIsPersistent - Defines whether value for the qualifier is persistent or not
id - The value for the qualifier attribute that qualifies this reference.
Returns:
The possibly null value for this qualifier

addPart

void addPart(boolean idIsPersistent,
             String id,
             Part part)
Adds the specified element to the set of the values for the reference part.

Note: This is an extension to the JMI 1 standard.

Parameters:
idIsPersistent - true if id is persistent
id - The qualifier attribute value that qualifies the reference to get the element to be appended.
part - The element to be appended.

getSliceUom

Uom getSliceUom()
Retrieves the value for the reference sliceUom.

Returns:
The – possibly null – value for this reference.

setSliceUom

void setSliceUom(Uom sliceUom)
Sets a new value for the reference sliceUom.

Parameters:
sliceUom - The non-null new value for this reference.

getSlotUom

Uom getSlotUom()
Retrieves the value for the reference slotUom.

Returns:
The – possibly null – value for this reference.

setSlotUom

void setSlotUom(Uom slotUom)
Sets a new value for the reference slotUom.

Parameters:
slotUom - The non-null new value for this reference.


This software is published under the BSD license. Copyright © 2003-2008, CRIXP AG, Switzerland, All rights reserved. Use is subject to license terms.