android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/android-ibc-forum.git
Log | Files | Refs

IBC.java (949B)


      1 package de.mtbnews.android.util;
      2 
      3 /**
      4  * Statische Resourcen für IBC-Forum.
      5  * 
      6  * @author dankert
      7  * 
      8  */
      9 public interface IBC
     10 {
     11 
     12 	/**
     13 	 * Tapatalk-API für IBC-Forum.
     14 	 */
     15 	static final String IBC_FORUM_URL = "http://www.mtb-news.de/forum/";
     16 
     17 	/**
     18 	 * Tapatalk-API für IBC-Forum.
     19 	 */
     20 	static final String IBC_FORUM_CONNECTOR_URL = "http://www.mtb-news.de/forum/mobiquo/mobiquo.php";
     21 
     22 	/**
     23 	 * Feed-URL für Forum.
     24 	 */
     25 	static final String IBC_FORUM_RSS_URL = "http://www.mtb-news.de/forum/external.php?type=RSS2";
     26 
     27 	/**
     28 	 * Fee-URL für Nachrichten.
     29 	 */
     30 	static final String IBC_NEWS_RSS_URL = "http://www.mtb-news.de/news/feed/";
     31 
     32 	/**
     33 	 * Feed-URL für Fotos.
     34 	 */
     35 	static final String IBC_FOTOS_RSS_URL = "http://fotos.mtb-news.de/photos/recent.rss";
     36 
     37 	/**
     38 	 * Logging-Tag.
     39 	 */
     40 	static final String TAG = "IBC";
     41 
     42 	/**
     43 	 * Sitzungs-Timeout. Ab wieviel Minuten sollte das Login erneuert werden?
     44 	 */
     45 	static final int LOGIN_TIMEOUT = 10;
     46 }