| com.ibm.emb.meb.wrapper.MetaDataEntityWrapper
MetaDataEntityWrapper | public interface MetaDataEntityWrapper extends javax.ejb.EJBObject(Code) | | Remote interface for Enterprise Bean: MetaDataEntityWrapper
|
Method Summary | |
public void | addMetaDataChild(String pk, String childpk) Invokes addChild(MetaDataEntityLocal) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. | public void | addMetaDataMedia(String pk, String mediapk) Invokes addMediaEntity(MediaEntityLocal) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. | public String | createMediaEntityBean() Invokes create() on MediaEntityLocalHome. | public String | createMetaDataEntityBean() Invokes create() on MetaDataEntityLocalHome. | public String | findMDEBByPrimaryKey(String pk) Invokes findByPrimaryKey(String) on MetaDataEntityLocalHome The primary
key passed in and the primary key returned should be the same (or the
operation has failed) however no validation checking is done by this
method. | public String[] | getMetaDataEntityChildren(String pk) Invokes getChildren() on the MetaDataEntityLocal The primary key passed
will first be resolved to a MetaDataEntityBean on which the operation
should be invoked on. | public long | getMetaDataEntityLastModified(String pk) Invokes getLastModified() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. | public String[] | getMetaDataEntityMediaEntities(String pk, MediaFormat format, boolean searchChildren) Invokes getMediaEntities(MediaFormat, boolean) on the MetaDataEntityLocal
The primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. | public String[] | getMetaDataEntityMediaEntities(String pk, String mimeType, boolean searchChildren) Invokes getMediaEntities(MediaFormat, boolean) on the MetaDataEntityLocal
The primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. | public String[] | getMetaDataEntityMediaEntities(String pk) Invokes getMediaEntities() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. | public String | getMetaDataEntityName(String pk) Invokes getName() on the MetaDataEntityLocal The primary key passed will
first be resolved to a MetaDataEntityBean on which the operation should
be invoked on. | public String | getMetaDataEntityNextVersion(String pk) Invokes getNextVersion() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. | public String[] | getMetaDataEntityParents(String pk) Invokes getParents() on the MetaDataEntityLocal The primary key passed
will first be resolved to a MetaDataEntityBean on which the operation
should be invoked on. | public String | getMetaDataEntityPreviousVersion(String pk) Invokes getPreviousVersion() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. | public String | getMetaDataEntityXML(String pk) Invokes getXML(String) on the MetaDataEntityLocal The primary key passed
will first be resolved to a MetaDataEntityBean on which the operation
should be invoked on. | public String[] | queryMetaDataEntity(String query, String queryLang, java.util.Map options) Invokes the query(String, String, String) on MetaDataEntityLocalHome An
array of primary keys is built from the collection of located
MetaDataEntityBeans and returned. | public void | removeMetaDataChild(String pk, String childpk) Invokes removeChild(MetaDataEntityLocal) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. | public void | removeMetaDataEntity(String key) | public void | removeMetaDataMedia(String pk, String mediapk) Invokes removeMediaEntity(MediaEntityLocal) on the MetaDataEntityLocal
The primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. | public String[] | retrieveMetaDataEntitySupportedOptions(String queryLang) | public String[] | retrieveMetaDataEntitySupportedQueryLanguages() | public void | setMetaDataEntityName(String pk, String name) Invokes setName() on the MetaDataEntityLocal The primary key passed will
first be resolved to a MetaDataEntityBean on which the operation should
be invoked on. | public void | setMetaDataEntityPreviousVersion(String pk, String pvpk) Invokes setPreviousVersion(MetaDataEntityLocal) on the
MetaDataEntityLocal The primary key passed will first be resolved to a
MetaDataEntityBean on which the operation should be invoked on. | public void | setMetaDataEntityXML(String pk, String xmlContent, boolean validate) Invokes setXML(String, String, boolean) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. |
CONTENTACCESS | public static int CONTENTACCESS(Code) | | |
ILLEGALOPTION | public static int ILLEGALOPTION(Code) | | |
MALFORMEDQUERY | public static int MALFORMEDQUERY(Code) | | |
MALFORMEDURL | public static int MALFORMEDURL(Code) | | |
MEDIAFORMAT | public static int MEDIAFORMAT(Code) | | |
NULLPOINTER | public static int NULLPOINTER(Code) | | |
UNSUPPORTEDQUERY | public static int UNSUPPORTEDQUERY(Code) | | |
XMLVALIDATION | public static int XMLVALIDATION(Code) | | |
addMetaDataChild | public void addMetaDataChild(String pk, String childpk) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes addChild(MetaDataEntityLocal) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. If the child primary key is not
null, it will be resolved to a MetaDataEntityBean before it is passed in
to the method. If the child is null, null is passed in.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: childpk - - String representing the primary key of the childMetaDataEntityLocal exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if either primary key can not be foundin the datastore |
addMetaDataMedia | public void addMetaDataMedia(String pk, String mediapk) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes addMediaEntity(MediaEntityLocal) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. If the media primary key is not
null, it will be resolved to a MediaEntityBean before it is passed in to
the method. If the child is null, null is passed in.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: childpk - - String representing the primary key of the mediaMediaEntityLocal exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if either primary key can not be foundin the datastore |
createMediaEntityBean | public String createMediaEntityBean() throws MediaException, CreateException, NamingException, java.rmi.RemoteException(Code) | | Invokes create() on MediaEntityLocalHome. Returns the Primary Key of the
created MediaEntityLocal Throws any exceptions originating from the call
to MediaEntityLocalHome
String - primary key coresponding to the created MediaEntityBean exception: MediaException - thrown if the exception was thrown by theMediaEntityLocalHome import operation exception: NamingException - thrown if there are problems looking up theMediaEntityLocalHome exception: CreateException - thrown if the exception was thrown by theMediaEntityLocalHome import operation |
createMetaDataEntityBean | public String createMetaDataEntityBean() throws MediaException, CreateException, NamingException, java.rmi.RemoteException(Code) | | Invokes create() on MetaDataEntityLocalHome. Returns the Primary Key of
the created MetaDataEntityLocal Throws any exceptions originating from
the call to MetaDataEntityLocalHome
String - primary key coresponding to the createdMetaDataEntityBean exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocalHome import operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: CreateException - thrown if the exception was thrown by theMetaDataEntityLocalHome import operation |
findMDEBByPrimaryKey | public String findMDEBByPrimaryKey(String pk) throws NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes findByPrimaryKey(String) on MetaDataEntityLocalHome The primary
key passed in and the primary key returned should be the same (or the
operation has failed) however no validation checking is done by this
method.
Parameters: pk - - String representing primary key to find in the datastore String - primary key of the located MetaDataEntityBean exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityChildren | public String[] getMetaDataEntityChildren(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getChildren() on the MetaDataEntityLocal The primary key passed
will first be resolved to a MetaDataEntityBean on which the operation
should be invoked on. The array of MetaDataEntityBean children will first
be converted into an array of primary keys representing the children
before being returned.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on String array of primary keys representing the children on theMetaDataEntityBean exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityLastModified | public long getMetaDataEntityLastModified(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getLastModified() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on long representing the timestamp of when MetaDataEntityBean waslast modified exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityMediaEntities | public String[] getMetaDataEntityMediaEntities(String pk, MediaFormat format, boolean searchChildren) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes getMediaEntities(MediaFormat, boolean) on the MetaDataEntityLocal
The primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: format - - MediaFormat object to be passed Parameters: recursive - - if true, children are searched too exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if either primary key can not be foundin the datastore |
getMetaDataEntityMediaEntities | public String[] getMetaDataEntityMediaEntities(String pk, String mimeType, boolean searchChildren) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes getMediaEntities(MediaFormat, boolean) on the MetaDataEntityLocal
The primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: mimeType - - String representing the mime type to be passed Parameters: recursive - - if true, children are searched too exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if either primary key can not be foundin the datastore |
getMetaDataEntityMediaEntities | public String[] getMetaDataEntityMediaEntities(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getMediaEntities() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. The array of MediaEntity children is
converted into an array of primary keys representing the children before
being returned.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on String array of primary keys representing the associatedMediaEntityBeans exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityName | public String getMetaDataEntityName(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getName() on the MetaDataEntityLocal The primary key passed will
first be resolved to a MetaDataEntityBean on which the operation should
be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on String representing the name of the MetaDataEntityBean exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityNextVersion | public String getMetaDataEntityNextVersion(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getNextVersion() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. The primary key of the
MetaDataEntityBean's next version MetaDataEntityBean will be returned or
null if the next version is null.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on String representing the primary key of the MetaDataEntityBean'snext version or null exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityParents | public String[] getMetaDataEntityParents(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getParents() on the MetaDataEntityLocal The primary key passed
will first be resolved to a MetaDataEntityBean on which the operation
should be invoked on. The array of MetaDataEntityBean parents will first
be converted into an array of primary keys representing the parents
before being returned.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on String array of primary keys representing the parents on theMetaDataEntityBean exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityPreviousVersion | public String getMetaDataEntityPreviousVersion(String pk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes getPreviousVersion() on the MetaDataEntityLocal The primary key
passed will first be resolved to a MetaDataEntityBean on which the
operation should be invoked on. The primary key of the
MetaDataEntityBean's previous version MetaDataEntityBean will be returned
or null if the next version is null.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on String representing the primary key of the MetaDataEntityBean'sprevious version or null exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
getMetaDataEntityXML | public String getMetaDataEntityXML(String pk) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes getXML(String) on the MetaDataEntityLocal The primary key passed
will first be resolved to a MetaDataEntityBean on which the operation
should be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on exception: NullPointerException - - thrown if the primary key passed in isnull throws: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation throws: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome throws: FinderException - thrown if either primary key can not be found inthe datastore |
queryMetaDataEntity | public String[] queryMetaDataEntity(String query, String queryLang, java.util.Map options) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes the query(String, String, String) on MetaDataEntityLocalHome An
array of primary keys is built from the collection of located
MetaDataEntityBeans and returned.
Parameters: query - - String representing the partial description to search for Parameters: queryLang - - String representing the query language to use Parameters: options - - String representing the options for the query language String[] - array of primary keys of located MediaEntityBeansmatching the partial description throws: MediaException - thrown if the exception was thrown by theMetaDataEntityLocalHome operation throws: NamingException - thrown if there are problems looking up theMediaEntityLocalHome throws: FinderException - thrown if no MediaEntityBeans can be found by thepartial description |
removeMetaDataChild | public void removeMetaDataChild(String pk, String childpk) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes removeChild(MetaDataEntityLocal) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. If the child primary key is not
null, it will be resolved to a MetaDataEntityBean before it is passed in
to the method. If the child is null, null is passed in.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: childpk - - String representing the primary key of the childMetaDataEntityLocal exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if either primary key can not be foundin the datastore |
removeMetaDataMedia | public void removeMetaDataMedia(String pk, String mediapk) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes removeMediaEntity(MediaEntityLocal) on the MetaDataEntityLocal
The primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on. If the media primary key is not
null, it will be resolved to a MediaEntityBean before it is passed in to
the method. If the child is null, null is passed in.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: childpk - - String representing the primary key of the mediaMediaEntityLocal exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if either primary key can not be foundin the datastore |
retrieveMetaDataEntitySupportedOptions | public String[] retrieveMetaDataEntitySupportedOptions(String queryLang) throws MediaException, NamingException, java.rmi.RemoteException(Code) | | Invokes the retrieveSupportedOptions on MetaDataEntityLocalHome
throws: MediaException - thrown if the exception was thrown by theMetaDataEntityLocalHome operation throws: NamingException - thrown if there are problems looking up theMediaEntityLocalHome |
retrieveMetaDataEntitySupportedQueryLanguages | public String[] retrieveMetaDataEntitySupportedQueryLanguages() throws MediaException, NamingException, java.rmi.RemoteException(Code) | | Invokes the retrieveSupportedQueryLanguages on MetaDataEntityLocalHome
throws: MediaException - thrown if the exception was thrown by theMetaDataEntityLocalHome operation throws: NamingException - thrown if there are problems looking up theMediaEntityLocalHome |
setMetaDataEntityName | public void setMetaDataEntityName(String pk, String name) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes setName() on the MetaDataEntityLocal The primary key passed will
first be resolved to a MetaDataEntityBean on which the operation should
be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: name - - String representing the name of the MetaDataEntityBean exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
setMetaDataEntityPreviousVersion | public void setMetaDataEntityPreviousVersion(String pk, String pvpk) throws NamingException, FinderException, MediaException, java.rmi.RemoteException(Code) | | Invokes setPreviousVersion(MetaDataEntityLocal) on the
MetaDataEntityLocal The primary key passed will first be resolved to a
MetaDataEntityBean on which the operation should be invoked on. The
primary key passed representing the MetaDataEntityBean's previous version
MetaDataEntityBean will be located in the datastore and resolved to a
MetaDataEntityLocal before it is passed into the setter. If the primary
key representing the previous version is null then null will be passed
in.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: pvpk - - String representing the primary key of theMetaDataEntityBean's previous version or null exception: NullPointerException - - thrown if the primary key passed in isnull exception: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation exception: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome exception: FinderException - thrown if the primary key can not be found inthe datastore |
setMetaDataEntityXML | public void setMetaDataEntityXML(String pk, String xmlContent, boolean validate) throws MediaException, NamingException, FinderException, java.rmi.RemoteException(Code) | | Invokes setXML(String, String, boolean) on the MetaDataEntityLocal The
primary key passed will first be resolved to a MetaDataEntityBean on
which the operation should be invoked on.
Parameters: pk - - String representing the primary key of the MetaDataEntityBeanto invoke the operation on Parameters: xmlContent - - String containing the xml metadata to set on theMetaDataEntityBean Parameters: validate - - boolean flag for enabling validation of the xml exception: NullPointerException - - thrown if the primary key passed in isnull throws: MediaException - thrown if the exception was thrown by theMetaDataEntityLocal operation throws: NamingException - thrown if there are problems looking up theMetaDataEntityLocalHome throws: FinderException - thrown if either primary key can not be found inthe datastore |
|
|