All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ninja.appengine.NinjaAppengineEnvironmentNull Maven / Gradle / Ivy

There is a newer version: 1.9.88.1
Show newest version
package ninja.appengine;

import com.google.inject.Singleton;

/**
 * Does nothing intentionally.
 * 
 * When we are on production we do not need the AppEngineEnvironment being attached to
 * the executing thread.
 * 
 * @author ra
 */
@Singleton
public class NinjaAppengineEnvironmentNull implements NinjaAppengineEnvironment {
    
    public NinjaAppengineEnvironmentNull() {
        
        System.out.println("Loading NinjaAppengineEnvironmentNull (for devserver and production).");
        
    }

    @Override
    public void initOrSkip() {
        // doing nothing intentionally...
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy