Package com.sun.identity.policy.remote
Class RemoveListenerRequest
- java.lang.Object
-
- com.sun.identity.policy.remote.RemoveListenerRequest
-
public class RemoveListenerRequest extends Object
ThisRemoveListenerRequestclass represents an RemovePolicyListener XML document. The RemovePolicyListener DTD is defined as the following:
-
-
Constructor Summary
Constructors Constructor Description RemoveListenerRequest()Default constructor forRemoveListenerRequest.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetNotificationURL()Returns the notification URL to which the notification is sent.StringgetServiceName()Returns the service name on which this listener listens.static RemoveListenerRequestparseXML(Node pNode)Returns aRemoveListenerRequestobject constructed from a XML.voidsetNotificationURL(String url)Sets the notification URL to which the notification is sent.voidsetServiceName(String name)Sets the service name on which this listener listens.StringtoXMLString()Returns a XML representation of this object.
-
-
-
Method Detail
-
getServiceName
public String getServiceName()
Returns the service name on which this listener listens.- Returns:
- service name.
-
setServiceName
public void setServiceName(String name)
Sets the service name on which this listener listens.- Parameters:
name- the service name.
-
getNotificationURL
public String getNotificationURL()
Returns the notification URL to which the notification is sent.- Returns:
- notification URL.
-
setNotificationURL
public void setNotificationURL(String url)
Sets the notification URL to which the notification is sent.- Parameters:
url- the notification URL.
-
parseXML
public static RemoveListenerRequest parseXML(Node pNode) throws PolicyEvaluationException
Returns aRemoveListenerRequestobject constructed from a XML.- Parameters:
pNode- the XML DOM node for theRemoveListenerRequestobject.- Returns:
- constructed
RemoveListenerRequestobject. - Throws:
PolicyEvaluationException
-
toXMLString
public String toXMLString()
Returns a XML representation of this object.- Returns:
- a XML representation of this object.
-
-