Package org.apache.shindig.social.core.util

Examples of org.apache.shindig.social.core.util.JsonContainerConf


  private DataRequestHandler drh;

  @Override
  protected void setUp() throws Exception {
    ContainerConf containerConf = new JsonContainerConf();
    drh = new DataRequestHandler(containerConf) {
      protected Future<?> handleDelete(RequestItem request) {
        return ImmediateFuture.newInstance("DELETE");
      }
View Full Code Here


  protected void setUp() throws Exception {
    token = new FakeGadgetToken();
    token.setAppId("appId");
    converter = EasyMock.createMock(BeanJsonConverter.class);
    activityService = EasyMock.createMock(ActivityService.class);
    ContainerConf containerConf = new JsonContainerConf();
    handler = new ActivityHandler(activityService, containerConf);
  }
View Full Code Here

  @Override
  protected void setUp() throws Exception {
    token = new FakeGadgetToken();
    personService = EasyMock.createMock(PersonService.class);
    ContainerConf containerConf = new JsonContainerConf();
    handler = new PersonHandler(personService, containerConf);
  }
View Full Code Here

  @Override
  protected void setUp() throws Exception {
    token = new FakeGadgetToken();
    converter = EasyMock.createMock(BeanJsonConverter.class);
    appDataService = EasyMock.createMock(AppDataService.class);
    ContainerConf containerConf = new JsonContainerConf();
    handler = new AppDataHandler(appDataService, containerConf);
  }
View Full Code Here

TOP

Related Classes of org.apache.shindig.social.core.util.JsonContainerConf

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.