Difference between revisions of "Template:Json MuMeasuresGet Block - Java"
From Updox API
(Created page with " private Map<String,Object> BuildMessage() throws Exception { Map<String,Object> messageData = new HashMap(); List<String> measures = new ArrayList(); ...") |
|||
Line 4: | Line 4: | ||
List<String> measures = new ArrayList(); | List<String> measures = new ArrayList(); | ||
measures.add("core:17"); | measures.add("core:17"); | ||
− | + | ||
messageData.put("measureIds", measures); | messageData.put("measureIds", measures); | ||
Revision as of 13:31, 27 May 2014
private Map<String,Object> BuildMessage() throws Exception { Map<String,Object> messageData = new HashMap(); List<String> measures = new ArrayList(); measures.add("core:17"); messageData.put("measureIds", measures); Map<String,Object> authData = new HashMap(); authData.put("applicationId", "vendorId"); authData.put("applicationPassword", "vendorPassword"); authData.put("accountId", "accountId"); authData.put("userId", "userId"); messageData.put("auth", authData); return messageData; }