예제 #1
0
  public static AgileList createAgileList() {
    AgileList agileList = new AgileList();

    agileList.setTitle(randomString("title", 40));
    agileList.setStoryId((long) 0);

    return agileList;
  }
예제 #2
0
  public static void modifyRecord(AgileList agileList) {

    agileList.setTitle(randomString("title", 40));
    agileList.setStoryId((long) 0);
  }