001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    import com.liferay.portal.kernel.annotation.AutoEscape;
018    import com.liferay.portal.service.ServiceContext;
019    
020    import com.liferay.portlet.expando.model.ExpandoBridge;
021    
022    import java.io.Serializable;
023    
024    /**
025     * <p>
026     * This interface is a model that represents the LayoutSet table in the
027     * database.
028     * </p>
029     *
030     * @author    Brian Wing Shun Chan
031     * @see       LayoutSet
032     * @see       com.liferay.portal.model.impl.LayoutSetImpl
033     * @see       com.liferay.portal.model.impl.LayoutSetModelImpl
034     * @generated
035     */
036    public interface LayoutSetModel extends BaseModel<LayoutSet> {
037            public long getPrimaryKey();
038    
039            public void setPrimaryKey(long pk);
040    
041            public long getLayoutSetId();
042    
043            public void setLayoutSetId(long layoutSetId);
044    
045            public long getGroupId();
046    
047            public void setGroupId(long groupId);
048    
049            public long getCompanyId();
050    
051            public void setCompanyId(long companyId);
052    
053            public boolean getPrivateLayout();
054    
055            public boolean isPrivateLayout();
056    
057            public void setPrivateLayout(boolean privateLayout);
058    
059            public boolean getLogo();
060    
061            public boolean isLogo();
062    
063            public void setLogo(boolean logo);
064    
065            public long getLogoId();
066    
067            public void setLogoId(long logoId);
068    
069            @AutoEscape
070            public String getThemeId();
071    
072            public void setThemeId(String themeId);
073    
074            @AutoEscape
075            public String getColorSchemeId();
076    
077            public void setColorSchemeId(String colorSchemeId);
078    
079            @AutoEscape
080            public String getWapThemeId();
081    
082            public void setWapThemeId(String wapThemeId);
083    
084            @AutoEscape
085            public String getWapColorSchemeId();
086    
087            public void setWapColorSchemeId(String wapColorSchemeId);
088    
089            @AutoEscape
090            public String getCss();
091    
092            public void setCss(String css);
093    
094            public int getPageCount();
095    
096            public void setPageCount(int pageCount);
097    
098            @AutoEscape
099            public String getVirtualHost();
100    
101            public void setVirtualHost(String virtualHost);
102    
103            @AutoEscape
104            public String getSettings();
105    
106            public void setSettings(String settings);
107    
108            public long getLayoutSetPrototypeId();
109    
110            public void setLayoutSetPrototypeId(long layoutSetPrototypeId);
111    
112            public LayoutSet toEscapedModel();
113    
114            public boolean isNew();
115    
116            public void setNew(boolean n);
117    
118            public boolean isCachedModel();
119    
120            public void setCachedModel(boolean cachedModel);
121    
122            public boolean isEscapedModel();
123    
124            public void setEscapedModel(boolean escapedModel);
125    
126            public Serializable getPrimaryKeyObj();
127    
128            public ExpandoBridge getExpandoBridge();
129    
130            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
131    
132            public Object clone();
133    
134            public int compareTo(LayoutSet layoutSet);
135    
136            public int hashCode();
137    
138            public String toString();
139    
140            public String toXmlString();
141    }