Migrate getCreatePrice() call to DomainPricingLogic

Swap all calls to TldSpecificLogicProxy.getCreatePrice() to the counterpart in
DomainPricingLogic. Also makes necessary changes for testing to work, including
fake implementations of DomainPricingCustomLogic and
DomainCreateLofwCustomLogic.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140754334
This commit is contained in:
jianglai 2016-12-01 11:20:23 -08:00 committed by Ben McIlwain
parent f8b4c9eddb
commit 79a72387ee
15 changed files with 379 additions and 44 deletions

View file

@ -63,6 +63,18 @@ public abstract class CreateData implements ResponseData {
instance.expirationDate = expirationDate;
return instance;
}
public String name() {
return name;
}
public DateTime creationDate() {
return creationDate;
}
public DateTime expirationDate() {
return expirationDate;
}
}
/** An acknowledgment message indicating that a host was created. */