mirror of
https://github.com/google/nomulus
synced 2026-01-03 03:35:42 +00:00
Add javadoc to contact/host flows and mark them final
Also make minor javadoc tweaks to domain transfer flows to match what we are changing in contact/host flows. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=133955677
This commit is contained in:
@@ -51,7 +51,13 @@ import google.registry.model.reporting.HistoryEntry;
|
||||
import javax.inject.Inject;
|
||||
|
||||
/**
|
||||
* An EPP flow that creates a new host resource.
|
||||
* An EPP flow that creates a new host.
|
||||
*
|
||||
* <p>Hosts can be "external", or "internal" (also known as "in bailiwick"). Internal hosts are
|
||||
* those that are under a top level domain within this registry, and external hosts are all other
|
||||
* hosts. Internal hosts must have at least one ip address associated with them, whereas external
|
||||
* hosts cannot have any. This flow allows creating a host name, and if necessary enqueues tasks to
|
||||
* update DNS.
|
||||
*
|
||||
* @error {@link google.registry.flows.EppXmlTransformer.IpAddressVersionMismatchException}
|
||||
* @error {@link google.registry.flows.exceptions.ResourceAlreadyExistsException}
|
||||
@@ -62,7 +68,7 @@ import javax.inject.Inject;
|
||||
* @error {@link SubordinateHostMustHaveIpException}
|
||||
* @error {@link UnexpectedExternalHostIpException}
|
||||
*/
|
||||
public class HostCreateFlow extends LoggedInFlow implements TransactionalFlow {
|
||||
public final class HostCreateFlow extends LoggedInFlow implements TransactionalFlow {
|
||||
|
||||
@Inject ResourceCommand resourceCommand;
|
||||
@Inject @ClientId String clientId;
|
||||
|
||||
Reference in New Issue
Block a user