mirror of
https://github.com/google/nomulus
synced 2026-01-10 16:00:52 +00:00
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:
@@ -33,10 +33,10 @@ import org.joda.money.Money;
|
||||
import org.joda.time.DateTime;
|
||||
|
||||
/**
|
||||
* Provides specialized pricing, billing and update logic per TLD. TODO: consider making these
|
||||
* methods of Registry.
|
||||
* Provides pricing, billing, and update logic, with call-outs that can be customized by providing
|
||||
* implementations on a per-TLD basis.
|
||||
*/
|
||||
public final class TldSpecificLogicEngine {
|
||||
public final class TldSpecificLogicProxy {
|
||||
|
||||
private static final String EAP_DESCRIPTION_FORMAT = "Early Access Period, fee expires: %s";
|
||||
|
||||
@@ -80,7 +80,7 @@ public final class TldSpecificLogicEngine {
|
||||
}
|
||||
}
|
||||
|
||||
private TldSpecificLogicEngine() {}
|
||||
private TldSpecificLogicProxy() {}
|
||||
|
||||
/**
|
||||
* Returns a new "create" price for the Pricer.
|
||||
Reference in New Issue
Block a user