1 64 65 package com.jcorporate.expresso.core.controller; 66 67 74 75 81 public interface ControllerFactory { 82 101 public Controller getController(String className) 102 throws ControllerException; 103 104 128 public Controller getController(String module, String className) 129 throws ControllerException; 130 131 156 public Controller getController(ControllerRequest request) 157 throws ControllerException; 158 159 } | Popular Tags |