Package com.test.jsonwebservice.rpc

Examples of com.test.jsonwebservice.rpc.MapObjectList


      throw new RuntimeException();
    }
  }
 
  public MapObjectList test3DefaultMapObjectListOut() {
    MapObjectList list = new MapObjectList();
   
    MapObject mapObject = new MapObject();
    mapObject.setKeyProperty1(1);
    mapObject.setKeyProperty2("KEY1");
    mapObject.setValueProperty1(1);
    mapObject.setValueProperty2("VALUE1");
    mapObject.setProperty1(true);
    list.getMap().add(mapObject);
   
    mapObject = new MapObject();
    mapObject.setKeyProperty1(2);
    mapObject.setKeyProperty2("KEY2");
    mapObject.setValueProperty1(2);
    mapObject.setValueProperty2("VALUE2");
    mapObject.setProperty1(false);
    list.getMap().add(mapObject);
   
    return list;
  }
View Full Code Here

TOP

Related Classes of com.test.jsonwebservice.rpc.MapObjectList

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.