FileDocCategorySizeDatePackage
AcknowledgementInterval.javaAPI DocExample4301Tue May 29 16:56:44 BST 2007com.sun.xml.ws.rm.v200602

AcknowledgementInterval

public class AcknowledgementInterval extends Object

Java class for AcknowledgementInterval element declaration.

The following schema fragment specifies the expected content contained within this class.

<element name="AcknowledgementInterval">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
</sequence>
<attribute name="Milliseconds" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
</restriction>
</complexContent>
</complexType>
</element>

Fields Summary
protected BigInteger
milliseconds
private Map
otherAttributes
Constructors Summary
Methods Summary
public java.math.BigIntegergetMilliseconds()
Gets the value of the milliseconds property.

return
possible object is {@link BigInteger }


                                     
       
        return milliseconds;
    
public java.util.MapgetOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.

the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.

return
always non-null

        return otherAttributes;
    
public voidsetMilliseconds(java.math.BigInteger value)
Sets the value of the milliseconds property.

param
value allowed object is {@link BigInteger }

        this.milliseconds = value;