Skip to content

Instantly share code, notes, and snippets.

@kartikshah
Created February 1, 2012 20:57
Show Gist options
  • Save kartikshah/1719278 to your computer and use it in GitHub Desktop.
Save kartikshah/1719278 to your computer and use it in GitHub Desktop.
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MethodInput", propOrder = {
"serviceContext",
"account"
})
public class MethodInput{
@XmlElement(required = true)
protected ServiceContext serviceContext;
@XmlElement(required = true)
protected Account account;
// .... omitted for brevity
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment