Package org.apache.wookie.connector.framework

Examples of org.apache.wookie.connector.framework.WidgetInstance


  }
 
  @Test
  public void getOrCreateInstance() throws WookieConnectorException, IOException {
    HashMap<String, Widget> widgets = service.getAvailableWidgets();
    WidgetInstance instance = service.getOrCreateInstance((Widget)widgets.values().toArray()[0]);
    assertNotNull("Retrieved widget instance is null", instance);
  }
View Full Code Here


  }
 
  @Test
  public void addParticipant() throws WookieConnectorException, IOException {
  HashMap<String, Widget> widgets = service.getAvailableWidgets();
  WidgetInstance instance = service.getOrCreateInstance((Widget)widgets.values().toArray()[0]);
    assertNotNull("Retrieved widget instance is null", instance);
   
  User user = new User("test1","test user 1");
    service.addParticipant(instance, user);
    User[] users = service.getUsers(instance);
View Full Code Here

  }
 
  @Test
  public void addParticipantWithThumbnailUrl() throws WookieConnectorException, IOException{
    HashMap<String, Widget> widgets = service.getAvailableWidgets();
    WidgetInstance instance = service.getOrCreateInstance((Widget)widgets.values().toArray()[0]);
    assertNotNull("Retrieved widget instance is null", instance);   
    User user = new User("thumbnailtestuser","thumbnail test user","http://bar.com/icon.png");
    service.addParticipant(instance, user);
    User[] users = service.getUsers(instance);
    user = users[users.length-1];
View Full Code Here

  }
 
  @Test
  public void properties() throws WookieConnectorException, IOException{
      HashMap<String, Widget> widgets = service.getAvailableWidgets();
      WidgetInstance instance = service.getOrCreateInstance((Widget)widgets.values().toArray()[0]);
      assertNotNull("Retrieved widget instance is null", instance);
      service.setPropertyForInstance(instance, true, "test_property2", "test data");
      String data = service.getPropertyForInstance(instance, "test_property2");
      assertNotNull ( "Data from property is null", data );
      service.updatePropertyForInstance(instance, true, "test_property2", "new test data");
View Full Code Here

TOP

Related Classes of org.apache.wookie.connector.framework.WidgetInstance

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.