com.google.gson.internal.LinkedTreeMap Java Examples
The following examples show how to use
com.google.gson.internal.LinkedTreeMap.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: alfresco-client-sdk Author: Alfresco File: NodeBodyUpdate.java License: Apache License 2.0 | 6 votes |
public NodeBodyUpdate(String name, String nodeType, LinkedTreeMap<String, Object> properties, List<String> aspectNames, PermissionsBodyUpdate permissions) { this.name = name; this.nodeType = nodeType; if (properties != null && !properties.isEmpty()) { this.properties = properties; } else { this.properties = null; } this.aspectNames = aspectNames; this.permissions = permissions; }
Example #2
Source Project: arcusandroid Author: arcus-smart-home File: IrrigationScheduleCommandEditorFragment.java License: Apache License 2.0 | 6 votes |
@Override public void updateView() { if(isEditMode()) { ArrayList<LinkedTreeMap<String, Object>> events = getScheduleEvents(); for(LinkedTreeMap<String, Object> item : events) { String eventId = (String)item.get("eventId"); if(eventId.equals(getTimeOfDayCommandId())) { switch(title) { case IrrigationSchedule.TYPE_WEEKLY: parseEventDays(item); break; default: break; } } } } rebind(true, getString(R.string.irrigation_start_time), getString(R.string.irrigation_start_time_description)); }
Example #3
Source Project: olingo-odata2 Author: apache File: FilterToJsonTest.java License: Apache License 2.0 | 6 votes |
@SuppressWarnings("unchecked") @Test public void testToJsonMember2() throws Exception { FilterExpression expression = UriParser.parseFilter(null, null, "Location/Country/PostalCode"); String jsonString = toJson(expression); Gson gsonConverter = new Gson(); LinkedTreeMap<String, Object> jsonMap = gsonConverter.fromJson(jsonString, LinkedTreeMap.class); checkMember(jsonMap, null); LinkedTreeMap<String, Object> source1 = (LinkedTreeMap<String, Object>) jsonMap.get(SOURCE); checkMember(source1, null); LinkedTreeMap<String, Object> source2 = (LinkedTreeMap<String, Object>) source1.get(SOURCE); checkProperty(source2, null, "Location"); LinkedTreeMap<String, Object> path1 = (LinkedTreeMap<String, Object>) source1.get(PATH); checkProperty(path1, null, "Country"); LinkedTreeMap<String, Object> path = (LinkedTreeMap<String, Object>) jsonMap.get(PATH); checkProperty(path, null, "PostalCode"); }
Example #4
Source Project: arcusandroid Author: arcus-smart-home File: IrrigationScheduleCommandEditorFragment.java License: Apache License 2.0 | 6 votes |
private ArrayList<LinkedTreeMap<String, Object>> getScheduleEvents() { if(title == null) { title = getArguments().getString(TITLE); } ArrayList<LinkedTreeMap<String, Object>> events = new ArrayList<>(); switch(title) { case IrrigationScheduleStatus.MODE_WEEKLY: events = controller.getWeeklySchedule(getDeviceAddress()); break; case IrrigationScheduleStatus.MODE_INTERVAL: events = controller.getIntervalSchedule(getDeviceAddress()); break; case IrrigationScheduleStatus.MODE_ODD: events = controller.getOddSchedule(getDeviceAddress()); break; case IrrigationScheduleStatus.MODE_EVEN: events = controller.getEvenSchedule(getDeviceAddress()); break; } return events; }
Example #5
Source Project: olingo-odata2 Author: apache File: EntryJsonCreateTest.java License: Apache License 2.0 | 6 votes |
@Test public void createEntryEmployee() throws Exception { String content = "{iVBORw0KGgoAAAANSUhEUgAAAB4AAAAwCAIAAACJ9F2zAAAAA}"; assertNotNull(content); HttpResponse response = postUri("Employees", content, HttpContentType.TEXT_PLAIN, HttpHeaders.ACCEPT, HttpContentType.APPLICATION_JSON, HttpStatusCodes.CREATED); checkMediaType(response, HttpContentType.APPLICATION_JSON); String body = getBody(response); LinkedTreeMap<?, ?> map = getLinkedTreeMap(body); assertEquals("7", map.get("EmployeeId")); assertEquals("Employee 7", map.get("EmployeeName")); assertNull(map.get("EntryData")); response = callUri("Employees('7')/$value"); checkMediaType(response, HttpContentType.TEXT_PLAIN); }
Example #6
Source Project: natrium-android-wallet Author: BananoCoin File: AccountService.java License: BSD 2-Clause "Simplified" License | 6 votes |
/** * Objects that are not mapped to a known response can be processed here * * @param message Websocket Message */ private void handleNullMessageTypes(String message) { try { Object o = gson.fromJson(message, Object.class); if (o instanceof LinkedTreeMap) { processLinkedTreeMap((LinkedTreeMap) o); } else { requestQueue.poll(); processQueue(); } } catch (JsonSyntaxException e) { ExceptionHandler.handle(e); requestQueue.poll(); processQueue(); } }
Example #7
Source Project: olingo-odata2 Author: apache File: EntryJsonCreateInlineTest.java License: Apache License 2.0 | 6 votes |
@Test public void createEntryRoomWithInlineEmptyFeedObject() throws Exception { String content = "{\"d\":{\"__metadata\":{\"id\":\"" + getEndpoint() + "Rooms('1')\"," + "\"uri\":\"" + getEndpoint() + "Rooms('1')\",\"type\":\"RefScenario.Room\"," + "\"etag\":\"W/\\\"3\\\"\"}," + "\"Id\":\"1\",\"Name\":\"Room 104\",\"Seats\":4,\"Version\":2," + "\"nr_Employees\":{\"results\":[]}," + "\"nr_Building\":{\"__deferred\":{\"uri\":\"" + getEndpoint() + "Rooms('1')/nr_Building\"}}}}"; HttpResponse response = postUri("Rooms", content, HttpContentType.APPLICATION_JSON, HttpHeaders.ACCEPT, HttpContentType.APPLICATION_JSON, HttpStatusCodes.CREATED); checkMediaType(response, HttpContentType.APPLICATION_JSON); checkEtag(response, "W/\"2\""); String body = getBody(response); LinkedTreeMap<?, ?> map = getLinkedTreeMap(body); assertEquals("104", map.get("Id")); assertEquals("Room 104", map.get("Name")); @SuppressWarnings("unchecked") LinkedTreeMap<String, String> metadataMap = (LinkedTreeMap<String, String>) map.get("__metadata"); assertNotNull(metadataMap); assertEquals(getEndpoint() + "Rooms('104')", metadataMap.get("id")); assertEquals("RefScenario.Room", metadataMap.get("type")); assertEquals(getEndpoint() + "Rooms('104')", metadataMap.get("uri")); }
Example #8
Source Project: telekom-workflow-engine Author: zutnop File: JsonUtil.java License: MIT License | 6 votes |
private static Map<String, Field> getFieldMap( Class<?> clazz ){ Map<String, Field> fields = new LinkedTreeMap<String, Field>(); Class<?> current = clazz; String prefix = ""; while( !Object.class.equals( current ) ){ for( Field field : current.getDeclaredFields() ){ if( Modifier.isStatic( field.getModifiers() ) && Modifier.isFinal( field.getModifiers() ) ){ // ignore STATIC FINAL fields continue; } fields.put( prefix + field.getName(), field ); } current = current.getSuperclass(); prefix = prefix + "super."; } return fields; }
Example #9
Source Project: olingo-odata2 Author: apache File: EntryJsonCreateTest.java License: Apache License 2.0 | 6 votes |
@Test public void createEntryRoomWithLink() throws Exception { String content = "{\"d\":{\"__metadata\":{\"id\":\"" + getEndpoint() + "Rooms('1')\"," + "\"uri\":\"" + getEndpoint() + "Rooms('1')\",\"type\":\"RefScenario.Room\"," + "\"etag\":\"W/\\\"3\\\"\"}," + "\"Id\":\"1\",\"Name\":\"Room 104\"," + "\"nr_Employees\":{\"__deferred\":{\"uri\":\"" + getEndpoint() + "Rooms('1')/nr_Employees\"}}," + "\"nr_Building\":{\"__deferred\":{\"uri\":\"" + getEndpoint() + "Rooms('1')/nr_Building\"}}}}"; assertNotNull(content); HttpResponse response = postUri("Rooms", content, HttpContentType.APPLICATION_JSON, HttpHeaders.ACCEPT, HttpContentType.APPLICATION_JSON, HttpStatusCodes.CREATED); checkMediaType(response, HttpContentType.APPLICATION_JSON); String body = getBody(response); LinkedTreeMap<?, ?> map = getLinkedTreeMap(body); assertEquals("104", map.get("Id")); assertEquals("Room 104", map.get("Name")); @SuppressWarnings("unchecked") LinkedTreeMap<String, Object> employeesMap = (LinkedTreeMap<String, Object>) map.get("nr_Employees"); assertNotNull(employeesMap); @SuppressWarnings("unchecked") LinkedTreeMap<String, String> deferredMap = (LinkedTreeMap<String, String>) employeesMap.get("__deferred"); assertNotNull(deferredMap); assertEquals(getEndpoint() + "Rooms('104')/nr_Employees", deferredMap.get("uri")); }
Example #10
Source Project: nano-wallet-android Author: nano-wallet-company File: AccountService.java License: BSD 2-Clause "Simplified" License | 6 votes |
/** * Process a linked tree map to see if there are pending blocks to handle * * @param linkedTreeMap Linked Tree Map */ private void processLinkedTreeMap(LinkedTreeMap linkedTreeMap) { if (linkedTreeMap.containsKey("blocks")) { // this is a set of blocks Object blocks = linkedTreeMap.get("blocks"); if (blocks instanceof LinkedTreeMap) { // blocks is not empty Set keys = ((LinkedTreeMap) blocks).keySet(); for (Object key : keys) { try { PendingTransactionResponseItem pendingTransactionResponseItem = new Gson().fromJson(String.valueOf(((LinkedTreeMap) blocks).get(key)), PendingTransactionResponseItem.class); pendingTransactionResponseItem.setHash(key.toString()); handleTransactionResponse(pendingTransactionResponseItem); } catch (Exception e) { ExceptionHandler.handle(e); } } } } requestQueue.poll(); processQueue(); }
Example #11
Source Project: olingo-odata2 Author: apache File: FilterToJsonTest.java License: Apache License 2.0 | 6 votes |
@SuppressWarnings("unchecked") @Test public void testToJsonMember() throws Exception { FilterExpression expression = UriParser.parseFilter(null, null, "Location/Country"); String jsonString = toJson(expression); Gson gsonConverter = new Gson(); LinkedTreeMap<String, Object> jsonMap = gsonConverter.fromJson(jsonString, LinkedTreeMap.class); checkMember(jsonMap, null); LinkedTreeMap<String, Object> source = (LinkedTreeMap<String, Object>) jsonMap.get(SOURCE); checkProperty(source, null, "Location"); LinkedTreeMap<String, Object> path = (LinkedTreeMap<String, Object>) jsonMap.get(PATH); checkProperty(path, null, "Country"); }
Example #12
Source Project: mobile-messaging-sdk-android Author: infobip File: JsonSerializerTest.java License: Apache License 2.0 | 6 votes |
@Test public void execute_JSON_to_Map() throws Exception { String json = "{" + "\"string\":\"String\"," + "\"boolean\":true," + "\"double\":1.0" + "}"; Map<?, ?> jsonMap = new JsonSerializer().deserialize(json, Map.class); Map<String, Object> map = new LinkedTreeMap<>(); assertEquals(map.getClass(), jsonMap.getClass()); map = (Map<String, Object>) jsonMap; Assert.assertTrue(getMessageForClassMismatch(String.class, map.get("string").getClass()), map.get("string") instanceof String); Assert.assertTrue(getMessageForClassMismatch(Boolean.class, map.get("boolean").getClass()), map.get("boolean") instanceof Boolean); Assert.assertTrue(getMessageForClassMismatch(Double.class, map.get("double").getClass()), map.get("double") instanceof Double); }
Example #13
Source Project: gocd-yaml-config-plugin Author: tomzo File: StageTransform.java License: Apache License 2.0 | 6 votes |
public Map<String, Object> inverseTransform(Map<String, Object> stage) { if (stage == null) { return stage; } String stageName = (String) stage.get(JSON_STAGE_NAME_FIELD); Map<String, Object> inverseStage = new LinkedTreeMap<>(); Map<String, Object> stageData = new LinkedTreeMap<>(); addOptionalValue(stageData, stage, JSON_STAGE_FETCH_FIELD, YAML_STAGE_FETCH_FIELD); addOptionalValue(stageData, stage, JSON_STAGE_NEVER_CLEAN_FIELD, YAML_STAGE_KEEP_ARTIFACTS_FIELD); addOptionalValue(stageData, stage, JSON_STAGE_CLEAN_WORK_FIELD, YAML_STAGE_CLEAN_WORK_FIELD); addOptionalValue(stageData, stage, JSON_STAGE_APPROVAL_ALLOW_ONLY_ON_SUCCESS_FIELD, YAML_STAGE_APPROVAL_ALLOW_ONLY_ON_SUCCESS_FIELD); addInverseApproval(stageData, stage); Map<String, Object> yamlEnvVariables = environmentTransform.inverseTransform((List<Map<String, Object>>) stage.get(JSON_ENV_VAR_FIELD)); if (yamlEnvVariables != null && yamlEnvVariables.size() > 0) stageData.putAll(yamlEnvVariables); addInverseJobs(stageData, (List<Map<String, Object>>) stage.get(JSON_STAGE_JOBS_FIELD)); inverseStage.put(stageName, stageData); return inverseStage; }
Example #14
Source Project: gocd-yaml-config-plugin Author: tomzo File: ConfigurationTransform.java License: Apache License 2.0 | 6 votes |
void addInverseConfiguration(Map<String, Object> taskData, Map<String, Object> task) { List<Map<String, Object>> jsonOptions = (List<Map<String, Object>>) task.get(JSON_PLUGIN_CONFIGURATION_FIELD); if (jsonOptions == null) return; Map<String, Object> options = new LinkedTreeMap<>(); Map<String, Object> secureOptions = new LinkedTreeMap<>(); for (Map<String, Object> option : jsonOptions) { if (option.containsKey(JSON_PLUGIN_CONFIG_ENCRYPTED_VALUE_FIELD)) { secureOptions.put((String) option.get(JSON_PLUGIN_CONFIG_KEY_FIELD), option.get(JSON_PLUGIN_CONFIG_ENCRYPTED_VALUE_FIELD)); } else { options.put((String) option.get(JSON_PLUGIN_CONFIG_KEY_FIELD), option.get(JSON_PLUGIN_CONFIG_VALUE_FIELD)); } } if (options.size() > 0) taskData.put(YAML_PLUGIN_STD_CONFIG_FIELD, options); if (secureOptions.size() > 0) taskData.put(YAML_PLUGIN_SEC_CONFIG_FIELD, secureOptions); }
Example #15
Source Project: framework Author: Odoo-mobile File: OdooWrapper.java License: GNU Affero General Public License v3.0 | 6 votes |
private OUser parseUserObject(OUser user, OdooResult result) { // Odoo 10.0+ returns array of object in read method if (result.containsKey("result") && result.get("result") instanceof ArrayList) { List<LinkedTreeMap> items = (List<LinkedTreeMap>) result.get("result"); result = new OdooResult(); result.putAll(items.get(0)); } user.setName(result.getString("name")); user.setAvatar(result.getString("image_medium")); user.setTimezone(result.getString("tz")); Double partner_id = (Double) result.getArray("partner_id").get(0); Double company_id = (Double) result.getArray("company_id").get(0); user.setPartnerId(partner_id.intValue()); user.setCompanyId(company_id.intValue()); if (mVersion.getVersionNumber() == 7) { //FIX: Odoo 7 Not returning company id with user login details odooSession.setCompanyId(company_id.intValue()); } return user; }
Example #16
Source Project: gocd-yaml-config-plugin Author: tomzo File: JobTransform.java License: Apache License 2.0 | 6 votes |
private void addInverseArtifacts(Map<String, Object> jobData, Map<String, Object> job) { List<Map<String, Object>> artifacts = (List<Map<String, Object>>) job.get(JSON_JOB_ARTIFACTS_FIELD); if (artifacts == null || artifacts.isEmpty()) return; List<Map<String, Object>> inverseArtifacts = new ArrayList<>(); for (Map<String, Object> artifact : artifacts) { Map<String, Object> inverseArtifact = new LinkedTreeMap<>(); String type = (String) artifact.remove("type"); inverseArtifact.put(type, artifact); inverseArtifacts.add(inverseArtifact); handleExternalArtifactConfiguration(type, inverseArtifact); } jobData.put(YAML_JOB_ARTIFACTS_FIELD, inverseArtifacts); }
Example #17
Source Project: gocd-yaml-config-plugin Author: tomzo File: TaskTransform.java License: Apache License 2.0 | 6 votes |
public Map<String, Object> inverseTransform(Map<String, Object> task) { String type = (String) task.get(JSON_TASK_TYPE_FIELD); Map<String, Object> inverseTask = new LinkedTreeMap<>(); Map<String, Object> taskData = new LinkedTreeMap<>(); addInverseOnCancel(taskData, task); addOptionalValue(taskData, task, JSON_TASK_PLUGIN_CONFIGURATION_FIELD, YAML_PLUGIN_CONFIGURATION_FIELD); addInverseConfiguration(taskData, task); addOptionalValue(taskData, task, JSON_TASK_IS_FILE_FIELD, YAML_TASK_IS_FILE_FIELD); addOptionalList(taskData, task, JSON_TASK_EXEC_ARGS_FIELD, YAML_TASK_EXEC_ARGS_FIELD); for (Map.Entry<String, Object> taskProp : task.entrySet()) { if (yamlSpecialKeywords.contains(taskProp.getKey())) continue; if (taskProp.getValue() instanceof String) taskData.put(taskProp.getKey(), taskProp.getValue()); } inverseTask.put(type, taskData); return inverseTask; }
Example #18
Source Project: olingo-odata2 Author: apache File: FilterToJsonTest.java License: Apache License 2.0 | 6 votes |
@SuppressWarnings("unchecked") @Test public void testToJsonBinaryLiteral() throws Exception { FilterExpression expression = UriParser.parseFilter(null, null, "'a' eq 'b'"); String jsonString = toJson(expression); Gson gsonConverter = new Gson(); LinkedTreeMap<String, Object> jsonMap = gsonConverter.fromJson(jsonString, LinkedTreeMap.class); checkBinary(jsonMap, "eq", "Edm.Boolean"); LinkedTreeMap<String, Object> left = (LinkedTreeMap<String, Object>) jsonMap.get(LEFT); checkLiteral(left, "Edm.String", "a"); LinkedTreeMap<String, Object> right = (LinkedTreeMap<String, Object>) jsonMap.get(RIGHT); checkLiteral(right, "Edm.String", "b"); }
Example #19
Source Project: bender Author: Nextdoor File: GenericJsonDeserializerTest.java License: Apache License 2.0 | 6 votes |
@Test public void testGetNestedObjField() throws UnsupportedEncodingException, IOException, FieldNotFoundException { String input = TestUtils.getResourceString(this.getClass(), "basic.json"); GenericJsonDeserializer deser = new GenericJsonDeserializer(Collections.emptyList()); deser.init(); DeserializedEvent event = deser.deserialize(input); Map<String, String> expected = new HashMap<String, String>(); expected.put("foo", "bar"); Object o = event.getField("$.an_obj"); assertTrue(o instanceof JsonObject); JsonObject actual = (JsonObject) o; Gson gson = new Gson(); assertEquals(expected, gson.fromJson(actual, LinkedTreeMap.class)); }
Example #20
Source Project: submarine Author: apache File: SubmarineServerClusterTest.java License: Apache License 2.0 | 5 votes |
@Test public void testGetClusterNode() throws IOException { ArrayList<HashMap<String, Object>> listNodes = getClusterNodes(); Map<String, Object> properties = (LinkedTreeMap<String, Object>) listNodes.get(0).get(ClusterMeta.PROPERTIES); ArrayList<String> intpList = (ArrayList<String>) properties.get(ClusterMeta.INTP_PROCESS_LIST); String nodeName = listNodes.get(0).get(ClusterMeta.NODE_NAME).toString(); String intpName = intpList.get(0); LOG.info("properties = {}", properties); LOG.info("intpList = {}", intpList); LOG.info("nodeName = {}", nodeName); LOG.info("intpName = {}", intpName); GetMethod response = httpGet("/api/" + RestConstants.V1 + "/" + RestConstants.CLUSTER + "/" + RestConstants.NODE + "/" + nodeName + "/" + intpName); LOG.info(response.toString()); String requestBody = response.getResponseBodyAsString(); LOG.info(requestBody); Type type = new TypeToken<JsonResponse<ArrayList<HashMap<String, Object>>>>() {}.getType(); Gson gson = new Gson(); JsonResponse<ArrayList<HashMap<String, Object>>> jsonResponse = gson.fromJson(requestBody, type); LOG.info(jsonResponse.getResult().toString()); assertEquals(jsonResponse.getCode(), Response.Status.OK.getStatusCode()); ArrayList<HashMap<String, Object>> intpProcesses = jsonResponse.getResult(); LOG.info("intpProcesses = {}", intpProcesses); assertEquals(intpProcesses.size(), 1); }
Example #21
Source Project: hadoop-ozone Author: apache File: TestReconWithOzoneManager.java License: Apache License 2.0 | 5 votes |
private LinkedTreeMap getContainerResponseMap(String containerResponse, int expectedContainerID) { Map map = new Gson().fromJson(containerResponse, HashMap.class); LinkedTreeMap linkedTreeMap = (LinkedTreeMap) map.get("data"); ArrayList containers = (ArrayList) linkedTreeMap.get("containers"); return (LinkedTreeMap)containers.get(expectedContainerID); }
Example #22
Source Project: olingo-odata2 Author: apache File: FilterToJsonTest.java License: Apache License 2.0 | 5 votes |
private void checkBinary(final LinkedTreeMap<String, Object> binary, final String expectedOperator, final String expectedType) throws Exception { assertEquals(ExpressionKind.BINARY.toString(), binary.get(NODETYPE)); assertEquals(expectedOperator, binary.get(OPERATOR)); assertEquals(expectedType, binary.get(TYPE)); assertNotNull(binary.get(LEFT)); assertNotNull(binary.get(RIGHT)); }
Example #23
Source Project: arcusandroid Author: arcus-smart-home File: LawnAndGardenScheduleController.java License: Apache License 2.0 | 5 votes |
public ArrayList<LinkedTreeMap<String, Object>> filterDeletedEvents(ArrayList<LinkedTreeMap<String, Object>> events) { ArrayList<LinkedTreeMap<String, Object>> returnList = new ArrayList<>(); for(LinkedTreeMap<String, Object> event : events) { if(event.get("status") != null) { String status = (String)event.get("status"); if(!status.equals("DELETING") && !status.equals("DELETED")) { returnList.add(event); } } } return returnList; }
Example #24
Source Project: arcusandroid Author: arcus-smart-home File: LawnAndGardenScheduleController.java License: Apache License 2.0 | 5 votes |
public ArrayList<LinkedTreeMap<String, Object>> getWeeklySchedule(String deviceAddress) { Map<String, Map<String, Object>> map = getLawnNGardenSubsystem().getWeeklySchedules(); Map<String, Object> deviceMap = map.get(deviceAddress); if(deviceMap == null) { return new ArrayList<>(); } ArrayList<LinkedTreeMap<String, Object>> events = (ArrayList<LinkedTreeMap<String, Object>>) deviceMap.get("events"); return filterDeletedEvents(events); }
Example #25
Source Project: arcusandroid Author: arcus-smart-home File: LawnAndGardenScheduleController.java License: Apache License 2.0 | 5 votes |
public ArrayList<LinkedTreeMap<String, Object>> getOddSchedule(String deviceAddress) { Map<String, Map<String, Object>> map = getLawnNGardenSubsystem().getOddSchedules(); Map<String, Object> deviceMap = map.get(deviceAddress); if(deviceMap == null) { return new ArrayList<>(); } ArrayList<LinkedTreeMap<String, Object>> events = (ArrayList<LinkedTreeMap<String, Object>>) deviceMap.get("events"); return filterDeletedEvents(events); }
Example #26
Source Project: arcusandroid Author: arcus-smart-home File: LawnAndGardenScheduleController.java License: Apache License 2.0 | 5 votes |
public ArrayList<LinkedTreeMap<String, Object>> getIntervalSchedule(String deviceAddress) { Map<String, Map<String, Object>> map = getLawnNGardenSubsystem().getIntervalSchedules(); Map<String, Object> deviceMap = map.get(deviceAddress); if(deviceMap == null) { return new ArrayList<>(); } ArrayList<LinkedTreeMap<String, Object>> events = (ArrayList<LinkedTreeMap<String, Object>>) deviceMap.get("events"); return filterDeletedEvents(events); }
Example #27
Source Project: arcusandroid Author: arcus-smart-home File: LightsNSwitchesEditController.java License: Apache License 2.0 | 5 votes |
private ClientFuture<ClientEvent> add(LightsNSwitchesScheduleDay modifyingDay) { ClientRequest request = new ClientRequest(); request.setAddress(schedulerModel.getAddress()); request.setCommand(WeeklySchedule.ScheduleWeeklyCommandRequest.NAME + ":" + LightsNSwitchesScheduleViewController.LNS_GROUP_ID); request.setAttribute(WeeklySchedule.ScheduleWeeklyCommandRequest.ATTR_DAYS, serializeDays(modifyingDay)); request.setAttribute(WeeklySchedule.UpdateWeeklyCommandRequest.ATTR_MODE, modifyingDay.getTimeOfDay().getSunriseSunset().name()); if (SunriseSunset.ABSOLUTE.equals(modifyingDay.getTimeOfDay().getSunriseSunset())) { request.setAttribute(WeeklySchedule.UpdateWeeklyCommandRequest.ATTR_TIME, modifyingDay.getTimeOfDay().toString()); } else { request.setAttribute(WeeklySchedule.UpdateWeeklyCommandRequest.ATTR_OFFSETMINUTES, modifyingDay.getTimeOfDay().getOffset()); } request.setAttribute(WeeklySchedule.ScheduleWeeklyCommandRequest.ATTR_ATTRIBUTES, serializeAttributes(modifyingDay)); LinkedTreeMap map = (LinkedTreeMap)schedulerModel.get(Scheduler.ATTR_COMMANDS); if (map != null && map.size() == 0){ setScheduleEnabled(schedulerModel.getTarget(), true); } return CorneaClientFactory.getClient() .request(request) .onFailure(onError); }
Example #28
Source Project: olingo-odata2 Author: apache File: AbstractRefJsonTest.java License: Apache License 2.0 | 5 votes |
public LinkedTreeMap<?,?> getLinkedTreeMap(final String body) { Gson gson = new Gson(); final LinkedTreeMap<?,?> map = gson.fromJson(body, new TypeToken<LinkedTreeMap<?,?>>() {}.getType()); if (map.get("d") instanceof LinkedTreeMap<?,?>) { return (LinkedTreeMap<?,?>) map.get("d"); } else { return map; } }
Example #29
Source Project: arcusandroid Author: arcus-smart-home File: IrrigationScheduleCommandEditorFragment.java License: Apache License 2.0 | 5 votes |
private void parseEventDays(LinkedTreeMap<String, Object> item) { EnumSet<DayOfWeek> repetitions = EnumSet.of(DayOfWeek.FRIDAY); repetitions.remove(DayOfWeek.FRIDAY); ArrayList<String> eventDays = (ArrayList<String>) item.get("days"); if(eventDays.contains("MON")) { repetitions.add(DayOfWeek.MONDAY); } if(eventDays.contains("TUE")) { repetitions.add(DayOfWeek.TUESDAY); } if(eventDays.contains("WED")) { repetitions.add(DayOfWeek.WEDNESDAY); } if(eventDays.contains("THU")) { repetitions.add(DayOfWeek.THURSDAY); } if(eventDays.contains("FRI")) { repetitions.add(DayOfWeek.FRIDAY); } if(eventDays.contains("SAT")) { repetitions.add(DayOfWeek.SATURDAY); } if(eventDays.contains("SUN")) { repetitions.add(DayOfWeek.SUNDAY); } setSelectedDays(repetitions); }
Example #30
Source Project: olingo-odata2 Author: apache File: FilterToJsonTest.java License: Apache License 2.0 | 5 votes |
@SuppressWarnings("unchecked") @Test public void testToJsonBinaryAdd() throws Exception { FilterExpression expression = UriParser.parseFilter(null, null, "1d add 2d add 3d add 4d"); String jsonString = toJson(expression); Gson gsonConverter = new Gson(); LinkedTreeMap<String, Object> jsonMap = gsonConverter.fromJson(jsonString, LinkedTreeMap.class); checkBinary(jsonMap, "add", "Edm.Double"); LinkedTreeMap<String, Object> left1 = (LinkedTreeMap<String, Object>) jsonMap.get(LEFT); checkBinary(left1, "add", "Edm.Double"); LinkedTreeMap<String, Object> left2 = (LinkedTreeMap<String, Object>) left1.get(LEFT); checkBinary(left2, "add", "Edm.Double"); LinkedTreeMap<String, Object> literal1 = (LinkedTreeMap<String, Object>) left2.get(LEFT); checkLiteral(literal1, "Edm.Double", "1"); LinkedTreeMap<String, Object> literal2 = (LinkedTreeMap<String, Object>) left2.get(RIGHT); checkLiteral(literal2, "Edm.Double", "2"); LinkedTreeMap<String, Object> literal3 = (LinkedTreeMap<String, Object>) left1.get(RIGHT); checkLiteral(literal3, "Edm.Double", "3"); LinkedTreeMap<String, Object> right1 = (LinkedTreeMap<String, Object>) jsonMap.get(RIGHT); checkLiteral(right1, "Edm.Double", "4"); }