All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.helger.masterdata.person.PersonEmailAddress Maven / Gradle / Ivy

/**
 * Copyright (C) 2014-2017 Philip Helger (www.helger.com)
 * philip[at]helger[dot]com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.helger.masterdata.person;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;

import com.helger.commons.ValueEnforcer;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.string.ToStringGenerator;
import com.helger.masterdata.email.ExtendedEmailAddress;
import com.helger.masterdata.email.IEmailAddressType;
import com.helger.masterdata.email.IExtendedEmailAddress;

/**
 * Person specific implementation
 *
 * @author Philip Helger
 */
@NotThreadSafe
public class PersonEmailAddress extends ExtendedEmailAddress
{
  private Person m_aOwner;

  public PersonEmailAddress ()
  {}

  public PersonEmailAddress (@Nonnull final Person aOwner)
  {
    setOwner (aOwner);
  }

  public PersonEmailAddress (@Nonnull final Person aOwner, @Nonnull final IExtendedEmailAddress aBase)
  {
    super (aBase);
    setOwner (aOwner);
  }

  public PersonEmailAddress (@Nonnull final Person aOwner,
                             @Nullable final IEmailAddressType aAddressType,
                             @Nullable final String sAddress)
  {
    super (aAddressType, sAddress);
    setOwner (aOwner);
  }

  public PersonEmailAddress (@Nonnull final Person aOwner,
                             @Nullable final IEmailAddressType aAddressType,
                             @Nullable final String sAddress,
                             @Nullable final String sPersonal)
  {
    super (aAddressType, sAddress, sPersonal);
    setOwner (aOwner);
  }

  @Nullable
  public Person getOwner ()
  {
    return m_aOwner;
  }

  @Nullable
  public String getOwnerID ()
  {
    return m_aOwner == null ? null : m_aOwner.getID ();
  }

  public void setOwner (@Nonnull final Person aOwner)
  {
    ValueEnforcer.notNull (aOwner, "Owner");
    m_aOwner = aOwner;
  }

  @Override
  public boolean equals (final Object o)
  {
    if (o == this)
      return true;
    if (!super.equals (o))
      return false;
    final PersonEmailAddress rhs = (PersonEmailAddress) o;
    return EqualsHelper.equals (getOwnerID (), rhs.getOwnerID ());
  }

  @Override
  public int hashCode ()
  {
    return HashCodeGenerator.getDerived (super.hashCode ()).append (getOwnerID ()).getHashCode ();
  }

  @Override
  public String toString ()
  {
    return ToStringGenerator.getDerived (super.toString ()).append ("ownerID", getOwnerID ()).getToString ();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy