Class SequenceAcknowledgementElement
- java.lang.Object
-
- com.sun.xml.ws.rx.rm.protocol.wsrm200502.SequenceAcknowledgementElement
-
public class SequenceAcknowledgementElement extends Object
Abstraction of theSequenceAcknowledgement
WS-RM protocol element. Based on a JAXB schema compiler generated class that has properties for each child element of the SequenceAcknowledgement element. A property used to serialize/ deserialize theBufferRemaining
extensibility element is added.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SequenceAcknowledgementElement.AcknowledgementRange
-
Field Summary
Fields Modifier and Type Field Description protected List<SequenceAcknowledgementElement.AcknowledgementRange>
acknowledgementRange
protected List<Object>
any
protected Integer
bufferRemaining
protected Identifier
identifier
protected List<BigInteger>
nack
-
Constructor Summary
Constructors Constructor Description SequenceAcknowledgementElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAckRange(long lower, long upper)
void
addNack(long index)
List<SequenceAcknowledgementElement.AcknowledgementRange>
getAcknowledgementRange()
Gets the value of the acknowledgementRange property.List<Object>
getAny()
Gets the value of the any property representing extensibility elementsint
getBufferRemaining()
String
getId()
Identifier
getIdentifier()
Gets the value of the identifier property.List<BigInteger>
getNack()
Gets the value of the nack property.Map<QName,String>
getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.void
setBufferRemaining(int value)
void
setId(String idString)
void
setIdentifier(Identifier value)
Sets the value of the identifier property.String
toString()
-
-
-
Field Detail
-
identifier
protected Identifier identifier
-
acknowledgementRange
protected List<SequenceAcknowledgementElement.AcknowledgementRange> acknowledgementRange
-
nack
protected List<BigInteger> nack
-
bufferRemaining
protected Integer bufferRemaining
-
-
Method Detail
-
getIdentifier
public Identifier getIdentifier()
Gets the value of the identifier property.- Returns:
- The value of the property.
-
setIdentifier
public void setIdentifier(Identifier value)
Sets the value of the identifier property.- Parameters:
value
- The new value of the property.
-
getAcknowledgementRange
public List<SequenceAcknowledgementElement.AcknowledgementRange> getAcknowledgementRange()
Gets the value of the acknowledgementRange property.- Returns:
- The value of the property, which is a list of AcknowledgementRange objects
-
getNack
public List<BigInteger> getNack()
Gets the value of the nack property.- Returns:
- The value of the property, which is a list of BigIntegers
-
getAny
public List<Object> getAny()
Gets the value of the any property representing extensibility elements- Returns:
- The list of elements.
-
getOtherAttributes
public Map<QName,String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.- Returns:
- The value of the property
-
setId
public void setId(String idString)
-
getId
public String getId()
-
getBufferRemaining
public int getBufferRemaining()
-
setBufferRemaining
public void setBufferRemaining(int value)
-
addAckRange
public void addAckRange(long lower, long upper)
-
addNack
public void addNack(long index)
-
-