Package org.atomojo.www.util

Examples of org.atomojo.www.util.ClassResourceFinder


     
      Router router = new Router(getContext());
      if (viewEnabled) {
         getLogger().info("Enabling view on login.");
         router.attach("/",LoginView.class);
         router.attach("/js/",new ClassResourceFinder(getContext(),LoginApplication.class,"js")).getTemplate().setMatchingMode(Template.MODE_STARTS_WITH);
         router.attach("/logout",LogoutView.class);
     
      router.attach("/auth",LoginAction.class);
      router.attach("/status/check",CheckAction.class);
      router.attach("/status",StatusAction.class);
View Full Code Here

TOP

Related Classes of org.atomojo.www.util.ClassResourceFinder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.