|
Oracle Content Database Web Services Java API Reference for Oracle WebCenter Suite 10g (10.1.3.2) B32189-01 |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.ifs.fdk.Item
public class Item
Represents an item abstraction of a persistent repository object, such as a document, folder, link, user, group, category, etc. The type of items are defined by the type safe enum ItemType
.
An Item always contains three attributes:
An Item may also contain an optional number of attributes that the caller may be interested in and explicitly requests.
Constructor Summary | |
---|---|
Item() Default constructor in other to be a Java Bean. |
Method Summary | |
---|---|
long |
getId() Returns the ID of the item. |
java.lang.String |
getName() Returns the name of the item. |
NamedValue[] |
getRequestedAttributes() Returns the optionally requested attributes of the item or null if no optional attributes are present. |
java.lang.String |
getType() Returns the type of the item. |
java.lang.String |
toString() Returns a string representation of an item. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Item()
Do NOT use this constructor, it will thorw a RuntimeException
Method Detail |
---|
public long getId()
Item
public java.lang.String getName()
Item
public java.lang.String getType()
Item
ItemTypes
, hence when running in-process it is recommended that the return value is compared against one of the constants using the double-equal "==" operator rather than equals()
.public NamedValue[] getRequestedAttributes()
Item
null
if no optional attributes are present. Note that the return value does not include the ID, NAME and TYPE attributes.
NOTE: When running the client code in-process, the method attributesMap()
MUST be used instead. It will be more efficient to retrieve the attributes from a map than from an array.
public java.lang.String toString()
Item
NOTE: Calling this method is not cheap, protect debugging code so that the string is not computed unnecessarily when not in debug mode.
toString
in class java.lang.Object
|
Oracle Content Database Web Services Java API Reference for Oracle WebCenter Suite 10g (10.1.3.2) B32189-01 |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |