Package com.highdeal.hci
Class CheckUserPasswordOp
java.lang.Object
com.highdeal.hci.CheckPasswordOp
com.highdeal.hci.CheckUserPasswordOp
- All Implemented Interfaces:
MessageOperation,XMLMarshallable
This operation allows you to check, as a User Administrator, if a new password for the
user calling it will be accepted by the ModifyUserOp operation.Operation Result
CheckUserPasswordResult XML API for HCI
The XML APIs specify the following XSD fragment:
XSD Fragment
<xs:element name="checkUserPassword">
<xs:complexType>
<xs:attribute name="login" type="xs:string"/>
<xs:attribute name="password" type="xs:string"/>
</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:
| Edition | Final Target Instances | |||||
| rater | updater | guider | bulkLoader | taxer | dispatcher | |
| charge | No | Yes | No | No | No | No |
Audit Domain
This operation is audited by the system as part of the audit domain: TECHNICAL. Consult the IT administrator.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe technical name of the operation: "checkUserPassword" -
Constructor Summary
ConstructorsConstructorDescriptionBuilds an empty password check operation.CheckUserPasswordOp(String login, String password) Build a password check operation. -
Method Summary
Modifier and TypeMethodDescriptiongetLogin()Gets the login to check.getName()Gets the XML name of the service operation.voidmarshal(XMLOutputter output) Gives an XML representation of this object, including its children.voidsetAttributes(XMLAttributes atts) Sets the attributes of the XML representation of the element being processed.voidSets the login to check.Methods inherited from class com.highdeal.hci.CheckPasswordOp
addCharacterData, addChild, getPassword, setPassword
-
Field Details
-
OPERATION_NAME
The technical name of the operation: "checkUserPassword"- See Also:
-
-
Constructor Details
-
CheckUserPasswordOp
public CheckUserPasswordOp()Builds an empty password check operation. -
CheckUserPasswordOp
Build a password check operation.- Parameters:
login- The user login to checkpassword- The password to check
-
-
Method Details
-
getName
Description copied from interface:MessageOperationGets the XML name of the service operation. This name identifies the operation request in the HCI messages. It is used to marshal theJava objectrepresenting an HCI operation into an XML representation that can be exchanged via the HCI communication interface between your client application and the SAP CC system.Example
activateAllping
- Specified by:
getNamein interfaceMessageOperation- Overrides:
getNamein classCheckPasswordOp- Returns:
- The technical name of the HCI operation
-
getLogin
Gets the login to check.- Returns:
- The login to check
-
setLogin
Sets the login to check.- Parameters:
login- The login to check
-
marshal
Description copied from interface:XMLMarshallableGives an XML representation of this object, including its children.- Specified by:
marshalin interfaceXMLMarshallable- Overrides:
marshalin classCheckPasswordOp- Parameters:
output- TheXML outputto marshal the object into
-
setAttributes
Description copied from interface:XMLMarshallableSets the attributes of the XML representation of the element being processed.- Specified by:
setAttributesin interfaceXMLMarshallable- Overrides:
setAttributesin classCheckPasswordOp- Parameters:
atts- TheXML attributesof the current element
-