001    /**
002     * Copyright (c) 2000-2013 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.portlet.asset.model;
016    
017    import java.io.Serializable;
018    
019    /**
020     * @author Brian Wing Shun Chan
021     */
022    public class AssetEntryType implements Serializable {
023    
024            public String getClassName() {
025                    return _className;
026            }
027    
028            public long getClassNameId() {
029                    return _classNameId;
030            }
031    
032            public String getPortletId() {
033                    return _portletId;
034            }
035    
036            public String getPortletTitle() {
037                    return _portletTitle;
038            }
039    
040            public void setClassName(String className) {
041                    _className = className;
042            }
043    
044            public void setClassNameId(long classNameId) {
045                    _classNameId = classNameId;
046            }
047    
048            public void setPortletId(String portletId) {
049                    _portletId = portletId;
050            }
051    
052            public void setPortletTitle(String portletTitle) {
053                    _portletTitle = portletTitle;
054            }
055    
056            private String _className;
057            private long _classNameId;
058            private String _portletId;
059            private String _portletTitle;
060    
061    }