mirror of
https://github.com/google/nomulus.git
synced 2025-08-01 15:34:48 +02:00
Allow overrides of ContactBase methods (#681)
Hibernate might (will?) need to override these, so they shouldn't be final.
This commit is contained in:
parent
37d3cc44b4
commit
e74a9e6f02
1 changed files with 2 additions and 2 deletions
|
@ -224,12 +224,12 @@ public class ContactBase extends EppResource implements ResourceWithTransferData
|
|||
return disclose;
|
||||
}
|
||||
|
||||
public final String getCurrentSponsorClientId() {
|
||||
public String getCurrentSponsorClientId() {
|
||||
return getPersistedCurrentSponsorClientId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public final ContactTransferData getTransferData() {
|
||||
public ContactTransferData getTransferData() {
|
||||
return Optional.ofNullable(transferData).orElse(ContactTransferData.EMPTY);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue