Package com.sun.identity.policy.remote
Class RemoveListenerRequest
- java.lang.Object
-
- com.sun.identity.policy.remote.RemoveListenerRequest
-
public class RemoveListenerRequest extends Object
ThisRemoveListenerRequest
class 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 String
getNotificationURL()
Returns the notification URL to which the notification is sent.String
getServiceName()
Returns the service name on which this listener listens.static RemoveListenerRequest
parseXML(Node pNode)
Returns aRemoveListenerRequest
object constructed from a XML.void
setNotificationURL(String url)
Sets the notification URL to which the notification is sent.void
setServiceName(String name)
Sets the service name on which this listener listens.String
toXMLString()
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 aRemoveListenerRequest
object constructed from a XML.- Parameters:
pNode
- the XML DOM node for theRemoveListenerRequest
object.- Returns:
- constructed
RemoveListenerRequest
object. - Throws:
PolicyEvaluationException
-
toXMLString
public String toXMLString()
Returns a XML representation of this object.- Returns:
- a XML representation of this object.
-
-