mirror of
https://github.com/google/nomulus.git
synced 2025-06-27 06:44:51 +02:00
Add FlowMetadata (containing isSuperuser) to custom flow logic
This also bypasses signed mark validation during domain creation if the flow is being executed as superuser. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=145435268
This commit is contained in:
parent
d5160213e5
commit
f3388326d6
21 changed files with 213 additions and 74 deletions
|
@ -16,6 +16,7 @@ package google.registry.flows.custom;
|
|||
|
||||
import com.google.auto.value.AutoValue;
|
||||
import google.registry.flows.EppException;
|
||||
import google.registry.flows.FlowMetadata;
|
||||
import google.registry.flows.SessionMetadata;
|
||||
import google.registry.flows.domain.DomainUpdateFlow;
|
||||
import google.registry.model.ImmutableObject;
|
||||
|
@ -30,8 +31,9 @@ import google.registry.model.reporting.HistoryEntry;
|
|||
*/
|
||||
public class DomainUpdateFlowCustomLogic extends BaseFlowCustomLogic {
|
||||
|
||||
protected DomainUpdateFlowCustomLogic(EppInput eppInput, SessionMetadata sessionMetadata) {
|
||||
super(eppInput, sessionMetadata);
|
||||
protected DomainUpdateFlowCustomLogic(
|
||||
EppInput eppInput, SessionMetadata sessionMetadata, FlowMetadata flowMetadata) {
|
||||
super(eppInput, sessionMetadata, flowMetadata);
|
||||
}
|
||||
|
||||
/** A hook that runs before any validation. This is useful to e.g. add allowable extensions. */
|
||||
|
@ -95,7 +97,6 @@ public class DomainUpdateFlowCustomLogic extends BaseFlowCustomLogic {
|
|||
|
||||
public abstract HistoryEntry historyEntry();
|
||||
|
||||
|
||||
public abstract EntityChanges entityChanges();
|
||||
|
||||
public static Builder newBuilder() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue