public class InvalidSubscriberDataExportErrorException extends OperationFailureErrorException
The XML APIs specify the following XSD fragment:
XSD Fragment
<xs:element name="invalidSubscriberDataExportFault">
<xs:complexType>
<xs:sequence>
<xs:element ref="cause" minOccurs="1" maxOccurs="1"/>
<xs:element ref="causedBy" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="category" type="InvalidSubscriberDataExportCategoryType" use="required"/>
<xs:attribute name="id" type="xs:string" use="optional"/>
<xs:attribute name="owner" type="xs:string" use="optional"/>
<xs:attribute name="type" type="ExportSubscriberDataType" use="optional"/>
</xs:complexType>
</xs:element>
<xs:simpleType name="InvalidSubscriberDataExportCategoryType">
<xs:restriction base="xs:string">
<xs:enumeration value="doesNotExist"/>
<xs:enumeration value="invalid"/>
</xs:restriction>
</xs:simpleType>
| Modifier and Type | Class and Description |
|---|---|
static class |
InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory
This enumeration represents the categories of errors which can occur when exporting
subscriber data. |
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
TAG_NAME
The XML tag name of the exception: invalidSubscriberDataExportError
|
CAUSE_TAG_NAME, CAUSED_BY_TAG_NAME, MESSAGE_TAG_NAME| Constructor and Description |
|---|
InvalidSubscriberDataExportErrorException()
Builds an empty
InvalidSubscriberDataExportErrorException. |
InvalidSubscriberDataExportErrorException(InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory category,
java.lang.String id,
ExportSubscriberDataOp.ExportSubscriberDataType type,
IError error)
Builds an
InvalidSubscriberDataExportErrorException with a category, an object identifier, an object type and an error. |
InvalidSubscriberDataExportErrorException(InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory category,
java.lang.String id,
java.lang.String owner,
ExportSubscriberDataOp.ExportSubscriberDataType type,
IError error)
Builds an
InvalidSubscriberDataExportErrorException with a category, an object identifier, an owner, an object type and an error. |
| Modifier and Type | Method and Description |
|---|---|
void |
addCharacterData(java.lang.String cData)
Adds character data to the content element.
|
InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory |
getCategory()
Gets the
category of the exception. |
java.lang.String |
getId()
Gets the identifier of the object which cannot be exported.
|
java.lang.String |
getOwner()
Gets the owner of the object which cannot be exported.
|
java.lang.String |
getTagName()
Gets the XML tag name of the HCI model.
|
ExportSubscriberDataOp.ExportSubscriberDataType |
getType()
Gets the
type of the object which cannot be exported. |
void |
marshalAttributes(XMLOutputter output)
Gives an XML representation of the attributes of an object.
|
void |
setAttributes(XMLAttributes atts)
Sets the attributes of the XML representation of the element being
processed.
|
void |
setCategory(InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory category)
Sets the
category of the exception. |
void |
setId(java.lang.String id)
Sets the identifier of the object which cannot be exported.
|
void |
setOwner(java.lang.String owner)
Sets the owner of the object which cannot be exported.
|
void |
setType(ExportSubscriberDataOp.ExportSubscriberDataType type)
Sets the
type of the object which cannot be exported. |
addChild, getError, getMessage, marshal, marshalChildren, marshalIError, setError, unmarshalIErrorgetOperandReferencepublic static final java.lang.String TAG_NAME
public InvalidSubscriberDataExportErrorException()
InvalidSubscriberDataExportErrorException.public InvalidSubscriberDataExportErrorException(InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory category, java.lang.String id, java.lang.String owner, ExportSubscriberDataOp.ExportSubscriberDataType type, IError error)
InvalidSubscriberDataExportErrorException with a category, an object identifier, an owner, an object type and an error.public InvalidSubscriberDataExportErrorException(InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory category, java.lang.String id, ExportSubscriberDataOp.ExportSubscriberDataType type, IError error)
InvalidSubscriberDataExportErrorException with a category, an object identifier, an object type and an error.public void marshalAttributes(XMLOutputter output)
IXMLMarshallableoutput - The XML output to marshal the object attributes intopublic void setAttributes(XMLAttributes atts)
XMLMarshallableatts - The XML attributes of the current elementpublic void addCharacterData(java.lang.String cData)
XMLMarshallablecData - The character data to be addedpublic java.lang.String getTagName()
OperationFailureErrorExceptiongetTagName in class OperationFailureErrorExceptionpublic InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory getCategory()
category of the exception.category of the exceptionpublic void setCategory(InvalidSubscriberDataExportErrorException.InvalidSubscriberDataExportCategory category)
category of the exception.category - The category of the exceptionpublic java.lang.String getId()
public void setId(java.lang.String id)
id - The identifier of the object which cannot be exportedpublic java.lang.String getOwner()
public void setOwner(java.lang.String owner)
owner - The owner of the object which cannot be exportedpublic ExportSubscriberDataOp.ExportSubscriberDataType getType()
type of the object which cannot be exported.type of the object which cannot be exportedpublic void setType(ExportSubscriberDataOp.ExportSubscriberDataType type)
type of the object which cannot be exported.type - The type of the object which cannot be exported