/* * Copyright 2004-2009 the original author or authors. * * 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 org.compass.sample.library; import java.util.Date; /** * * @author kimchy */ public class Article { private String title; private String[] keywords; private Date publishDate; private String summary; private String content; public Article() { } public Article(String title, Date publishDate, String summary, String content, String[] keywords) { this.title = title; this.publishDate = publishDate; this.content = content; this.summary = summary; this.keywords = keywords; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public Date getPublishDate() { return publishDate; } public void setPublishDate(Date date) { this.publishDate = date; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String[] getKeywords() { return keywords; } public void setKeywords(String[] keywords) { this.keywords = keywords; } public String getSummary() { return summary; } public void setSummary(String summary) { this.summary = summary; } public String toString() { return title; } }