Package com.acciente.induction.controller

Examples of com.acciente.induction.controller.Redirect


    * @param oTargetClass  a class object representing a class that implements the Controller or interface or a view
    * @return a string representing a complete URL
    */
   public String resolve( Class oTargetClass )
   {
      return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( oTargetClass ) );
   }
View Full Code Here


    * @param oURLQueryParameters a map to be converted to URL query parameters
    * @return a string representing a complete URL
    */
   public String resolve( Class oTargetClass, Map oURLQueryParameters )
   {
      return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( oTargetClass, oURLQueryParameters ) );
   }
View Full Code Here

    * should redirect to
    * @return a string representing a complete URL
    */
   public String resolve( Class oControllerClass, String sControllerMethodName )
   {
      return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( oControllerClass, sControllerMethodName ) );
   }
View Full Code Here

    * @param oURLQueryParameters a map to be converted to URL query parameters
    * @return a string representing a complete URL
    */
   public String resolve( Class oControllerClass, String sControllerMethodName, Map oURLQueryParameters )
   {
      return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( oControllerClass, sControllerMethodName, oURLQueryParameters ) );
   }
View Full Code Here

    * @param sURLPart a string representing a complete or partial URL
    * @return a string representing a complete URL
    */
   public String resolve( String sURLPart )
   {
      return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( sURLPart ) );
   }
View Full Code Here

    * @param oURLQueryParameters a map to be converted to URL query parameters
    * @return a string representing a complete URL
    */
   public String resolve( String sURLPart, Map oURLQueryParameters )
   {
      return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( sURLPart, oURLQueryParameters ) );
   }
View Full Code Here

TOP

Related Classes of com.acciente.induction.controller.Redirect

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.