Rename TldSpecificLogicEngine to TldSpecificLogicProxy

This new name is a more accurate description of what the actual class
does.  TldSpecificLogicEngine is an interface that will be added in
the near future, implementations of which will provide custom per-TLD
logic.  The class being renamed is more properly a proxy that only
handles logic generic to all TLDs.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=127088913
This commit is contained in:
mcilwain 2016-07-11 08:27:41 -07:00 committed by Ben McIlwain
parent b74ab4bc27
commit cd23ece924
4 changed files with 119 additions and 12 deletions

View file

@ -88,7 +88,7 @@ import google.registry.model.smd.AbstractSignedMark;
import google.registry.model.smd.EncodedSignedMark;
import google.registry.model.smd.SignedMark;
import google.registry.model.smd.SignedMarkRevocationList;
import google.registry.pricing.TldSpecificLogicEngine;
import google.registry.pricing.TldSpecificLogicProxy;
import google.registry.tmch.TmchXmlSignature;
import google.registry.tmch.TmchXmlSignature.CertificateSignatureException;
import google.registry.util.Idn;
@ -580,7 +580,7 @@ public class DomainFlowUtils {
.setCommand(feeCommand)
.setCurrency(registry.getCurrency())
.setPeriod(feeRequest.getPeriod())
.setClass(TldSpecificLogicEngine.getFeeClass(domainName, now).orNull());
.setClass(TldSpecificLogicProxy.getFeeClass(domainName, now).orNull());
switch (feeCommand.getCommand()) {
case UNKNOWN:
@ -590,7 +590,7 @@ public class DomainFlowUtils {
builder.setClass("reserved"); // Override whatever class we've set above.
} else {
builder.setFees(
TldSpecificLogicEngine.getCreatePrice(registry, domainName, now, years).getFees());
TldSpecificLogicProxy.getCreatePrice(registry, domainName, now, years).getFees());
}
break;
case RESTORE:
@ -598,12 +598,12 @@ public class DomainFlowUtils {
throw new RestoresAreAlwaysForOneYearException();
}
builder.setFees(
TldSpecificLogicEngine.getRestorePrice(registry, domainName, now, years).getFees());
TldSpecificLogicProxy.getRestorePrice(registry, domainName, now, years).getFees());
break;
default:
// Anything else (transfer|renew) will have a "renew" fee.
builder.setFees(
TldSpecificLogicEngine.getRenewPrice(registry, domainName, now, years).getFees());
TldSpecificLogicProxy.getRenewPrice(registry, domainName, now, years).getFees());
}
}