Back to project page Webby.
The source code is released under:
MIT License
If you think the Android project Webby listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.swampmobile.webby; //w w w . j ava 2s.c om import com.squareup.otto.Bus; import com.squareup.otto.ThreadEnforcer; import retrofit.RestAdapter; /** * Webby system configuration object. */ public class Webby { private static RestAdapter.LogLevel retrofitLogLevel = RestAdapter.LogLevel.NONE; private static final Bus bus = new Bus(ThreadEnforcer.ANY); public static RestAdapter.LogLevel getRetrofitLogLevel() { return retrofitLogLevel; } public static void setRetrofitLoggingLevel(RestAdapter.LogLevel retrofitLogLevel) { Webby.retrofitLogLevel = retrofitLogLevel; } public static Bus getBus() { return bus; } }