|
Oracle BPEL Process Manager Client Java API Reference 10g Release 3 (10.1.3.1.0) B28986-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IBaseFacade
This is the base facade interface provides some basic methods to manipulate the backend XML dom element. All generated facade interfaces extends this interface which provides the developers to directly use the methods defined in this interface.
Method Summary | |
---|---|
java.lang.String |
__getFacadeName() Returns the name of the facade class name. |
void |
addChildElement(java.lang.String childElementName, java.lang.String namespaceUri, int index, java.lang.Object elementValue) This method IS NOT IMPLEMENTED. |
void |
addChildElement(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.Object elementValue) Adds this new child element with the given element content. |
void |
clearChildElements(java.lang.String childElementName, java.lang.String namespaceUri) Clears the contents of the child element. |
boolean |
containsChildElement(java.lang.String childElementName, java.lang.String namespaceUri) Returns true if the specified child element does exist within the subtree rooted at this facade's root element. |
java.lang.String |
getAttributeValue(java.lang.String attributeName, java.lang.String namespaceUri) Returns the attribute value for the given attribute name. |
org.w3c.dom.Element |
getChildElement(java.lang.String childElementName, java.lang.String namespaceUri) Returns the child element for the given child element name. |
org.w3c.dom.Element |
getChildElement(java.lang.String childElementName, java.lang.String namespaceUri, int index) Returns the child element for the given child element name and the position. |
java.util.List |
getChildElements(java.lang.String childElementName, java.lang.String namespaceUri) Returns the child elements for the given child element name The list contains children of type org.w3c.dom.Element . |
java.lang.String |
getChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri) Returns the child element value for the given child element name. |
java.lang.String |
getChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, int index) Returns the child element value for the given child element name and the position. |
java.lang.String |
getSimpleContent() |
boolean |
isRootElement() Returns true if this is a root element. |
boolean |
isRootElement(org.w3c.dom.Element element) Check if the given element is a root element or not. |
int |
numberOfChildElements(java.lang.String childElementName, java.lang.String namespaceUri) Returns the size of children of the given child element name. |
java.lang.Object |
removeChildElement(java.lang.String childElementName, java.lang.String namespaceUri, int index) Removes the particular child element from this root element. |
boolean |
removeChildElement(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.Object element) Removes the particular child element from this root element. |
void |
setAttributeValue(java.lang.String attributeName, java.lang.String namespaceUri, java.lang.Object arributeValue) Sets the new value for the given child attribute. |
void |
setChildElement(java.lang.String childElementName, java.lang.String namespaceUri, org.w3c.dom.Element newChildElement) Sets the new element value object for the given child element. |
void |
setChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, int index, java.lang.String elementValue) Finds the child element for the given element name and set the child element value. |
void |
setChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.Object elementValue) Sets the new value for the given child element. |
void |
setChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.String elementValue) Sets the new value for the given child element. |
void |
setRootElement(org.w3c.dom.Element pElement) Sets the specified DOM element for this facade. |
void |
setSimpleContent(java.lang.Object obj) |
org.w3c.dom.Element |
toDOM() Returns the w3c dom element for this facade. |
Methods inherited from interface org.collaxa.xml.IFacade |
---|
getRootElement |
Method Detail |
---|
java.lang.String __getFacadeName()
void setRootElement(org.w3c.dom.Element pElement) throws com.collaxa.cube.CubeException
com.collaxa.cube.CubeException
java.lang.String getAttributeValue(java.lang.String attributeName, java.lang.String namespaceUri)
attributeName
- the attribute namenamespaceUri
- the namespace for the attributevoid setAttributeValue(java.lang.String attributeName, java.lang.String namespaceUri, java.lang.Object arributeValue)
attributeName
- name of the attributenamespaceUri
- namespace uri for the attributearributeValue
- the value of the attributeorg.w3c.dom.Element getChildElement(java.lang.String childElementName, java.lang.String namespaceUri)
childElementName
- String child element namenamespaceUri
- namespace uri for the elementjava.util.List getChildElements(java.lang.String childElementName, java.lang.String namespaceUri)
org.w3c.dom.Element
.childElementName
- child element namenamespaceUri
- namespace uri for the elementorg.w3c.dom.Element getChildElement(java.lang.String childElementName, java.lang.String namespaceUri, int index)
childElementName
- child element namenamespaceUri
- namespace uri for the elementindex
- position of the elementjava.lang.String getChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, int index)
childElementName
- child element namenamespaceUri
- namespace uri for the elementindex
- position of the elementjava.lang.String getChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri)
childElementName
- child element namenamespaceUri
- namespace uri for the elementvoid setChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, int index, java.lang.String elementValue)
NoSuchElementException
.childElementName
- child element namenamespaceUri
- namespace uri for the elementindex
- position where to set the child element valueelementValue
- element content that needs to be setvoid setChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.Object elementValue)
childElementName
- child element namenamespaceUri
- namespace uri for the elementelementValue
- Object element valuevoid setChildElement(java.lang.String childElementName, java.lang.String namespaceUri, org.w3c.dom.Element newChildElement)
childElementName
- child element namenamespaceUri
- namespace uri for the elementnewChildElement
- new child elementvoid setChildElementValue(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.String elementValue)
childElementName
- child element namenamespaceUri
- namespace uri for the elementelementValue
- string value of elementvoid addChildElement(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.Object elementValue) throws java.lang.Exception
childElementName
- the child element namenamespaceUri
- namespace uri for the elementelementValue
- Object the element contentjava.lang.Exception
void addChildElement(java.lang.String childElementName, java.lang.String namespaceUri, int index, java.lang.Object elementValue)
childElementName
- the child element namenamespaceUri
- namespace uri for the elementelementValue
- Object the element contentboolean containsChildElement(java.lang.String childElementName, java.lang.String namespaceUri)
true
if the specified child element does exist within the subtree rooted at this facade's root element.childElementName
- the child element namenamespaceUri
- namespace uri for the elementint numberOfChildElements(java.lang.String childElementName, java.lang.String namespaceUri)
childElementName
- child element namenamespaceUri
- namespace uri for the elementboolean removeChildElement(java.lang.String childElementName, java.lang.String namespaceUri, java.lang.Object element)
childElementName
- child element namenamespaceUri
- namespace uri for the elementtrue
if the element was successfully removed; false
if the element could not be found.java.lang.Object removeChildElement(java.lang.String childElementName, java.lang.String namespaceUri, int index)
childElementName
- child element namenamespaceUri
- namespace uri for the elementindex
- the child element positionvoid clearChildElements(java.lang.String childElementName, java.lang.String namespaceUri)
childElementName
- child element namenamespaceUri
- namespace uri for the elementboolean isRootElement()
true
if this is a root element.boolean isRootElement(org.w3c.dom.Element element)
java.lang.String getSimpleContent()
void setSimpleContent(java.lang.Object obj)
org.w3c.dom.Element toDOM()
getRootElement()
method.
|
Oracle BPEL Process Manager Client Java API Reference 10g Release 3 (10.1.3.1.0) B28986-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |