Package org.apache.shindig.gadgets.servlet.GadgetsHandlerApi

Examples of org.apache.shindig.gadgets.servlet.GadgetsHandlerApi.RenderingContext


    public String getGadget() { return gadget; }
    public String getRepository() { return repository; }
  }

  private RenderingContext getRenderingContext(String param) {
    RenderingContext context = RenderingContext.GADGET;
    if ("1".equals(param)) {
      context = RenderingContext.CONTAINER;
    } else if ("2".equals(param)) {
      context = RenderingContext.CONFIGURED_GADGET;
    }
View Full Code Here

TOP

Related Classes of org.apache.shindig.gadgets.servlet.GadgetsHandlerApi.RenderingContext

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.