mirror of
https://github.com/google/nomulus.git
synced 2025-05-28 07:02:00 +02:00
Use correct <a> tag syntax in javadoc @see tag
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=137946021
This commit is contained in:
parent
e7d3725f51
commit
59d998954c
42 changed files with 108 additions and 73 deletions
|
@ -27,7 +27,8 @@ import javax.xml.bind.annotation.XmlValue;
|
|||
/**
|
||||
* XML type for contact identifiers associated with a domain.
|
||||
*
|
||||
* @see "http://tools.ietf.org/html/rfc5731#section-2.2"
|
||||
* @see <a href="http://tools.ietf.org/html/rfc5731#section-2.2">
|
||||
* RFC 5731 - EPP Domain Name Mapping- Contact and Client Identifiers</a>
|
||||
*/
|
||||
@Embed
|
||||
public class DesignatedContact extends ImmutableObject {
|
||||
|
|
|
@ -22,7 +22,8 @@ import javax.xml.bind.annotation.XmlValue;
|
|||
* EPP-compatible version of XML type for contact identifiers associated with a domain, which can
|
||||
* be converted to a storable {@link DesignatedContact}.
|
||||
*
|
||||
* @see "http://tools.ietf.org/html/rfc5731#section-2.2"
|
||||
* @see <a href="http://tools.ietf.org/html/rfc5731#section-2.2">
|
||||
* RFC 5731 - EPP Domain Name Mapping - Contact and Client Identifiers</a>
|
||||
*/
|
||||
class ForeignKeyedDesignatedContact extends ImmutableObject {
|
||||
@XmlAttribute(required = true)
|
||||
|
|
|
@ -105,7 +105,8 @@ public abstract class BaseFee extends ImmutableObject {
|
|||
* must always be negative. Essentially, they are the same thing, just with different sign.
|
||||
* However, we need them to be separate classes for proper JAXB handling.
|
||||
*
|
||||
* @see "https://tools.ietf.org/html/draft-brown-epp-fees-03#section-2.4"
|
||||
* @see <a href="https://tools.ietf.org/html/draft-brown-epp-fees-03#section-2.4">
|
||||
* Registry Fee Extension for EPP - Fees and Credits</a>
|
||||
*/
|
||||
public BigDecimal getCost() {
|
||||
return cost;
|
||||
|
|
|
@ -31,7 +31,8 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
|||
*
|
||||
* <p>Given all of this, we can use {@link EnumToAttributeAdapter} to make this code very simple.
|
||||
*
|
||||
* @see "http://tools.ietf.org/html/draft-tan-epp-launchphase-11#section-2.3"
|
||||
* @see <a href="http://tools.ietf.org/html/draft-tan-epp-launchphase-11#section-2.3">
|
||||
* Launch Phase Mapping for EPP - Status Values</a>
|
||||
*/
|
||||
@XmlJavaTypeAdapter(EnumToAttributeAdapter.class)
|
||||
public enum ApplicationStatus implements EppEnum {
|
||||
|
|
|
@ -23,7 +23,8 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
|||
* Represents a Registry Grace Period status, as defined by
|
||||
* <a href="https://tools.ietf.org/html/rfc3915">RFC 3915</a>.
|
||||
*
|
||||
* @see "https://www.icann.org/resources/pages/epp-status-codes-2014-06-16-en"
|
||||
* @see <a href="https://www.icann.org/resources/pages/epp-status-codes-2014-06-16-en">EPP Status
|
||||
* Codes</a>
|
||||
*/
|
||||
@XmlJavaTypeAdapter(EnumToAttributeAdapter.class)
|
||||
public enum GracePeriodStatus implements EppEnum {
|
||||
|
|
|
@ -32,7 +32,8 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
|||
* <p>Note that {@code StatusValue.LINKED} should never be stored. Rather, it should be calculated
|
||||
* on the fly whenever needed using an eventually consistent query (i.e. in info flows).
|
||||
*
|
||||
* @see "https://www.icann.org/resources/pages/epp-status-codes-2014-06-16-en"
|
||||
* @see <a href="https://www.icann.org/resources/pages/epp-status-codes-2014-06-16-en">EPP Status
|
||||
* Codes</a>
|
||||
*/
|
||||
@XmlJavaTypeAdapter(StatusValueAdapter.class)
|
||||
public enum StatusValue implements EppEnum {
|
||||
|
|
|
@ -398,7 +398,8 @@ public class EppInput extends ImmutableObject {
|
|||
* any other version doesn't validate. As a result, if we didn't do this here it would throw a
|
||||
* {@code SyntaxErrorException} when it failed to validate.
|
||||
*
|
||||
* @see "http://tools.ietf.org/html/rfc5730#page-41"
|
||||
* @see <a href="http://tools.ietf.org/html/rfc5730#page-41">
|
||||
* RFC 5730 - EPP - Command error responses</a>
|
||||
*/
|
||||
public static class VersionAdapter extends XmlAdapter<String, String> {
|
||||
@Override
|
||||
|
|
|
@ -77,7 +77,8 @@ import javax.xml.bind.annotation.XmlType;
|
|||
* client. EPP commands are atomic, so a command will either succeed completely or fail completely.
|
||||
* Success and failure results MUST NOT be mixed."
|
||||
*
|
||||
* @see "http://tools.ietf.org/html/rfc5730#section-2.6"
|
||||
* @see <a href="http://tools.ietf.org/html/rfc5730#section-2.6">
|
||||
* RFC 5730 - EPP - Response Format</a>
|
||||
*/
|
||||
@XmlType(propOrder = {"result", "messageQueueInfo", "resData", "extensions", "trid"})
|
||||
public class EppResponse extends ImmutableObject implements ResponseOrGreeting {
|
||||
|
|
|
@ -132,7 +132,8 @@ public class Result extends ImmutableObject {
|
|||
/**
|
||||
* An RFC 4646 language code.
|
||||
*
|
||||
* @see "http://tools.ietf.org/html/rfc4646"
|
||||
* @see <a href="http://tools.ietf.org/html/rfc4646">
|
||||
* RFC 4646 - Tags for Identifying Languages</a>
|
||||
*/
|
||||
public final String msgLang;
|
||||
|
||||
|
|
|
@ -41,12 +41,13 @@ import org.joda.time.DateTime;
|
|||
/**
|
||||
* Root for a random commit log bucket.
|
||||
*
|
||||
* <p>This is used to shard {@link CommitLogManifest} objects into
|
||||
* {@link google.registry.config.RegistryConfig#getCommitLogBucketCount() N} entity
|
||||
* groups. This increases transaction throughput, while maintaining the ability to perform
|
||||
* strongly-consistent ancestor queries.
|
||||
* <p>This is used to shard {@link CommitLogManifest} objects into {@link
|
||||
* google.registry.config.RegistryConfig#getCommitLogBucketCount() N} entity groups. This increases
|
||||
* transaction throughput, while maintaining the ability to perform strongly-consistent ancestor
|
||||
* queries.
|
||||
*
|
||||
* @see "https://cloud.google.com/appengine/articles/scaling/contention"
|
||||
* @see <a href="https://cloud.google.com/appengine/articles/scaling/contention">Avoiding datastore
|
||||
* contention</a>
|
||||
*/
|
||||
@Entity
|
||||
@NotBackedUp(reason = Reason.COMMIT_LOGS)
|
||||
|
|
|
@ -68,7 +68,8 @@ import org.joda.time.DateTime;
|
|||
* <p>Poll messages are identified externally by registrars using the format defined in {@link
|
||||
* PollMessageExternalKeyConverter}.
|
||||
*
|
||||
* @see "https://tools.ietf.org/html/rfc5730#section-2.9.2.3"
|
||||
* @see <a href="https://tools.ietf.org/html/rfc5730#section-2.9.2.3">
|
||||
* RFC5730 - EPP - <poll> Command</a>
|
||||
*/
|
||||
@Entity
|
||||
@ExternalMessagingName("message")
|
||||
|
|
|
@ -28,7 +28,7 @@ public enum RdeMode {
|
|||
* <p>This mode of operation provides ICANN with minimal information about registered domains
|
||||
* and their associated registrars, per gTLD Registry Agreement, Specification 4 § 3.1.
|
||||
*
|
||||
* @see "http://newgtlds.icann.org/en/applicants/agb/agreement-approved-09jan14-en.htm"
|
||||
* @see <a href="http://newgtlds.icann.org/en/applicants/agb/agreement-approved-09jan14-en.htm">Registry Agreement</a>
|
||||
*/
|
||||
THIN;
|
||||
|
||||
|
|
|
@ -117,7 +117,7 @@ public class Registrar extends ImmutableObject implements Buildable, Jsonifiable
|
|||
/**
|
||||
* Predicate for validating IANA IDs for this type of registrar.
|
||||
*
|
||||
* @see "http://www.iana.org/assignments/registrar-ids/registrar-ids.txt"
|
||||
* @see <a href="http://www.iana.org/assignments/registrar-ids/registrar-ids.txt">Registrar IDs</a>
|
||||
*/
|
||||
private final Predicate<Long> ianaIdValidator;
|
||||
|
||||
|
@ -186,7 +186,7 @@ public class Registrar extends ImmutableObject implements Buildable, Jsonifiable
|
|||
|
||||
/**
|
||||
* Unique registrar client id. Must conform to "clIDType" as defined in RFC5730.
|
||||
* @see "http://tools.ietf.org/html/rfc5730#section-4.2"
|
||||
* @see <a href="http://tools.ietf.org/html/rfc5730#section-4.2">Shared Structure Schema</a>
|
||||
*/
|
||||
@Id
|
||||
String clientIdentifier;
|
||||
|
@ -199,7 +199,7 @@ public class Registrar extends ImmutableObject implements Buildable, Jsonifiable
|
|||
* formally enforced in our datastore, but should be enforced by ICANN in that no two registrars
|
||||
* will be accredited with the same name.
|
||||
*
|
||||
* @see "http://www.icann.org/registrar-reports/accredited-list.html"
|
||||
* @see <a href="http://www.icann.org/registrar-reports/accredited-list.html">ICANN-Accredited Registrars</a>
|
||||
*/
|
||||
@Index
|
||||
String registrarName;
|
||||
|
@ -284,7 +284,7 @@ public class Registrar extends ImmutableObject implements Buildable, Jsonifiable
|
|||
* <li>9997 is used by ICAAN for SLA monitoring.
|
||||
* <li>9999 is used for cases when the registry operator acts as registrar.
|
||||
* </ul>
|
||||
* @see "http://www.iana.org/assignments/registrar-ids/registrar-ids.txt"
|
||||
* @see <a href="http://www.iana.org/assignments/registrar-ids/registrar-ids.txt">Registrar IDs</a>
|
||||
*/
|
||||
@Index
|
||||
Long ianaIdentifier;
|
||||
|
|
|
@ -59,7 +59,8 @@ import org.joda.time.DateTime;
|
|||
* entity into multiple entities, each entity containing {@value #SHARD_SIZE} rows.
|
||||
*
|
||||
* @see google.registry.tmch.SmdrlCsvParser
|
||||
* @see "http://tools.ietf.org/html/draft-lozano-tmch-func-spec-08#section-6.2"
|
||||
* @see <a href="http://tools.ietf.org/html/draft-lozano-tmch-func-spec-08#section-6.2">
|
||||
* TMCH functional specifications - SMD Revocation List</a>
|
||||
*/
|
||||
@Entity
|
||||
@NotBackedUp(reason = Reason.EXTERNALLY_SOURCED)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue