01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/entity/tags/sakai_2-4-1/entity-api/api/src/java/org/sakaiproject/entity/api/Summary.java $
03: * $Id: Summary.java 20985 2007-02-03 21:50:21Z csev@umich.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2007 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.entity.api;
21:
22: import java.io.Serializable;
23:
24: /**
25: * <p>
26: * Summary is a Map that represents an RSS feed item
27: * </p>
28: */
29: public interface Summary extends Serializable {
30: /** Property for Publication date (RFC822) */
31: static final String PROP_PUBDATE = "RSS:pubdate";
32:
33: /** Property for Title */
34: static final String PROP_TITLE = "RSS:title";
35:
36: /** Property for Description */
37: static final String PROP_DESCRIPTION = "RSS:description";
38:
39: /** Property for Link */
40: static final String PROP_LINK = "RSS:link";
41: }
|