Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*
*******************************************************************************/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-456
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.07.20 at 10:55:05 AM IST
//
package org.apache.wink.common.model.rss;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.apache.wink.common.internal.i18n.Messages;
import org.apache.wink.common.model.synd.SyndCategory;
import org.apache.wink.common.model.synd.SyndEntry;
import org.apache.wink.common.model.synd.SyndFeed;
import org.apache.wink.common.model.synd.SyndGenerator;
import org.apache.wink.common.model.synd.SyndLink;
import org.apache.wink.common.model.synd.SyndPerson;
import org.apache.wink.common.model.synd.SyndText;
import org.apache.wink.common.model.synd.SyndTextType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* Here's a list of the required channel elements, each with a brief
* description, an example, and where available, a pointer to a more complete
* description.
*
*
*
*
*
Element
*
Description
*
Example
*
*
*
title
*
The name of the channel. It's how people refer to your service. If you
* have an HTML website that contains the same information as your RSS file, the
* title of your channel should be the same as the title of your website.
*
GoUpstate.com News Headlines
*
*
*
link
*
The URL to the HTML website corresponding to the channel.
*
http://www.goupstate.com/
*
*
*
description
*
Phrase or sentence describing the channel.
*
The latest news from GoUpstate.com, a Spartanburg Herald-Journal Web
* site.
*
*
*
*
Optional channel elements
*
* Here's a list of optional channel elements.
*
*
*
*
*
Element
*
Description
*
Example
*
*
*
language
*
The language the channel is written in. This allows aggregators to group
* all Italian language sites, for example, on a single page. A list of
* allowable values for this element, as provided by Netscape, is here. You may also use
* values
* defined by the W3C.
*
en-us
*
*
*
copyright
*
Copyright notice for content in the channel.
*
Copyright 2002, Spartanburg Herald-Journal
*
*
*
managingEditor
*
Email address for person responsible for editorial content.
The publication date for the content in the channel. For example, the
* New York Times publishes on a daily basis, the publication date flips
* once every 24 hours. That's when the pubDate of the channel changes. All
* date-times in RSS conform to the Date and Time Specification of RFC 822, with the exception
* that the year may be expressed with two characters or four characters (four
* preferred).
*
Sat, 07 Sep 2002 00:00:01 GMT
*
*
*
lastBuildDate
*
The last time the content of the channel changed.
*
Sat, 07 Sep 2002 09:42:31 GMT
*
*
*
category
*
Specify one or more categories that the channel belongs to. Follows the
* same rules as the <item>-level {@linkplain RssCategory category}
* element.
*
<category>Newspapers</category>
*
*
*
generator
*
A string indicating the program used to generate the channel.
*
MightyInHouse Content System v2.3
*
*
*
docs
*
A URL that points to the documentation for the
* format used in the RSS file. It's probably a pointer to this page. It's for
* people who might stumble across an RSS file on a Web server 25 years from now
* and wonder what it is.
*
http://www.rssboard.org/rss-specification
*
*
*
cloud
*
Allows processes to register with a cloud to be notified of updates to
* the channel, implementing a lightweight publish-subscribe protocol for RSS
* feeds. More info {@linkplain RssCloud here}.
ttl stands for time to live. It's a number of minutes that indicates how
* long a channel can be cached before refreshing from the source. This makes it
* possible for RSS sources to be managed by a file-sharing network such as
* Gnutella.
*
<ttl>60</ttl>
*
*
*
image
*
Specifies a GIF, JPEG or PNG image that can be displayed with the
* channel. More info {@linkplain RssImage here}.