Android Open Source - android-geofeed Feed Constants






From Project

Back to project page android-geofeed.

License

The source code is released under:

Apache License

If you think the Android project android-geofeed listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 * Copyright 2012 52?North Initiative for Geospatial Open Source Software GmbH
 *//from  w ww .  j a  va 2 s  .com
 * 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.n52.geofeed;

/**
 * 
 * @author Arne de Wall <a.dewall@52North.org>
 *
 */
public interface FeedConstants {
    
    public interface ATOM_FEED{
        String TITLE                = "title";
        String ID_ATTRIB            = "id";
        String CONTENT_ATTRIB       = "content";
        String SUMMARY_ATTRIB       = "summary";
        String NAME_ATTRIB          = "name";
        String AUTHOR_ATTRIB        = "author";
        String CATEGORY_ATTRIB      = "category";
        String UPDATED_ATTRIB       = "updated";
        String LINK_ATTRIB          = "link";
        String RIGHTS_ATTRIB        = "rights";
        String BBOX_ATTRIB          = "bbox";
    }
    
    public interface RSS_FEED{
        String CHANNEL = "channel";
        String TITLE = "title";
        String LINK = "link";
        String DESCRIPTION = "description";
        String COPYRIGHT = "copyright";
        String MANAGING_EDITOR = "managingEditor";
        String WEBMASTER = "webmaster";
        String PUBLISHED = "pubDate";
        String LASTBUILD = "lastBuildDate";
        String CATEGORY = "category";
        String GENERATOR = "generator";
        String DOCS_URL = "docs";
        String IMAGE = "image";
        String TTL = "ttl";
        String ITEM = "item";
    }
    
    public interface RSS_ITEM{
        String TITLE = "title";
        String LINK = "link";
        String DESCRIPTION = "description";
        String AUTHOR = "author";
        String CATEGORY = "category";
        String COMMENTS = "comments";
        String ENCLOSURE = "enclosure";
        String ID = "guid";
        String PUBLISHED = "pubDate";
        String SOURCE = "source";
    }
    
    public interface RSS_ITEM_2_0{
        
    }
}




Java Source Code List

org.n52.geofeed.AtomFeedParserTest.java
org.n52.geofeed.BaseFeedElement.java
org.n52.geofeed.BaseFeedEntry.java
org.n52.geofeed.BaseFeedParser.java
org.n52.geofeed.FeedConstants.java
org.n52.geofeed.FeedDateTimeConverter.java
org.n52.geofeed.FeedHandler.java
org.n52.geofeed.FeedParser.java
org.n52.geofeed.FeedType.java
org.n52.geofeed.RSSFeedParserTest.java
org.n52.geofeed.exception.InvalidFeedTypeException.java
org.n52.geofeed.exception.MalformedGeoElementExecption.java
org.n52.geofeed.exception.NoElementOfFeedTypeException.java
org.n52.geofeed.feed.FeedElement.java
org.n52.geofeed.feed.FeedFactory.java
org.n52.geofeed.feed.IAuthor.java
org.n52.geofeed.feed.IBoundingBox.java
org.n52.geofeed.feed.ICategory.java
org.n52.geofeed.feed.IContent.java
org.n52.geofeed.feed.IEntry.java
org.n52.geofeed.feed.IFeed.java
org.n52.geofeed.feed.IImage.java
org.n52.geofeed.feed.ILink.java
org.n52.geofeed.feed.atom.AtomAuthor.java
org.n52.geofeed.feed.atom.AtomCategory.java
org.n52.geofeed.feed.atom.AtomEntry.java
org.n52.geofeed.feed.atom.AtomFeedFactory.java
org.n52.geofeed.feed.atom.AtomFeed.java
org.n52.geofeed.feed.atom.AtomIcon.java
org.n52.geofeed.feed.atom.AtomLink.java
org.n52.geofeed.feed.extension.BaseFeedExtensionDecorator.java
org.n52.geofeed.feed.extension.FeedExtensionFactory.java
org.n52.geofeed.feed.geo.BaseGeoFeedElement.java
org.n52.geofeed.feed.geo.GeoFeedExtension.java
org.n52.geofeed.feed.geo.GeoRSSSimpleFactory.java
org.n52.geofeed.feed.geo.IBox.java
org.n52.geofeed.feed.geo.ICircle.java
org.n52.geofeed.feed.geo.IGeoFeed.java
org.n52.geofeed.feed.geo.ILineString.java
org.n52.geofeed.feed.geo.ILinearRing.java
org.n52.geofeed.feed.geo.IPoint.java
org.n52.geofeed.feed.geo.IPolygon.java
org.n52.geofeed.feed.geo.simple.GeoRSSBox.java
org.n52.geofeed.feed.geo.simple.GeoRSSCircle.java
org.n52.geofeed.feed.geo.simple.GeoRSSGeometry.java
org.n52.geofeed.feed.geo.simple.GeoRSSLineString.java
org.n52.geofeed.feed.geo.simple.GeoRSSLinearRing.java
org.n52.geofeed.feed.geo.simple.GeoRSSPoint.java
org.n52.geofeed.feed.geo.simple.GeoRSSPolygon.java
org.n52.geofeed.feed.geo.simple.GeoRSSSimpleConstants.java
org.n52.geofeed.feed.rss2.RSS2FeedFactory.java
org.n52.geofeed.feed.rss2.RSSFeed_2.java
org.n52.geofeed.feed.rss2.RSSImage_2.java
org.n52.geofeed.feed.rss2.RSSItem_2.java