webpiecesxxxxxpackage.base.GlobalAppContext Maven / Gradle / Ivy
package webpiecesxxxxxpackage.base;
import javax.inject.Singleton;
import org.webpieces.ctx.api.ApplicationContext;
/**
* You MUST restart the server on changes to this class or Server.java
*
*/
@Singleton
public class GlobalAppContext implements ApplicationContext, ApplicationCtxManaged {
private String googleAnalytics;
@Override
public String getGoogleAnalyticsCode() {
return googleAnalytics;
}
@Override
public void setGoogleAnalyticsCode(String s) {
this.googleAnalytics = s;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy