001    /**
002     * Copyright (c) 2000-2013 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.portlet.asset.model;
016    
017    import com.liferay.portal.kernel.json.JSON;
018    
019    import java.io.Serializable;
020    
021    import java.util.List;
022    
023    /**
024     * @author Igor Spasic
025     */
026    public class AssetTagDisplay implements Serializable {
027    
028            public AssetTagDisplay() {
029            }
030    
031            public AssetTagDisplay(List<AssetTag> tags, int total, int start, int end) {
032                    _tags = tags;
033                    _total = total;
034                    _start = start;
035                    _end = end;
036            }
037    
038            public int getEnd() {
039                    return _end;
040            }
041    
042            public int getPage() {
043                    if ((_end > 0) && (_start >= 0)) {
044                            return _end / (_end - _start);
045                    }
046    
047                    return 0;
048            }
049    
050            public int getStart() {
051                    return _start;
052            }
053    
054            public List<AssetTag> getTags() {
055                    return _tags;
056            }
057    
058            public int getTotal() {
059                    return _total;
060            }
061    
062            public void setEnd(int end) {
063                    _end = end;
064            }
065    
066            public void setStart(int start) {
067                    _start = start;
068            }
069    
070            public void setTags(List<AssetTag> tags) {
071                    _tags = tags;
072            }
073    
074            public void setTotal(int total) {
075                    _total = total;
076            }
077    
078            private int _end;
079            private int _start;
080    
081            @JSON
082            private List<AssetTag> _tags;
083    
084            private int _total;
085    
086    }