com.helger.masterdata.company.Company Maven / Gradle / Ivy
/**
* Copyright (C) 2014-2016 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.company;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.Nonempty;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.CollectionHelper;
import com.helger.commons.collection.ext.CommonsHashMap;
import com.helger.commons.collection.ext.ICommonsList;
import com.helger.commons.collection.ext.ICommonsMap;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.state.EChange;
import com.helger.commons.string.ToStringGenerator;
import com.helger.commons.type.ObjectType;
/**
* The default implementation of the {@link IMutableCompany} interface.
*
* @author Philip Helger
*/
public final class Company implements IMutableCompany
{
public static final ObjectType OT = new ObjectType ("company");
public static final String FIELD_ID = "id";
public static final String FIELD_PUBLICNAME = "pubname";
public static final String FIELD_OFFICIALNAME = "offname";
public static final String FIELD_STEHQ = "hqsite";
private final String m_sID;
private String m_sPublicName;
private String m_sOfficialName;
private final ICommonsMap m_aAllSites = new CommonsHashMap <> ();
private IMutableCompanySite m_aHeadQuarterSite;
public Company (@Nonnull @Nonempty final String sID)
{
m_sID = ValueEnforcer.notEmpty (sID, "ID");
}
@Nonnull
public ObjectType getObjectType ()
{
return OT;
}
@Nonnull
@Nonempty
public String getID ()
{
return m_sID;
}
@Nullable
public String getPublicName ()
{
return m_sPublicName;
}
@Nonnull
public EChange setPublicName (@Nullable final String sPublicName)
{
if (EqualsHelper.equals (m_sPublicName, sPublicName))
return EChange.UNCHANGED;
m_sPublicName = sPublicName;
return EChange.CHANGED;
}
@Nullable
public String getOfficialName ()
{
return m_sOfficialName;
}
@Nonnull
public EChange setOfficialName (@Nullable final String sOfficialName)
{
if (EqualsHelper.equals (m_sOfficialName, sOfficialName))
return EChange.UNCHANGED;
m_sOfficialName = sOfficialName;
return EChange.CHANGED;
}
@Nonnegative
public int getSiteCount ()
{
return m_aAllSites.size ();
}
@Nonnull
@ReturnsMutableCopy
public ICommonsList getAllSites ()
{
return m_aAllSites.copyOfValues ();
}
@Nonnull
@ReturnsMutableCopy
public ICommonsList getAllNonVirtualSites ()
{
return m_aAllSites.copyOfValues (aSite -> !aSite.isVirtualSite ());
}
@Nonnull
@ReturnsMutableCopy
public ICommonsList getAllVirtualSites ()
{
return m_aAllSites.copyOfValues (aSite -> aSite.isVirtualSite ());
}
@Nonnull
public EChange addSite (@Nonnull final IMutableCompanySite aSite)
{
ValueEnforcer.notNull (aSite, "Site");
final String sSiteID = aSite.getID ();
if (m_aAllSites.containsKey (sSiteID))
return EChange.UNCHANGED;
m_aAllSites.put (sSiteID, aSite);
return EChange.CHANGED;
}
@Nonnull
public EChange removeSite (@Nonnull final IMutableCompanySite aSite)
{
ValueEnforcer.notNull (aSite, "Site");
if (m_aHeadQuarterSite != null && aSite.equals (m_aHeadQuarterSite))
m_aHeadQuarterSite = null;
return EChange.valueOf (m_aAllSites.remove (aSite.getID ()) != null);
}
@Nullable
public IMutableCompanySite getSiteOfID (@Nullable final String sSiteID)
{
return m_aAllSites.get (sSiteID);
}
@Nullable
public IMutableCompanySite getHeadQuarterSite ()
{
if (m_aHeadQuarterSite != null)
return m_aHeadQuarterSite;
if (m_aAllSites.size () == 1)
return CollectionHelper.getFirstElement (m_aAllSites.values ());
return null;
}
@Nonnull
public EChange setHeadQuarterSite (@Nonnull final IMutableCompanySite aHeadQuarterSite)
{
ValueEnforcer.notNull (aHeadQuarterSite, "HeadQuarterSite");
if (!m_aAllSites.containsKey (aHeadQuarterSite.getID ()))
throw new IllegalArgumentException ("Passed headquarter site does not yet belong to this company: " +
aHeadQuarterSite);
if (aHeadQuarterSite.equals (m_aHeadQuarterSite))
return EChange.UNCHANGED;
m_aHeadQuarterSite = aHeadQuarterSite;
return EChange.CHANGED;
}
public boolean containsAtLeastOneNotDeletableSite ()
{
return CollectionHelper.containsAny (m_aAllSites.values (), aSite -> !aSite.isDeletable ());
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
final Company rhs = (Company) o;
return m_sID.equals (rhs.m_sID);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (m_sID).getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (null).append ("ID", m_sID)
.appendIfNotNull ("publicName", m_sPublicName)
.appendIfNotNull ("officialName", m_sOfficialName)
.append ("allSites", m_aAllSites)
.appendIfNotNull ("headquarter", m_aHeadQuarterSite)
.toString ();
}
}