Package org.as.jtrello.actions

Examples of org.as.jtrello.actions.Action


public class ActionServiceTest extends GenericServiceTest {

  @Test
  public void testGet() {
    try {
      Action action = client.getActions().get(props.getProperty("TRELLO_ACTION1"));
      System.out.println("DEBUG action=" + action.toString());
    } catch (Exception e) {
      e.printStackTrace();
      fail();
    }
  }
View Full Code Here


 
  /**
   * @param actions
   */
  private void showResults(List<Action> actions) {
    Action action;
    Iterator<Action> iterator = actions.iterator();
    while (iterator.hasNext()) {
      action = iterator.next();
      System.out.println("DEBUG action=" + action.toString());
    }
  }
View Full Code Here

TOP

Related Classes of org.as.jtrello.actions.Action

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.