Skip to content

Instantly share code, notes, and snippets.

@mtnygard
Created February 10, 2010 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtnygard/299987 to your computer and use it in GitHub Desktop.
Save mtnygard/299987 to your computer and use it in GitHub Desktop.
/**
* Generate acc validation response object.
*
* @param xmlString the xml string
*
* @return the com.zzz.cap.xml.accountvalres. postpaid account validation
* response
*
* @throws Exception the exception
*/
public com.zzz.cap.xml.accountvalres.PostpaidAccountValidationResponse
generateAccValidationResponseObject(
String xmlString) throws Exception {
com.zzz.cap.xml.accountvalres.PostpaidAccountValidationResponse
accValidRes = null;
accValidRes = (com.zzz.cap.xml.accountvalres
.PostpaidAccountValidationResponse) unmarshallToObject(
xmlString, accValidRes,
"com.zzz.cap.xml.accountvalres");
return accValidRes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment