use of org.nhindirect.config.model.Address in project nhin-d by DirectProject.
the class DomainForm method setPostmasterEmailAddressId.
public void setPostmasterEmailAddressId(Long anId) {
final Address postmasterAddress = (domain.getPostmasterAddress() == null) ? new Address() : domain.getPostmasterAddress();
postmasterAddress.setId(anId);
domain.setPostmasterAddress(postmasterAddress);
}
use of org.nhindirect.config.model.Address in project nhin-d by DirectProject.
the class DomainForm method setPostmasterEmail.
public void setPostmasterEmail(String postmasterEmail) {
final Address postmasterAddress = (domain.getPostmasterAddress() == null) ? new Address() : domain.getPostmasterAddress();
postmasterAddress.setEmailAddress(postmasterEmail);
domain.setPostmasterAddress(postmasterAddress);
}
Aggregations