| |
|
| java.lang.Object org.wso2.esb.services.AbstractESBAdmin org.wso2.esb.services.EntriesAdmin
EntriesAdmin | public class EntriesAdmin extends AbstractESBAdmin (Code) | | This is a POJO for Entry based administration service
|
addEntry | public boolean addEntry(OMElement elem) throws AxisFault(Code) | | Add a entry into the synapseConfiguration
Parameters: elem - - Entry object to be added as an OMElement throws: AxisFault - if a Entry exists with the same name or if theelement provided is not a Entry element |
deleteEntry | public boolean deleteEntry(String entryName) throws AxisFault(Code) | | Deletes the entry with the given name from SynapseConfiguration
Parameters: entryName - - Name of the entry to delete throws: AxisFault - if the entry described by the given name doesntexists in the Synapse Configuration |
getEntry | public OMElement getEntry(String entryName) throws AxisFault(Code) | | Returns the OMelement representation of the entry given by sequence
name
Parameters: entryName - - name of the entry to get OMElement representing the entryMediator of the given entryname throws: AxisFault - if any error occured while getting the data from theSynapseConfiguration |
getEntryNames | public String[] getEntryNames() throws AxisFault(Code) | | Returns an String array of the entry names present in the synapse configuration
String array of entry names throws: AxisFault - if an error occurs in getting the synapse configuration |
getEntryNamesString | public String getEntryNamesString() throws AxisFault(Code) | | |
saveEntry | public boolean saveEntry(OMElement elem) throws AxisFault(Code) | | Saves the entry described with the OMElement representing the entry
Parameters: elem - - OMElement representing the entry throws: AxisFault - if the entry name already exists or if the Elementdoesnt represent a entry element |
|
|
|