mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 00:17:20 +02:00
Add RFC references to EppResource Javadoc
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136747145
This commit is contained in:
parent
4feb8b695f
commit
ae7933da57
4 changed files with 14 additions and 3 deletions
|
@ -37,7 +37,7 @@ import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlTransient;
|
import javax.xml.bind.annotation.XmlTransient;
|
||||||
import org.joda.time.DateTime;
|
import org.joda.time.DateTime;
|
||||||
|
|
||||||
/** An Epp entity object such as a contact or a host. */
|
/** An EPP entity object (i.e. a domain, application, contact, or host). */
|
||||||
@XmlTransient
|
@XmlTransient
|
||||||
public abstract class EppResource extends BackupGroupRoot implements Buildable, ResponseData {
|
public abstract class EppResource extends BackupGroupRoot implements Buildable, ResponseData {
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@ public abstract class EppResource extends BackupGroupRoot implements Buildable,
|
||||||
* Unique identifier in the registry for this resource.
|
* Unique identifier in the registry for this resource.
|
||||||
*
|
*
|
||||||
* <p>This is in the (\w|_){1,80}-\w{1,8} format specified by RFC 5730 for roidType.
|
* <p>This is in the (\w|_){1,80}-\w{1,8} format specified by RFC 5730 for roidType.
|
||||||
|
* @see <a href="https://tools.ietf.org/html/rfc5730">RFC 5730</a>
|
||||||
*/
|
*/
|
||||||
@Id
|
@Id
|
||||||
@XmlElement(name = "roid")
|
@XmlElement(name = "roid")
|
||||||
|
|
|
@ -40,7 +40,11 @@ import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
|
||||||
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||||
import org.joda.time.DateTime;
|
import org.joda.time.DateTime;
|
||||||
|
|
||||||
/** A persistable Contact resource including mutable and non-mutable fields. */
|
/**
|
||||||
|
* A persistable contact resource including mutable and non-mutable fields.
|
||||||
|
*
|
||||||
|
* @see <a href="https://tools.ietf.org/html/rfc5733">RFC 5733</a>
|
||||||
|
*/
|
||||||
@XmlRootElement(name = "infData")
|
@XmlRootElement(name = "infData")
|
||||||
@XmlType(propOrder = {
|
@XmlType(propOrder = {
|
||||||
"contactId",
|
"contactId",
|
||||||
|
|
|
@ -50,7 +50,11 @@ import javax.xml.bind.annotation.XmlType;
|
||||||
import org.joda.time.DateTime;
|
import org.joda.time.DateTime;
|
||||||
import org.joda.time.Interval;
|
import org.joda.time.Interval;
|
||||||
|
|
||||||
/** A persistable domain resource including mutable and non-mutable fields. */
|
/**
|
||||||
|
* A persistable domain resource including mutable and non-mutable fields.
|
||||||
|
*
|
||||||
|
* @see <a href="https://tools.ietf.org/html/rfc5731">RFC 5731</a>
|
||||||
|
*/
|
||||||
@XmlRootElement(name = "infData")
|
@XmlRootElement(name = "infData")
|
||||||
@XmlType(propOrder = {
|
@XmlType(propOrder = {
|
||||||
"fullyQualifiedDomainName",
|
"fullyQualifiedDomainName",
|
||||||
|
|
|
@ -50,6 +50,8 @@ import org.joda.time.DateTime;
|
||||||
*
|
*
|
||||||
* <p>A host's {@link TransferData} is stored on the superordinate domain. Non-subordinate hosts
|
* <p>A host's {@link TransferData} is stored on the superordinate domain. Non-subordinate hosts
|
||||||
* don't carry a full set of TransferData; all they have is lastTransferTime.
|
* don't carry a full set of TransferData; all they have is lastTransferTime.
|
||||||
|
*
|
||||||
|
* @see <a href="https://tools.ietf.org/html/rfc5732">RFC 5732</a>
|
||||||
*/
|
*/
|
||||||
@XmlRootElement(name = "infData")
|
@XmlRootElement(name = "infData")
|
||||||
@XmlType(propOrder = {
|
@XmlType(propOrder = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue