Package com.noelios.restlet.application

Examples of com.noelios.restlet.application.ApplicationHelper


     * @param parentContext
     *            The parent context, typically the component's context.
     * @return The new helper.
     */
    public Helper createHelper(Application application, Context parentContext) {
        return new ApplicationHelper(application, parentContext);
    }
View Full Code Here


   * @param parentContext
   *            The parent context, typically the component's context.
   * @return The new helper.
   */
  public Helper createHelper(Application application, Context parentContext) {
    return new ApplicationHelper(application, parentContext);
  }
View Full Code Here

        return new DirectoryResource(directory, request, response);
    }

    @Override
    public ApplicationHelper createHelper(Application application) {
        return new ApplicationHelper(application);
    }
View Full Code Here

        return new DirectoryResource(directory, request, response);
    }

    @Override
    public ApplicationHelper createHelper(Application application) {
        return new ApplicationHelper(application);
    }
View Full Code Here

   *            The parent context, typically the component's context.
   * @return The new helper.
   */
  @Override
  public Helper createHelper(Application application, Context parentContext) {
    return new ApplicationHelper(application, parentContext);
  }
View Full Code Here

TOP

Related Classes of com.noelios.restlet.application.ApplicationHelper

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.