001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    import java.io.Serializable;
018    
019    /**
020     * @author Brian Wing Shun Chan
021     * @author Eduardo Lundgren
022     */
023    public class PortletInfo implements Serializable {
024    
025            public PortletInfo() {
026            }
027    
028            public PortletInfo(
029                    String title, String shortTitle, String keywords, String description) {
030    
031                    _title = title;
032                    _shortTitle = shortTitle;
033                    _keywords = keywords;
034                    _description = description;
035            }
036    
037            public String getTitle() {
038                    return _title;
039            }
040    
041            public String getShortTitle() {
042                    return _shortTitle;
043            }
044    
045            public String getKeywords() {
046                    return _keywords;
047            }
048    
049            public String getDescription() {
050                    return _description;
051            }
052    
053            private String _title;
054            private String _shortTitle;
055            private String _keywords;
056            private String _description;
057    
058    }