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

com.liferay.portal.model.AddressWrapper Maven / Gradle / Ivy

/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.portal.model;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.lar.StagedModelType;
import com.liferay.portal.kernel.util.Validator;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

/**
 * 

* This class is a wrapper for {@link Address}. *

* * @author Brian Wing Shun Chan * @see Address * @generated */ @ProviderType public class AddressWrapper implements Address, ModelWrapper
{ public AddressWrapper(Address address) { _address = address; } @Override public Class getModelClass() { return Address.class; } @Override public String getModelClassName() { return Address.class.getName(); } @Override public Map getModelAttributes() { Map attributes = new HashMap(); attributes.put("uuid", getUuid()); attributes.put("addressId", getAddressId()); attributes.put("companyId", getCompanyId()); attributes.put("userId", getUserId()); attributes.put("userName", getUserName()); attributes.put("createDate", getCreateDate()); attributes.put("modifiedDate", getModifiedDate()); attributes.put("classNameId", getClassNameId()); attributes.put("classPK", getClassPK()); attributes.put("street1", getStreet1()); attributes.put("street2", getStreet2()); attributes.put("street3", getStreet3()); attributes.put("city", getCity()); attributes.put("zip", getZip()); attributes.put("regionId", getRegionId()); attributes.put("countryId", getCountryId()); attributes.put("typeId", getTypeId()); attributes.put("mailing", getMailing()); attributes.put("primary", getPrimary()); return attributes; } @Override public void setModelAttributes(Map attributes) { String uuid = (String)attributes.get("uuid"); if (uuid != null) { setUuid(uuid); } Long addressId = (Long)attributes.get("addressId"); if (addressId != null) { setAddressId(addressId); } Long companyId = (Long)attributes.get("companyId"); if (companyId != null) { setCompanyId(companyId); } Long userId = (Long)attributes.get("userId"); if (userId != null) { setUserId(userId); } String userName = (String)attributes.get("userName"); if (userName != null) { setUserName(userName); } Date createDate = (Date)attributes.get("createDate"); if (createDate != null) { setCreateDate(createDate); } Date modifiedDate = (Date)attributes.get("modifiedDate"); if (modifiedDate != null) { setModifiedDate(modifiedDate); } Long classNameId = (Long)attributes.get("classNameId"); if (classNameId != null) { setClassNameId(classNameId); } Long classPK = (Long)attributes.get("classPK"); if (classPK != null) { setClassPK(classPK); } String street1 = (String)attributes.get("street1"); if (street1 != null) { setStreet1(street1); } String street2 = (String)attributes.get("street2"); if (street2 != null) { setStreet2(street2); } String street3 = (String)attributes.get("street3"); if (street3 != null) { setStreet3(street3); } String city = (String)attributes.get("city"); if (city != null) { setCity(city); } String zip = (String)attributes.get("zip"); if (zip != null) { setZip(zip); } Long regionId = (Long)attributes.get("regionId"); if (regionId != null) { setRegionId(regionId); } Long countryId = (Long)attributes.get("countryId"); if (countryId != null) { setCountryId(countryId); } Integer typeId = (Integer)attributes.get("typeId"); if (typeId != null) { setTypeId(typeId); } Boolean mailing = (Boolean)attributes.get("mailing"); if (mailing != null) { setMailing(mailing); } Boolean primary = (Boolean)attributes.get("primary"); if (primary != null) { setPrimary(primary); } } /** * Returns the primary key of this address. * * @return the primary key of this address */ @Override public long getPrimaryKey() { return _address.getPrimaryKey(); } /** * Sets the primary key of this address. * * @param primaryKey the primary key of this address */ @Override public void setPrimaryKey(long primaryKey) { _address.setPrimaryKey(primaryKey); } /** * Returns the uuid of this address. * * @return the uuid of this address */ @Override public java.lang.String getUuid() { return _address.getUuid(); } /** * Sets the uuid of this address. * * @param uuid the uuid of this address */ @Override public void setUuid(java.lang.String uuid) { _address.setUuid(uuid); } /** * Returns the address ID of this address. * * @return the address ID of this address */ @Override public long getAddressId() { return _address.getAddressId(); } /** * Sets the address ID of this address. * * @param addressId the address ID of this address */ @Override public void setAddressId(long addressId) { _address.setAddressId(addressId); } /** * Returns the company ID of this address. * * @return the company ID of this address */ @Override public long getCompanyId() { return _address.getCompanyId(); } /** * Sets the company ID of this address. * * @param companyId the company ID of this address */ @Override public void setCompanyId(long companyId) { _address.setCompanyId(companyId); } /** * Returns the user ID of this address. * * @return the user ID of this address */ @Override public long getUserId() { return _address.getUserId(); } /** * Sets the user ID of this address. * * @param userId the user ID of this address */ @Override public void setUserId(long userId) { _address.setUserId(userId); } /** * Returns the user uuid of this address. * * @return the user uuid of this address * @throws SystemException if a system exception occurred */ @Override public java.lang.String getUserUuid() throws com.liferay.portal.kernel.exception.SystemException { return _address.getUserUuid(); } /** * Sets the user uuid of this address. * * @param userUuid the user uuid of this address */ @Override public void setUserUuid(java.lang.String userUuid) { _address.setUserUuid(userUuid); } /** * Returns the user name of this address. * * @return the user name of this address */ @Override public java.lang.String getUserName() { return _address.getUserName(); } /** * Sets the user name of this address. * * @param userName the user name of this address */ @Override public void setUserName(java.lang.String userName) { _address.setUserName(userName); } /** * Returns the create date of this address. * * @return the create date of this address */ @Override public java.util.Date getCreateDate() { return _address.getCreateDate(); } /** * Sets the create date of this address. * * @param createDate the create date of this address */ @Override public void setCreateDate(java.util.Date createDate) { _address.setCreateDate(createDate); } /** * Returns the modified date of this address. * * @return the modified date of this address */ @Override public java.util.Date getModifiedDate() { return _address.getModifiedDate(); } /** * Sets the modified date of this address. * * @param modifiedDate the modified date of this address */ @Override public void setModifiedDate(java.util.Date modifiedDate) { _address.setModifiedDate(modifiedDate); } /** * Returns the fully qualified class name of this address. * * @return the fully qualified class name of this address */ @Override public java.lang.String getClassName() { return _address.getClassName(); } @Override public void setClassName(java.lang.String className) { _address.setClassName(className); } /** * Returns the class name ID of this address. * * @return the class name ID of this address */ @Override public long getClassNameId() { return _address.getClassNameId(); } /** * Sets the class name ID of this address. * * @param classNameId the class name ID of this address */ @Override public void setClassNameId(long classNameId) { _address.setClassNameId(classNameId); } /** * Returns the class p k of this address. * * @return the class p k of this address */ @Override public long getClassPK() { return _address.getClassPK(); } /** * Sets the class p k of this address. * * @param classPK the class p k of this address */ @Override public void setClassPK(long classPK) { _address.setClassPK(classPK); } /** * Returns the street1 of this address. * * @return the street1 of this address */ @Override public java.lang.String getStreet1() { return _address.getStreet1(); } /** * Sets the street1 of this address. * * @param street1 the street1 of this address */ @Override public void setStreet1(java.lang.String street1) { _address.setStreet1(street1); } /** * Returns the street2 of this address. * * @return the street2 of this address */ @Override public java.lang.String getStreet2() { return _address.getStreet2(); } /** * Sets the street2 of this address. * * @param street2 the street2 of this address */ @Override public void setStreet2(java.lang.String street2) { _address.setStreet2(street2); } /** * Returns the street3 of this address. * * @return the street3 of this address */ @Override public java.lang.String getStreet3() { return _address.getStreet3(); } /** * Sets the street3 of this address. * * @param street3 the street3 of this address */ @Override public void setStreet3(java.lang.String street3) { _address.setStreet3(street3); } /** * Returns the city of this address. * * @return the city of this address */ @Override public java.lang.String getCity() { return _address.getCity(); } /** * Sets the city of this address. * * @param city the city of this address */ @Override public void setCity(java.lang.String city) { _address.setCity(city); } /** * Returns the zip of this address. * * @return the zip of this address */ @Override public java.lang.String getZip() { return _address.getZip(); } /** * Sets the zip of this address. * * @param zip the zip of this address */ @Override public void setZip(java.lang.String zip) { _address.setZip(zip); } /** * Returns the region ID of this address. * * @return the region ID of this address */ @Override public long getRegionId() { return _address.getRegionId(); } /** * Sets the region ID of this address. * * @param regionId the region ID of this address */ @Override public void setRegionId(long regionId) { _address.setRegionId(regionId); } /** * Returns the country ID of this address. * * @return the country ID of this address */ @Override public long getCountryId() { return _address.getCountryId(); } /** * Sets the country ID of this address. * * @param countryId the country ID of this address */ @Override public void setCountryId(long countryId) { _address.setCountryId(countryId); } /** * Returns the type ID of this address. * * @return the type ID of this address */ @Override public int getTypeId() { return _address.getTypeId(); } /** * Sets the type ID of this address. * * @param typeId the type ID of this address */ @Override public void setTypeId(int typeId) { _address.setTypeId(typeId); } /** * Returns the mailing of this address. * * @return the mailing of this address */ @Override public boolean getMailing() { return _address.getMailing(); } /** * Returns true if this address is mailing. * * @return true if this address is mailing; false otherwise */ @Override public boolean isMailing() { return _address.isMailing(); } /** * Sets whether this address is mailing. * * @param mailing the mailing of this address */ @Override public void setMailing(boolean mailing) { _address.setMailing(mailing); } /** * Returns the primary of this address. * * @return the primary of this address */ @Override public boolean getPrimary() { return _address.getPrimary(); } /** * Returns true if this address is primary. * * @return true if this address is primary; false otherwise */ @Override public boolean isPrimary() { return _address.isPrimary(); } /** * Sets whether this address is primary. * * @param primary the primary of this address */ @Override public void setPrimary(boolean primary) { _address.setPrimary(primary); } @Override public boolean isNew() { return _address.isNew(); } @Override public void setNew(boolean n) { _address.setNew(n); } @Override public boolean isCachedModel() { return _address.isCachedModel(); } @Override public void setCachedModel(boolean cachedModel) { _address.setCachedModel(cachedModel); } @Override public boolean isEscapedModel() { return _address.isEscapedModel(); } @Override public java.io.Serializable getPrimaryKeyObj() { return _address.getPrimaryKeyObj(); } @Override public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) { _address.setPrimaryKeyObj(primaryKeyObj); } @Override public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() { return _address.getExpandoBridge(); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.model.BaseModel baseModel) { _address.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes( com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) { _address.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.service.ServiceContext serviceContext) { _address.setExpandoBridgeAttributes(serviceContext); } @Override public java.lang.Object clone() { return new AddressWrapper((Address)_address.clone()); } @Override public int compareTo(com.liferay.portal.model.Address address) { return _address.compareTo(address); } @Override public int hashCode() { return _address.hashCode(); } @Override public com.liferay.portal.model.CacheModel toCacheModel() { return _address.toCacheModel(); } @Override public com.liferay.portal.model.Address toEscapedModel() { return new AddressWrapper(_address.toEscapedModel()); } @Override public com.liferay.portal.model.Address toUnescapedModel() { return new AddressWrapper(_address.toUnescapedModel()); } @Override public java.lang.String toString() { return _address.toString(); } @Override public java.lang.String toXmlString() { return _address.toXmlString(); } @Override public void persist() throws com.liferay.portal.kernel.exception.SystemException { _address.persist(); } @Override public com.liferay.portal.model.Country getCountry() { return _address.getCountry(); } @Override public com.liferay.portal.model.Region getRegion() { return _address.getRegion(); } @Override public com.liferay.portal.model.ListType getType() { return _address.getType(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof AddressWrapper)) { return false; } AddressWrapper addressWrapper = (AddressWrapper)obj; if (Validator.equals(_address, addressWrapper._address)) { return true; } return false; } @Override public StagedModelType getStagedModelType() { return _address.getStagedModelType(); } /** * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel} */ public Address getWrappedAddress() { return _address; } @Override public Address getWrappedModel() { return _address; } @Override public void resetOriginalValues() { _address.resetOriginalValues(); } private Address _address; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy