001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portal.model;
022:
023: /**
024: * <a href="LayoutModel.java.html"><b><i>View Source</i></b></a>
025: *
026: * <p>
027: * ServiceBuilder generated this class. Modifications in this class will be
028: * overwritten the next time is generated.
029: * </p>
030: *
031: * <p>
032: * This interface is a model that represents the <code>Layout</code>
033: * table in the database.
034: * </p>
035: *
036: * @author Brian Wing Shun Chan
037: *
038: * @see com.liferay.portal.service.model.Layout
039: * @see com.liferay.portal.service.model.impl.LayoutImpl
040: * @see com.liferay.portal.service.model.impl.LayoutModelImpl
041: *
042: */
043: public interface LayoutModel extends BaseModel {
044: public long getPrimaryKey();
045:
046: public void setPrimaryKey(long pk);
047:
048: public long getPlid();
049:
050: public void setPlid(long plid);
051:
052: public long getGroupId();
053:
054: public void setGroupId(long groupId);
055:
056: public long getCompanyId();
057:
058: public void setCompanyId(long companyId);
059:
060: public boolean getPrivateLayout();
061:
062: public boolean isPrivateLayout();
063:
064: public void setPrivateLayout(boolean privateLayout);
065:
066: public long getLayoutId();
067:
068: public void setLayoutId(long layoutId);
069:
070: public long getParentLayoutId();
071:
072: public void setParentLayoutId(long parentLayoutId);
073:
074: public String getName();
075:
076: public void setName(String name);
077:
078: public String getTitle();
079:
080: public void setTitle(String title);
081:
082: public String getDescription();
083:
084: public void setDescription(String description);
085:
086: public String getType();
087:
088: public void setType(String type);
089:
090: public String getTypeSettings();
091:
092: public void setTypeSettings(String typeSettings);
093:
094: public boolean getHidden();
095:
096: public boolean isHidden();
097:
098: public void setHidden(boolean hidden);
099:
100: public String getFriendlyURL();
101:
102: public void setFriendlyURL(String friendlyURL);
103:
104: public boolean getIconImage();
105:
106: public boolean isIconImage();
107:
108: public void setIconImage(boolean iconImage);
109:
110: public long getIconImageId();
111:
112: public void setIconImageId(long iconImageId);
113:
114: public String getThemeId();
115:
116: public void setThemeId(String themeId);
117:
118: public String getColorSchemeId();
119:
120: public void setColorSchemeId(String colorSchemeId);
121:
122: public String getWapThemeId();
123:
124: public void setWapThemeId(String wapThemeId);
125:
126: public String getWapColorSchemeId();
127:
128: public void setWapColorSchemeId(String wapColorSchemeId);
129:
130: public String getCss();
131:
132: public void setCss(String css);
133:
134: public int getPriority();
135:
136: public void setPriority(int priority);
137:
138: public long getDlFolderId();
139:
140: public void setDlFolderId(long dlFolderId);
141:
142: public Layout toEscapedModel();
143: }
|