mirror of
https://github.com/google/nomulus.git
synced 2025-07-12 05:58:13 +02:00
Fix semantic merge conflict in Registry (#810)
* Fix semantic merge conflict in Registry
This commit is contained in:
parent
1a63d50b82
commit
798879d031
4 changed files with 14 additions and 0 deletions
|
@ -480,6 +480,14 @@ public class Registry extends ImmutableObject implements Buildable {
|
|||
Money serverStatusChangeBillingCost = DEFAULT_SERVER_STATUS_CHANGE_BILLING_COST;
|
||||
|
||||
/** The one-time billing cost for a registry lock/unlock action initiated by a registrar. */
|
||||
@AttributeOverrides({
|
||||
@AttributeOverride(
|
||||
name = "money.amount",
|
||||
column = @Column(name = "registry_lock_or_unlock_cost_amount")),
|
||||
@AttributeOverride(
|
||||
name = "money.currency",
|
||||
column = @Column(name = "registry_lock_or_unlock_cost_currency"))
|
||||
})
|
||||
Money registryLockOrUnlockBillingCost = DEFAULT_REGISTRY_LOCK_OR_UNLOCK_BILLING_COST;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue