Methods Summary |
---|
public java.util.List | getAny()Gets the value of the any property.
if (any == null) {
any = new ArrayList<Object>();
}
return this.any;
|
public java.lang.String | getId()Accessor for the Id property. Maps to the Identifier property in the underlying
JAXB class
return getIdentifier().getValue();
|
public Identifier | getIdentifier()Gets the value of the identifier property.
return identifier;
|
public boolean | getLast()Accessor for the Last property that maps to the LastMessage property in the
underlying JAXB class
return getLastMessage() != null;
|
public com.sun.xml.ws.rm.protocol.SequenceElement$LastMessage | getLastMessage()Gets the value of the lastMessage property.
return lastMessage;
|
public java.lang.String | getLocalPart()
return new String ( "Sequence");
|
public java.lang.Integer | getMessageNumber()Gets the value of the messageNumber property.
return messageNumber;
|
public int | getNumber()Accessor for the Number property which maps to the MessageNumber property in
the underlying JAXB class.
return getMessageNumber();
|
public java.util.Map | getOtherAttributes()Gets a map that contains attributes that aren't bound to any typed property on this class.
return otherAttributes;
|
public void | setId(java.lang.String id)Mutator for the Id property. Maps to the Identifier property in the underlying
JAXB class.
Identifier identifier = new Identifier();
identifier.setValue(id);
setIdentifier(identifier);
|
public void | setIdentifier(Identifier value)Sets the value of the identifier property.
this.identifier = value;
|
public void | setLast(boolean last)Mutator for the Last property that maps to the LastMessage property in the
underlying JAXB class
if (last) {
setLastMessage(new LastMessage());
} else {
setLastMessage(null);
}
|
public void | setLastMessage(com.sun.xml.ws.rm.protocol.SequenceElement$LastMessage value)Sets the value of the lastMessage property.
this.lastMessage = value;
|
public void | setMessageNumber(java.lang.Integer value)Sets the value of the messageNumber property.
this.messageNumber = value;
|
public void | setNumber(int l)Mutator for the Number property which maps to the MessageNumber property in
the underlying JAXB class.
setMessageNumber(l);
|
public java.lang.String | toString()
return Messages.SEQUENCE_TOSTRING_STRING
.format(getId(),
getNumber(),
getLast() ? "true" : "false");
|