com.highdeal.pnr.hci
Class DeleteSubscriberAccountOp

java.lang.Object
  extended by com.highdeal.pnr.hci.DeleteSubscriberAccountOp
All Implemented Interfaces:
MessageOperation, XMLMarshallable

public class DeleteSubscriberAccountOp
extends java.lang.Object
implements MessageOperation

Deletes a persistent subscriber account.

Operation Result

DeleteSubscriberAccountResult

XML API for HCI

The XML APIs specify the following XSD fragment:

XSD Fragment

<xs:element name="deleteSubscriberAccount">
   <xs:complexType>
     <xs:attribute name="code" type="xs:string" use="required"/>
     <xs:attribute name="serviceProvider" type="xs:string" use="required"/>
     <xs:attribute name="ignorePreRating" type="xs:boolean"/> <!-- default: false -->
     <xs:attribute name="ignorePendingSession" type="xs:boolean"/> <!-- default: false -->
     <xs:attribute name="ignoreNotEmptyAccount" type="xs:boolean"/> <!-- default: false -->
     <xs:attribute name="enableAmountAlerts" type="xs:boolean"/> <!-- default: false -->
   </xs:complexType>
 </xs:element>

Operation Availability

You can send this operation request in HCI messages to the following final target types of instances in the connected SAP CC system:

EditionFinal Target Instances
raterupdaterguiderbulkLoadertaxerdispatcher
chargeNoYesNoNoNoNo

Field Summary
static java.lang.String OPERATION_NAME
           
 
Constructor Summary
DeleteSubscriberAccountOp()
          Builds an empty delete subscriber account operation.
DeleteSubscriberAccountOp(java.lang.String serviceProvider, java.lang.String code)
          Builds an delete subscriber account operation.
 
Method Summary
 void addCharacterData(java.lang.String cData)
          Adds character data to the content element.
 void addChild(java.lang.String tagName, XMLMarshallable child)
          Adds a child to the object, the child representing the marshallable object which must be added to the element.
 java.lang.String getCode()
          Gets the code of the delete subscriber account operation.
 java.lang.String getName()
          Gets the name of the delete subscriber account operation.
 java.lang.String getServiceProvider()
          Gets the service provider of the delete subscriber account operation.
 boolean isAmountAlertsEnabled()
          Tests if amount alerts are enabled during delete account operation.
 void isAmountAlertsEnabled(boolean b)
          Sets amount alerts enable flag.
 boolean isIgnoringNotEmptyAccount()
          Tests if not empty accounts are ignored during delete account operation.
 void isIgnoringNotEmptyAccount(boolean b)
          Sets not empty accounts ignoring flag.
 boolean isIgnoringPendingSession()
          Tests if pending sessions are ignored during delete account operation.
 void isIgnoringPendingSession(boolean b)
          Sets pending sessions ignoring flag.
 boolean isIgnoringPreRating()
          Tests if pre-rating is ignored during delete account operation.
 void isIgnoringPreRating(boolean b)
          Sets pre-rating ignoring flag.
 void marshal(XMLOutputter output)
          Gives an XML representation of this object, including its children.
 void setAttributes(XMLAttributes atts)
          Sets the attributes of the XML representation of the element being processed.
 void setCode(java.lang.String code)
          Sets the code of the delete delete account operation.
 void setServiceProvider(java.lang.String serviceProvider)
          Sets the service provider of the delete account operation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

OPERATION_NAME

public static final java.lang.String OPERATION_NAME
See Also:
Constant Field Values
Constructor Detail

DeleteSubscriberAccountOp

public DeleteSubscriberAccountOp()
Builds an empty delete subscriber account operation.


DeleteSubscriberAccountOp

public DeleteSubscriberAccountOp(java.lang.String serviceProvider,
                                 java.lang.String code)
Builds an delete subscriber account operation.

Parameters:
serviceProvider - the service provider of the subscriber account to delete.
code - the code of the subscriber account to delete.
Method Detail

getName

public java.lang.String getName()
Gets the name of the delete subscriber account operation.

Specified by:
getName in interface MessageOperation
Returns:
the name of the delete subscriber account operation.

getCode

public java.lang.String getCode()
Gets the code of the delete subscriber account operation.

Returns:
the code of the delete subscriber account operation.

setCode

public void setCode(java.lang.String code)
Sets the code of the delete delete account operation.

Parameters:
code - the code of the delete subscriber account operation.

getServiceProvider

public java.lang.String getServiceProvider()
Gets the service provider of the delete subscriber account operation.

Returns:
the service provider of the delete subscriber account operation.

setServiceProvider

public void setServiceProvider(java.lang.String serviceProvider)
Sets the service provider of the delete account operation.

Parameters:
serviceProvider - the service provider of the delete subscriber account operation.

isIgnoringNotEmptyAccount

public boolean isIgnoringNotEmptyAccount()
Tests if not empty accounts are ignored during delete account operation.

Returns:
true if not empty accounts are ignored, false otherwise.

isIgnoringNotEmptyAccount

public void isIgnoringNotEmptyAccount(boolean b)
Sets not empty accounts ignoring flag.

Parameters:
b - the boolean value of the not empty accounts ignoring flag.

isIgnoringPreRating

public boolean isIgnoringPreRating()
Tests if pre-rating is ignored during delete account operation.

Returns:
true if pre-rating is ignored, false otherwise.

isIgnoringPreRating

public void isIgnoringPreRating(boolean b)
Sets pre-rating ignoring flag.

Parameters:
b - the boolean value of the pre-rating ignoring flag.

isIgnoringPendingSession

public boolean isIgnoringPendingSession()
Tests if pending sessions are ignored during delete account operation.

Returns:
true if pending sessions are ignored, false otherwise.

isIgnoringPendingSession

public void isIgnoringPendingSession(boolean b)
Sets pending sessions ignoring flag.

Parameters:
b - the boolean value of the pending sessions ignoring flag.

isAmountAlertsEnabled

public boolean isAmountAlertsEnabled()
Tests if amount alerts are enabled during delete account operation.

Returns:
true if amount alerts are enabled false otherwise.

isAmountAlertsEnabled

public void isAmountAlertsEnabled(boolean b)
Sets amount alerts enable flag.

Parameters:
b - the boolean value of the amount alerts enable flag.

setAttributes

public void setAttributes(XMLAttributes atts)
Description copied from interface: XMLMarshallable
Sets the attributes of the XML representation of the element being processed.

Specified by:
setAttributes in interface XMLMarshallable
Parameters:
atts - The XML attributes of the current element

addChild

public void addChild(java.lang.String tagName,
                     XMLMarshallable child)
Description copied from interface: XMLMarshallable
Adds a child to the object, the child representing the marshallable object which must be added to the element.

Specified by:
addChild in interface XMLMarshallable
Parameters:
tagName - The name of tag for the child
child - The child to be added

addCharacterData

public void addCharacterData(java.lang.String cData)
Description copied from interface: XMLMarshallable
Adds character data to the content element.

Specified by:
addCharacterData in interface XMLMarshallable
Parameters:
cData - The character data to be added

marshal

public void marshal(XMLOutputter output)
Description copied from interface: XMLMarshallable
Gives an XML representation of this object, including its children.

Specified by:
marshal in interface XMLMarshallable
Parameters:
output - The XML output to marshal the object into

Document Published: October 2015 (SAP CC 4.0 SP10 and Later)