Package google.registry.xjc.fee06
Class XjcFee06FeeType
- java.lang.Object
-
- google.registry.xjc.XjcObject
-
- google.registry.xjc.fee06.XjcFee06FeeType
-
public class XjcFee06FeeType extends XjcObject
<p>Java class for feeType complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="feeType"> <simpleContent> <extension base="<urn:ietf:params:xml:ns:fee-0.6>nonNegativeDecimal"> <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="refundable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="1" /> <attribute name="grace-period" type="{http://www.w3.org/2001/XMLSchema}duration" default="P0D" /> <attribute name="applied" default="immediate"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="immediate"/> <enumeration value="delayed"/> </restriction> </simpleType> </attribute> </extension> </simpleContent> </complexType> </pre>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
applied
protected java.lang.String
description
protected javax.xml.datatype.Duration
gracePeriod
protected java.lang.Boolean
refundable
protected java.math.BigDecimal
value
-
Constructor Summary
Constructors Constructor Description XjcFee06FeeType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getApplied()
Gets the value of the applied property.java.lang.String
getDescription()
Gets the value of the description property.javax.xml.datatype.Duration
getGracePeriod()
Gets the value of the gracePeriod property.java.math.BigDecimal
getValue()
Gets the value of the value property.boolean
isRefundable()
Gets the value of the refundable property.void
setApplied(java.lang.String value)
Sets the value of the applied property.void
setDescription(java.lang.String value)
Sets the value of the description property.void
setGracePeriod(javax.xml.datatype.Duration value)
Sets the value of the gracePeriod property.void
setRefundable(java.lang.Boolean value)
Sets the value of the refundable property.void
setValue(java.math.BigDecimal value)
Sets the value of the value property.
-
-
-
Method Detail
-
getValue
public java.math.BigDecimal getValue()
Gets the value of the value property.- Returns:
- possible object is
BigDecimal
-
setValue
public void setValue(java.math.BigDecimal value)
Sets the value of the value property.- Parameters:
value
- allowed object isBigDecimal
-
getDescription
public java.lang.String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(java.lang.String value)
Sets the value of the description property.- Parameters:
value
- allowed object isString
-
isRefundable
public boolean isRefundable()
Gets the value of the refundable property.- Returns:
- possible object is
Boolean
-
setRefundable
public void setRefundable(java.lang.Boolean value)
Sets the value of the refundable property.- Parameters:
value
- allowed object isBoolean
-
getGracePeriod
public javax.xml.datatype.Duration getGracePeriod()
Gets the value of the gracePeriod property.- Returns:
- possible object is
Duration
-
setGracePeriod
public void setGracePeriod(javax.xml.datatype.Duration value)
Sets the value of the gracePeriod property.- Parameters:
value
- allowed object isDuration
-
getApplied
public java.lang.String getApplied()
Gets the value of the applied property.- Returns:
- possible object is
String
-
setApplied
public void setApplied(java.lang.String value)
Sets the value of the applied property.- Parameters:
value
- allowed object isString
-
-