Android Open Source - spotastop Settings






From Project

Back to project page spotastop.

License

The source code is released under:

MIT License

If you think the Android project spotastop 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

package settings;
//from w  w  w  .  jav a 2s.c o m

public class Settings {

  private static boolean jarvisMode=true;
  
  public static boolean isJarvisMode() {
    return jarvisMode;
  }

  public static void setJarvisMode(boolean jarvisMode) {
    Settings.jarvisMode = jarvisMode;
  }

  private static String serverUrl = "localhost";
  
  private static String jarvisProxyServerUrl= "nicfixplace.altervista.org/Home_Alfonsi/raspberrypi";

  private static String jarvisProxyServerPort= "7026";
  /**
   * Returns the actually used serverUrl
   * 
   * @return
   */
  public static String getServerUrl() {
    return serverUrl;
  }

  /**
   * Allows to configure the actual serverUrl of all requests
   * 
   * @param serverUrl
   */
  public static void setServerUrl(String serverUrl) {
    Settings.serverUrl = serverUrl;
  }

  public static String getJarvisProxyServerUrl() {
    return jarvisProxyServerUrl;
  }

  public static void setJarvisProxyServerUrl(String jarvisProxyServerUrl) {
    Settings.jarvisProxyServerUrl = jarvisProxyServerUrl;
  }

  public static String getJarvisProxyServerPort() {
    return jarvisProxyServerPort;
  }

  public static void setJarvisProxyServerPort(String jarvisProxyServerPort) {
    Settings.jarvisProxyServerPort = jarvisProxyServerPort;
  }

}




Java Source Code List

.LoaderTester.java
com.cipciop.spotastop.ErrorActivity.java
com.cipciop.spotastop.LoginActivity.java
com.cipciop.spotastop.RegisterActivity.java
com.cipciop.spotastop.SelectBusLine.java
com.cipciop.spotastop.SpotActivity.java
com.cipciop.spotastop.StopSpotApp.java
com.cipciop.spotastop.domain.BusStop.java
com.cipciop.spotastop.domain.GeoPos.java
com.cipciop.spotastop.domain.Line.java
com.cipciop.spotastop.domain.User.java
com.cipciop.spotastop.presentation.BusLineItem.java
com.cipciop.spotastop.services.JarvisDynDnsService.java
com.cipciop.spotastop.services.LoginService.java
com.cipciop.spotastop.services.RegistrationService.java
com.cipciop.spotastop.services.RetrieveLinesListService.java
com.cipciop.spotastop.services.SpotBusStopService.java
com.nicfix.gsoncompatibility.GsonConfigurator.java
requests.CreatorRequest.java
requests.Criteria.java
requests.Data.java
requests.EditorRequest.java
requests.Link.java
requests.LinkerRequest.java
requests.LoaderRequest.java
requests.StorerRequest.java
requests.Unlink.java
requests.beContentRequest.java
resources.Resource.java
resources.ResourcesCache.java
resources.ResourcesMapper.java
responses.AsyncCallback.java
responses.beContentResponse.java
rest.RestApi.java
settings.Settings.java