com.mtt.myapp.home.model.PanelEntry.java Source code

Java tutorial

Introduction

Here is the source code for com.mtt.myapp.home.model.PanelEntry.java

Source

/* 
 * Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License. 
 */
package com.mtt.myapp.home.model;

import java.util.Date;

import org.apache.commons.lang3.time.DateUtils;

/**
 * Panel entry which will be shown in main page.
 *
 * @author Mavlarn
 * @since 1.0
 */
public class PanelEntry implements Comparable<PanelEntry> {
    private static final int NEW_LIMIT = 5;
    private String title;
    private Date lastUpdatedDate;
    private String link;
    private String author;

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    @SuppressWarnings("UnusedDeclaration")
    public Date getLastUpdatedDate() {
        return lastUpdatedDate;
    }

    public void setLastUpdatedDate(Date lastUpdatedDate) {
        this.lastUpdatedDate = lastUpdatedDate;
    }

    public String getLink() {
        return link;
    }

    public void setLink(String link) {
        this.link = link;
    }

    public String getAuthor() {
        return author;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    public boolean isNew() {
        return DateUtils.addDays(lastUpdatedDate, NEW_LIMIT).compareTo(new Date()) > 0;
    }

    @Override
    public int compareTo(PanelEntry o) {
        return o.lastUpdatedDate.compareTo(lastUpdatedDate);
    }
}