Mark registrar credit model classes as incomplete

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=151031744
This commit is contained in:
nickfelt 2017-03-23 11:36:09 -07:00 committed by Ben McIlwain
parent 2b2a00216f
commit 59ce636bb2
2 changed files with 11 additions and 1 deletions

View file

@ -37,7 +37,13 @@ import google.registry.model.registry.Registry;
import org.joda.money.CurrencyUnit;
import org.joda.time.DateTime;
/** A per-registrar billing credit, applied toward future charges for registrar activity. */
/**
* A per-registrar billing credit, applied toward future charges for registrar activity.
*
* <p>NOTE: While credits are tracked within the model, there is no built-in support for actually
* incorporating these credits into the generated billing data, and the model support for credits
* should be considered quasi-deprecated (it may be removed without notice).
*/
@ReportedOn
@Entity
public final class RegistrarCredit extends ImmutableObject implements Buildable {

View file

@ -49,6 +49,10 @@ import org.joda.time.DateTime;
* <p>The active balance of a credit object before (at) any given point in time T can be found by
* taking the balance object with the latest effective time that is before (before or at) T, and
* breaking any ties by choosing the mostly recently written among those balances.
*
* <p>NOTE: While credits are tracked within the model, there is no built-in support for actually
* incorporating these credits into the generated billing data, and the model support for credits
* should be considered quasi-deprecated (it may be removed without notice).
*/
@ReportedOn
@Entity