Package google.registry.flows.custom
Class BaseFlowCustomLogic
- java.lang.Object
-
- google.registry.flows.custom.BaseFlowCustomLogic
-
- Direct Known Subclasses:
DomainCheckFlowCustomLogic
,DomainCreateFlowCustomLogic
,DomainDeleteFlowCustomLogic
,DomainInfoFlowCustomLogic
,DomainPricingCustomLogic
,DomainRenewFlowCustomLogic
,DomainUpdateFlowCustomLogic
public abstract class BaseFlowCustomLogic extends java.lang.Object
An abstract base class for all flow custom logic that stores the flow'sEppInput
andSessionMetadata
for convenience. Both of these are immutable.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BaseFlowCustomLogic(EppInput eppInput, SessionMetadata sessionMetadata, FlowMetadata flowMetadata)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EppInput
getEppInput()
protected FlowMetadata
getFlowMetadata()
protected SessionMetadata
getSessionMetadata()
-
-
-
Constructor Detail
-
BaseFlowCustomLogic
protected BaseFlowCustomLogic(EppInput eppInput, SessionMetadata sessionMetadata, FlowMetadata flowMetadata)
-
-
Method Detail
-
getEppInput
protected EppInput getEppInput()
-
getSessionMetadata
protected SessionMetadata getSessionMetadata()
-
getFlowMetadata
protected FlowMetadata getFlowMetadata()
-
-