com.liferay.object.model.ObjectRelationshipWrapper Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.object.model;
import com.liferay.exportimport.kernel.lar.StagedModelType;
import com.liferay.portal.kernel.model.ModelWrapper;
import com.liferay.portal.kernel.model.wrapper.BaseModelWrapper;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
*
* This class is a wrapper for {@link ObjectRelationship}.
*
*
* @author Marco Leo
* @see ObjectRelationship
* @generated
*/
public class ObjectRelationshipWrapper
extends BaseModelWrapper
implements ModelWrapper, ObjectRelationship {
public ObjectRelationshipWrapper(ObjectRelationship objectRelationship) {
super(objectRelationship);
}
@Override
public Map getModelAttributes() {
Map attributes = new HashMap();
attributes.put("mvccVersion", getMvccVersion());
attributes.put("uuid", getUuid());
attributes.put("externalReferenceCode", getExternalReferenceCode());
attributes.put("objectRelationshipId", getObjectRelationshipId());
attributes.put("companyId", getCompanyId());
attributes.put("userId", getUserId());
attributes.put("userName", getUserName());
attributes.put("createDate", getCreateDate());
attributes.put("modifiedDate", getModifiedDate());
attributes.put("objectDefinitionId1", getObjectDefinitionId1());
attributes.put("objectDefinitionId2", getObjectDefinitionId2());
attributes.put("objectFieldId2", getObjectFieldId2());
attributes.put("parameterObjectFieldId", getParameterObjectFieldId());
attributes.put("deletionType", getDeletionType());
attributes.put("dbTableName", getDBTableName());
attributes.put("edge", isEdge());
attributes.put("label", getLabel());
attributes.put("name", getName());
attributes.put("reverse", isReverse());
attributes.put("system", isSystem());
attributes.put("type", getType());
return attributes;
}
@Override
public void setModelAttributes(Map attributes) {
Long mvccVersion = (Long)attributes.get("mvccVersion");
if (mvccVersion != null) {
setMvccVersion(mvccVersion);
}
String uuid = (String)attributes.get("uuid");
if (uuid != null) {
setUuid(uuid);
}
String externalReferenceCode = (String)attributes.get(
"externalReferenceCode");
if (externalReferenceCode != null) {
setExternalReferenceCode(externalReferenceCode);
}
Long objectRelationshipId = (Long)attributes.get(
"objectRelationshipId");
if (objectRelationshipId != null) {
setObjectRelationshipId(objectRelationshipId);
}
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 objectDefinitionId1 = (Long)attributes.get("objectDefinitionId1");
if (objectDefinitionId1 != null) {
setObjectDefinitionId1(objectDefinitionId1);
}
Long objectDefinitionId2 = (Long)attributes.get("objectDefinitionId2");
if (objectDefinitionId2 != null) {
setObjectDefinitionId2(objectDefinitionId2);
}
Long objectFieldId2 = (Long)attributes.get("objectFieldId2");
if (objectFieldId2 != null) {
setObjectFieldId2(objectFieldId2);
}
Long parameterObjectFieldId = (Long)attributes.get(
"parameterObjectFieldId");
if (parameterObjectFieldId != null) {
setParameterObjectFieldId(parameterObjectFieldId);
}
String deletionType = (String)attributes.get("deletionType");
if (deletionType != null) {
setDeletionType(deletionType);
}
String dbTableName = (String)attributes.get("dbTableName");
if (dbTableName != null) {
setDBTableName(dbTableName);
}
Boolean edge = (Boolean)attributes.get("edge");
if (edge != null) {
setEdge(edge);
}
String label = (String)attributes.get("label");
if (label != null) {
setLabel(label);
}
String name = (String)attributes.get("name");
if (name != null) {
setName(name);
}
Boolean reverse = (Boolean)attributes.get("reverse");
if (reverse != null) {
setReverse(reverse);
}
Boolean system = (Boolean)attributes.get("system");
if (system != null) {
setSystem(system);
}
String type = (String)attributes.get("type");
if (type != null) {
setType(type);
}
}
@Override
public ObjectRelationship cloneWithOriginalValues() {
return wrap(model.cloneWithOriginalValues());
}
@Override
public boolean compareType(String type) {
return model.compareType(type);
}
@Override
public String[] getAvailableLanguageIds() {
return model.getAvailableLanguageIds();
}
/**
* Returns the company ID of this object relationship.
*
* @return the company ID of this object relationship
*/
@Override
public long getCompanyId() {
return model.getCompanyId();
}
/**
* Returns the create date of this object relationship.
*
* @return the create date of this object relationship
*/
@Override
public Date getCreateDate() {
return model.getCreateDate();
}
/**
* Returns the db table name of this object relationship.
*
* @return the db table name of this object relationship
*/
@Override
public String getDBTableName() {
return model.getDBTableName();
}
@Override
public String getDefaultLanguageId() {
return model.getDefaultLanguageId();
}
/**
* Returns the deletion type of this object relationship.
*
* @return the deletion type of this object relationship
*/
@Override
public String getDeletionType() {
return model.getDeletionType();
}
/**
* Returns the edge of this object relationship.
*
* @return the edge of this object relationship
*/
@Override
public boolean getEdge() {
return model.getEdge();
}
/**
* Returns the external reference code of this object relationship.
*
* @return the external reference code of this object relationship
*/
@Override
public String getExternalReferenceCode() {
return model.getExternalReferenceCode();
}
/**
* Returns the label of this object relationship.
*
* @return the label of this object relationship
*/
@Override
public String getLabel() {
return model.getLabel();
}
/**
* Returns the localized label of this object relationship in the language. Uses the default language if no localization exists for the requested language.
*
* @param locale the locale of the language
* @return the localized label of this object relationship
*/
@Override
public String getLabel(java.util.Locale locale) {
return model.getLabel(locale);
}
/**
* Returns the localized label of this object relationship in the language, optionally using the default language if no localization exists for the requested language.
*
* @param locale the local of the language
* @param useDefault whether to use the default language if no localization exists for the requested language
* @return the localized label of this object relationship. If useDefault
is false
and no localization exists for the requested language, an empty string will be returned.
*/
@Override
public String getLabel(java.util.Locale locale, boolean useDefault) {
return model.getLabel(locale, useDefault);
}
/**
* Returns the localized label of this object relationship in the language. Uses the default language if no localization exists for the requested language.
*
* @param languageId the ID of the language
* @return the localized label of this object relationship
*/
@Override
public String getLabel(String languageId) {
return model.getLabel(languageId);
}
/**
* Returns the localized label of this object relationship in the language, optionally using the default language if no localization exists for the requested language.
*
* @param languageId the ID of the language
* @param useDefault whether to use the default language if no localization exists for the requested language
* @return the localized label of this object relationship
*/
@Override
public String getLabel(String languageId, boolean useDefault) {
return model.getLabel(languageId, useDefault);
}
@Override
public String getLabelCurrentLanguageId() {
return model.getLabelCurrentLanguageId();
}
@Override
public String getLabelCurrentValue() {
return model.getLabelCurrentValue();
}
/**
* Returns a map of the locales and localized labels of this object relationship.
*
* @return the locales and localized labels of this object relationship
*/
@Override
public Map getLabelMap() {
return model.getLabelMap();
}
/**
* Returns the modified date of this object relationship.
*
* @return the modified date of this object relationship
*/
@Override
public Date getModifiedDate() {
return model.getModifiedDate();
}
/**
* Returns the mvcc version of this object relationship.
*
* @return the mvcc version of this object relationship
*/
@Override
public long getMvccVersion() {
return model.getMvccVersion();
}
/**
* Returns the name of this object relationship.
*
* @return the name of this object relationship
*/
@Override
public String getName() {
return model.getName();
}
/**
* Returns the object definition id1 of this object relationship.
*
* @return the object definition id1 of this object relationship
*/
@Override
public long getObjectDefinitionId1() {
return model.getObjectDefinitionId1();
}
/**
* Returns the object definition id2 of this object relationship.
*
* @return the object definition id2 of this object relationship
*/
@Override
public long getObjectDefinitionId2() {
return model.getObjectDefinitionId2();
}
/**
* Returns the object field id2 of this object relationship.
*
* @return the object field id2 of this object relationship
*/
@Override
public long getObjectFieldId2() {
return model.getObjectFieldId2();
}
/**
* Returns the object relationship ID of this object relationship.
*
* @return the object relationship ID of this object relationship
*/
@Override
public long getObjectRelationshipId() {
return model.getObjectRelationshipId();
}
/**
* Returns the parameter object field ID of this object relationship.
*
* @return the parameter object field ID of this object relationship
*/
@Override
public long getParameterObjectFieldId() {
return model.getParameterObjectFieldId();
}
/**
* Returns the primary key of this object relationship.
*
* @return the primary key of this object relationship
*/
@Override
public long getPrimaryKey() {
return model.getPrimaryKey();
}
/**
* Returns the reverse of this object relationship.
*
* @return the reverse of this object relationship
*/
@Override
public boolean getReverse() {
return model.getReverse();
}
/**
* Returns the system of this object relationship.
*
* @return the system of this object relationship
*/
@Override
public boolean getSystem() {
return model.getSystem();
}
/**
* Returns the type of this object relationship.
*
* @return the type of this object relationship
*/
@Override
public String getType() {
return model.getType();
}
/**
* Returns the user ID of this object relationship.
*
* @return the user ID of this object relationship
*/
@Override
public long getUserId() {
return model.getUserId();
}
/**
* Returns the user name of this object relationship.
*
* @return the user name of this object relationship
*/
@Override
public String getUserName() {
return model.getUserName();
}
/**
* Returns the user uuid of this object relationship.
*
* @return the user uuid of this object relationship
*/
@Override
public String getUserUuid() {
return model.getUserUuid();
}
/**
* Returns the uuid of this object relationship.
*
* @return the uuid of this object relationship
*/
@Override
public String getUuid() {
return model.getUuid();
}
@Override
public boolean isAllowedObjectRelationshipType(String type) {
return model.isAllowedObjectRelationshipType(type);
}
/**
* Returns true
if this object relationship is edge.
*
* @return true
if this object relationship is edge; false
otherwise
*/
@Override
public boolean isEdge() {
return model.isEdge();
}
@Override
public boolean isEdgeCandidate()
throws com.liferay.portal.kernel.exception.PortalException {
return model.isEdgeCandidate();
}
/**
* Returns true
if this object relationship is reverse.
*
* @return true
if this object relationship is reverse; false
otherwise
*/
@Override
public boolean isReverse() {
return model.isReverse();
}
@Override
public boolean isSelf() {
return model.isSelf();
}
/**
* Returns true
if this object relationship is system.
*
* @return true
if this object relationship is system; false
otherwise
*/
@Override
public boolean isSystem() {
return model.isSystem();
}
@Override
public void persist() {
model.persist();
}
@Override
public void prepareLocalizedFieldsForImport()
throws com.liferay.portal.kernel.exception.LocaleException {
model.prepareLocalizedFieldsForImport();
}
@Override
public void prepareLocalizedFieldsForImport(
java.util.Locale defaultImportLocale)
throws com.liferay.portal.kernel.exception.LocaleException {
model.prepareLocalizedFieldsForImport(defaultImportLocale);
}
/**
* Sets the company ID of this object relationship.
*
* @param companyId the company ID of this object relationship
*/
@Override
public void setCompanyId(long companyId) {
model.setCompanyId(companyId);
}
/**
* Sets the create date of this object relationship.
*
* @param createDate the create date of this object relationship
*/
@Override
public void setCreateDate(Date createDate) {
model.setCreateDate(createDate);
}
/**
* Sets the db table name of this object relationship.
*
* @param dbTableName the db table name of this object relationship
*/
@Override
public void setDBTableName(String dbTableName) {
model.setDBTableName(dbTableName);
}
/**
* Sets the deletion type of this object relationship.
*
* @param deletionType the deletion type of this object relationship
*/
@Override
public void setDeletionType(String deletionType) {
model.setDeletionType(deletionType);
}
/**
* Sets whether this object relationship is edge.
*
* @param edge the edge of this object relationship
*/
@Override
public void setEdge(boolean edge) {
model.setEdge(edge);
}
/**
* Sets the external reference code of this object relationship.
*
* @param externalReferenceCode the external reference code of this object relationship
*/
@Override
public void setExternalReferenceCode(String externalReferenceCode) {
model.setExternalReferenceCode(externalReferenceCode);
}
/**
* Sets the label of this object relationship.
*
* @param label the label of this object relationship
*/
@Override
public void setLabel(String label) {
model.setLabel(label);
}
/**
* Sets the localized label of this object relationship in the language.
*
* @param label the localized label of this object relationship
* @param locale the locale of the language
*/
@Override
public void setLabel(String label, java.util.Locale locale) {
model.setLabel(label, locale);
}
/**
* Sets the localized label of this object relationship in the language, and sets the default locale.
*
* @param label the localized label of this object relationship
* @param locale the locale of the language
* @param defaultLocale the default locale
*/
@Override
public void setLabel(
String label, java.util.Locale locale, java.util.Locale defaultLocale) {
model.setLabel(label, locale, defaultLocale);
}
@Override
public void setLabelCurrentLanguageId(String languageId) {
model.setLabelCurrentLanguageId(languageId);
}
/**
* Sets the localized labels of this object relationship from the map of locales and localized labels.
*
* @param labelMap the locales and localized labels of this object relationship
*/
@Override
public void setLabelMap(Map labelMap) {
model.setLabelMap(labelMap);
}
/**
* Sets the localized labels of this object relationship from the map of locales and localized labels, and sets the default locale.
*
* @param labelMap the locales and localized labels of this object relationship
* @param defaultLocale the default locale
*/
@Override
public void setLabelMap(
Map labelMap,
java.util.Locale defaultLocale) {
model.setLabelMap(labelMap, defaultLocale);
}
/**
* Sets the modified date of this object relationship.
*
* @param modifiedDate the modified date of this object relationship
*/
@Override
public void setModifiedDate(Date modifiedDate) {
model.setModifiedDate(modifiedDate);
}
/**
* Sets the mvcc version of this object relationship.
*
* @param mvccVersion the mvcc version of this object relationship
*/
@Override
public void setMvccVersion(long mvccVersion) {
model.setMvccVersion(mvccVersion);
}
/**
* Sets the name of this object relationship.
*
* @param name the name of this object relationship
*/
@Override
public void setName(String name) {
model.setName(name);
}
/**
* Sets the object definition id1 of this object relationship.
*
* @param objectDefinitionId1 the object definition id1 of this object relationship
*/
@Override
public void setObjectDefinitionId1(long objectDefinitionId1) {
model.setObjectDefinitionId1(objectDefinitionId1);
}
/**
* Sets the object definition id2 of this object relationship.
*
* @param objectDefinitionId2 the object definition id2 of this object relationship
*/
@Override
public void setObjectDefinitionId2(long objectDefinitionId2) {
model.setObjectDefinitionId2(objectDefinitionId2);
}
/**
* Sets the object field id2 of this object relationship.
*
* @param objectFieldId2 the object field id2 of this object relationship
*/
@Override
public void setObjectFieldId2(long objectFieldId2) {
model.setObjectFieldId2(objectFieldId2);
}
/**
* Sets the object relationship ID of this object relationship.
*
* @param objectRelationshipId the object relationship ID of this object relationship
*/
@Override
public void setObjectRelationshipId(long objectRelationshipId) {
model.setObjectRelationshipId(objectRelationshipId);
}
/**
* Sets the parameter object field ID of this object relationship.
*
* @param parameterObjectFieldId the parameter object field ID of this object relationship
*/
@Override
public void setParameterObjectFieldId(long parameterObjectFieldId) {
model.setParameterObjectFieldId(parameterObjectFieldId);
}
/**
* Sets the primary key of this object relationship.
*
* @param primaryKey the primary key of this object relationship
*/
@Override
public void setPrimaryKey(long primaryKey) {
model.setPrimaryKey(primaryKey);
}
/**
* Sets whether this object relationship is reverse.
*
* @param reverse the reverse of this object relationship
*/
@Override
public void setReverse(boolean reverse) {
model.setReverse(reverse);
}
/**
* Sets whether this object relationship is system.
*
* @param system the system of this object relationship
*/
@Override
public void setSystem(boolean system) {
model.setSystem(system);
}
/**
* Sets the type of this object relationship.
*
* @param type the type of this object relationship
*/
@Override
public void setType(String type) {
model.setType(type);
}
/**
* Sets the user ID of this object relationship.
*
* @param userId the user ID of this object relationship
*/
@Override
public void setUserId(long userId) {
model.setUserId(userId);
}
/**
* Sets the user name of this object relationship.
*
* @param userName the user name of this object relationship
*/
@Override
public void setUserName(String userName) {
model.setUserName(userName);
}
/**
* Sets the user uuid of this object relationship.
*
* @param userUuid the user uuid of this object relationship
*/
@Override
public void setUserUuid(String userUuid) {
model.setUserUuid(userUuid);
}
/**
* Sets the uuid of this object relationship.
*
* @param uuid the uuid of this object relationship
*/
@Override
public void setUuid(String uuid) {
model.setUuid(uuid);
}
@Override
public String toXmlString() {
return model.toXmlString();
}
@Override
public StagedModelType getStagedModelType() {
return model.getStagedModelType();
}
@Override
protected ObjectRelationshipWrapper wrap(
ObjectRelationship objectRelationship) {
return new ObjectRelationshipWrapper(objectRelationship);
}
}