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

com.liferay.portal.kernel.model.LayoutBranchModel Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * Copyright (c) 2000-present 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.kernel.model;

import aQute.bnd.annotation.ProviderType;

import com.liferay.expando.kernel.model.ExpandoBridge;
import com.liferay.portal.kernel.bean.AutoEscape;
import com.liferay.portal.kernel.service.ServiceContext;

import java.io.Serializable;

/**
 * The base model interface for the LayoutBranch service. Represents a row in the "LayoutBranch" database table, with each column mapped to a property of this class.
 *
 * 

* This interface and its corresponding implementation com.liferay.portal.model.impl.LayoutBranchModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.portal.model.impl.LayoutBranchImpl. *

* * @author Brian Wing Shun Chan * @see LayoutBranch * @generated */ @ProviderType public interface LayoutBranchModel extends BaseModel, MVCCModel, ShardedModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a layout branch model instance should use the {@link LayoutBranch} interface instead. */ /** * Returns the primary key of this layout branch. * * @return the primary key of this layout branch */ public long getPrimaryKey(); /** * Sets the primary key of this layout branch. * * @param primaryKey the primary key of this layout branch */ public void setPrimaryKey(long primaryKey); /** * Returns the mvcc version of this layout branch. * * @return the mvcc version of this layout branch */ @Override public long getMvccVersion(); /** * Sets the mvcc version of this layout branch. * * @param mvccVersion the mvcc version of this layout branch */ @Override public void setMvccVersion(long mvccVersion); /** * Returns the layout branch ID of this layout branch. * * @return the layout branch ID of this layout branch */ public long getLayoutBranchId(); /** * Sets the layout branch ID of this layout branch. * * @param layoutBranchId the layout branch ID of this layout branch */ public void setLayoutBranchId(long layoutBranchId); /** * Returns the group ID of this layout branch. * * @return the group ID of this layout branch */ public long getGroupId(); /** * Sets the group ID of this layout branch. * * @param groupId the group ID of this layout branch */ public void setGroupId(long groupId); /** * Returns the company ID of this layout branch. * * @return the company ID of this layout branch */ @Override public long getCompanyId(); /** * Sets the company ID of this layout branch. * * @param companyId the company ID of this layout branch */ @Override public void setCompanyId(long companyId); /** * Returns the user ID of this layout branch. * * @return the user ID of this layout branch */ public long getUserId(); /** * Sets the user ID of this layout branch. * * @param userId the user ID of this layout branch */ public void setUserId(long userId); /** * Returns the user uuid of this layout branch. * * @return the user uuid of this layout branch */ public String getUserUuid(); /** * Sets the user uuid of this layout branch. * * @param userUuid the user uuid of this layout branch */ public void setUserUuid(String userUuid); /** * Returns the user name of this layout branch. * * @return the user name of this layout branch */ @AutoEscape public String getUserName(); /** * Sets the user name of this layout branch. * * @param userName the user name of this layout branch */ public void setUserName(String userName); /** * Returns the layout set branch ID of this layout branch. * * @return the layout set branch ID of this layout branch */ public long getLayoutSetBranchId(); /** * Sets the layout set branch ID of this layout branch. * * @param layoutSetBranchId the layout set branch ID of this layout branch */ public void setLayoutSetBranchId(long layoutSetBranchId); /** * Returns the plid of this layout branch. * * @return the plid of this layout branch */ public long getPlid(); /** * Sets the plid of this layout branch. * * @param plid the plid of this layout branch */ public void setPlid(long plid); /** * Returns the name of this layout branch. * * @return the name of this layout branch */ @AutoEscape public String getName(); /** * Sets the name of this layout branch. * * @param name the name of this layout branch */ public void setName(String name); /** * Returns the description of this layout branch. * * @return the description of this layout branch */ @AutoEscape public String getDescription(); /** * Sets the description of this layout branch. * * @param description the description of this layout branch */ public void setDescription(String description); /** * Returns the master of this layout branch. * * @return the master of this layout branch */ public boolean getMaster(); /** * Returns true if this layout branch is master. * * @return true if this layout branch is master; false otherwise */ public boolean isMaster(); /** * Sets whether this layout branch is master. * * @param master the master of this layout branch */ public void setMaster(boolean master); @Override public boolean isNew(); @Override public void setNew(boolean n); @Override public boolean isCachedModel(); @Override public void setCachedModel(boolean cachedModel); @Override public boolean isEscapedModel(); @Override public Serializable getPrimaryKeyObj(); @Override public void setPrimaryKeyObj(Serializable primaryKeyObj); @Override public ExpandoBridge getExpandoBridge(); @Override public void setExpandoBridgeAttributes(BaseModel baseModel); @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext); @Override public Object clone(); @Override public int compareTo(LayoutBranch layoutBranch); @Override public int hashCode(); @Override public CacheModel toCacheModel(); @Override public LayoutBranch toEscapedModel(); @Override public LayoutBranch toUnescapedModel(); @Override public String toString(); @Override public String toXmlString(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy