com.liferay.portal.model.LayoutFriendlyURLModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* 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.bean.AutoEscape;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.service.ServiceContext;
import com.liferay.portlet.expando.model.ExpandoBridge;
import java.io.Serializable;
import java.util.Date;
/**
* The base model interface for the LayoutFriendlyURL service. Represents a row in the "LayoutFriendlyURL" database table, with each column mapped to a property of this class.
*
*
* This interface and its corresponding implementation {@link com.liferay.portal.model.impl.LayoutFriendlyURLModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.portal.model.impl.LayoutFriendlyURLImpl}.
*
*
* @author Brian Wing Shun Chan
* @see LayoutFriendlyURL
* @see com.liferay.portal.model.impl.LayoutFriendlyURLImpl
* @see com.liferay.portal.model.impl.LayoutFriendlyURLModelImpl
* @generated
*/
@ProviderType
public interface LayoutFriendlyURLModel extends BaseModel,
StagedGroupedModel {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. All methods that expect a layout friendly u r l model instance should use the {@link LayoutFriendlyURL} interface instead.
*/
/**
* Returns the primary key of this layout friendly u r l.
*
* @return the primary key of this layout friendly u r l
*/
public long getPrimaryKey();
/**
* Sets the primary key of this layout friendly u r l.
*
* @param primaryKey the primary key of this layout friendly u r l
*/
public void setPrimaryKey(long primaryKey);
/**
* Returns the uuid of this layout friendly u r l.
*
* @return the uuid of this layout friendly u r l
*/
@AutoEscape
@Override
public String getUuid();
/**
* Sets the uuid of this layout friendly u r l.
*
* @param uuid the uuid of this layout friendly u r l
*/
@Override
public void setUuid(String uuid);
/**
* Returns the layout friendly u r l ID of this layout friendly u r l.
*
* @return the layout friendly u r l ID of this layout friendly u r l
*/
public long getLayoutFriendlyURLId();
/**
* Sets the layout friendly u r l ID of this layout friendly u r l.
*
* @param layoutFriendlyURLId the layout friendly u r l ID of this layout friendly u r l
*/
public void setLayoutFriendlyURLId(long layoutFriendlyURLId);
/**
* Returns the group ID of this layout friendly u r l.
*
* @return the group ID of this layout friendly u r l
*/
@Override
public long getGroupId();
/**
* Sets the group ID of this layout friendly u r l.
*
* @param groupId the group ID of this layout friendly u r l
*/
@Override
public void setGroupId(long groupId);
/**
* Returns the company ID of this layout friendly u r l.
*
* @return the company ID of this layout friendly u r l
*/
@Override
public long getCompanyId();
/**
* Sets the company ID of this layout friendly u r l.
*
* @param companyId the company ID of this layout friendly u r l
*/
@Override
public void setCompanyId(long companyId);
/**
* Returns the user ID of this layout friendly u r l.
*
* @return the user ID of this layout friendly u r l
*/
@Override
public long getUserId();
/**
* Sets the user ID of this layout friendly u r l.
*
* @param userId the user ID of this layout friendly u r l
*/
@Override
public void setUserId(long userId);
/**
* Returns the user uuid of this layout friendly u r l.
*
* @return the user uuid of this layout friendly u r l
* @throws SystemException if a system exception occurred
*/
@Override
public String getUserUuid() throws SystemException;
/**
* Sets the user uuid of this layout friendly u r l.
*
* @param userUuid the user uuid of this layout friendly u r l
*/
@Override
public void setUserUuid(String userUuid);
/**
* Returns the user name of this layout friendly u r l.
*
* @return the user name of this layout friendly u r l
*/
@AutoEscape
@Override
public String getUserName();
/**
* Sets the user name of this layout friendly u r l.
*
* @param userName the user name of this layout friendly u r l
*/
@Override
public void setUserName(String userName);
/**
* Returns the create date of this layout friendly u r l.
*
* @return the create date of this layout friendly u r l
*/
@Override
public Date getCreateDate();
/**
* Sets the create date of this layout friendly u r l.
*
* @param createDate the create date of this layout friendly u r l
*/
@Override
public void setCreateDate(Date createDate);
/**
* Returns the modified date of this layout friendly u r l.
*
* @return the modified date of this layout friendly u r l
*/
@Override
public Date getModifiedDate();
/**
* Sets the modified date of this layout friendly u r l.
*
* @param modifiedDate the modified date of this layout friendly u r l
*/
@Override
public void setModifiedDate(Date modifiedDate);
/**
* Returns the plid of this layout friendly u r l.
*
* @return the plid of this layout friendly u r l
*/
public long getPlid();
/**
* Sets the plid of this layout friendly u r l.
*
* @param plid the plid of this layout friendly u r l
*/
public void setPlid(long plid);
/**
* Returns the private layout of this layout friendly u r l.
*
* @return the private layout of this layout friendly u r l
*/
public boolean getPrivateLayout();
/**
* Returns true
if this layout friendly u r l is private layout.
*
* @return true
if this layout friendly u r l is private layout; false
otherwise
*/
public boolean isPrivateLayout();
/**
* Sets whether this layout friendly u r l is private layout.
*
* @param privateLayout the private layout of this layout friendly u r l
*/
public void setPrivateLayout(boolean privateLayout);
/**
* Returns the friendly u r l of this layout friendly u r l.
*
* @return the friendly u r l of this layout friendly u r l
*/
@AutoEscape
public String getFriendlyURL();
/**
* Sets the friendly u r l of this layout friendly u r l.
*
* @param friendlyURL the friendly u r l of this layout friendly u r l
*/
public void setFriendlyURL(String friendlyURL);
/**
* Returns the language ID of this layout friendly u r l.
*
* @return the language ID of this layout friendly u r l
*/
@AutoEscape
public String getLanguageId();
/**
* Sets the language ID of this layout friendly u r l.
*
* @param languageId the language ID of this layout friendly u r l
*/
public void setLanguageId(String languageId);
@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(LayoutFriendlyURL layoutFriendlyURL);
@Override
public int hashCode();
@Override
public CacheModel toCacheModel();
@Override
public LayoutFriendlyURL toEscapedModel();
@Override
public LayoutFriendlyURL toUnescapedModel();
@Override
public String toString();
@Override
public String toXmlString();
}