use of com.serotonin.json.type.JsonTypeWriter in project ma-modules-public by infiniteautomation.
the class JsonEmportV2Controller method export.
@PreAuthorize("isAdmin()")
@ApiOperation(value = "Export Configuration", notes = "", response = JsonValue.class)
@RequestMapping(method = RequestMethod.GET)
public ResponseEntity<JsonValue> export(@ApiParam(value = "Elements To Export", required = true, allowMultiple = true) @RequestParam(name = "exportElements", required = true) String[] exportElements, HttpServletRequest request) throws JsonException {
// Do the Export
Map<String, Object> data = ConfigurationExportData.createExportDataMap(exportElements);
JsonTypeWriter writer = new JsonTypeWriter(Common.JSON_CONTEXT);
return new ResponseEntity<>(writer.writeObject(data), HttpStatus.OK);
}
use of com.serotonin.json.type.JsonTypeWriter in project ma-core-public by infiniteautomation.
the class LazyFieldJsonTest method testLazyPermissionInObject.
@Test
public void testLazyPermissionInObject() {
RoleService roleService = Common.getBean(RoleService.class);
PermissionService permissionService = Common.getBean(PermissionService.class);
Role role1 = roleService.insert(new RoleVO(Common.NEW_ID, "XID-1", "Role 1")).getRole();
Role role2 = roleService.insert(new RoleVO(Common.NEW_ID, "XID-2", "Role 2")).getRole();
LazyContainer container = new LazyContainer();
container.supplyPermission(() -> MangoPermission.builder().minterm(role1, role2).build());
try (StringWriter stringWriter = new StringWriter()) {
JsonWriter writer = new JsonWriter(Common.JSON_CONTEXT, stringWriter);
JsonTypeWriter typeWriter = new JsonTypeWriter(Common.JSON_CONTEXT);
JsonValue value = typeWriter.writeObject(container);
writer.setPrettyIndent(0);
writer.setPrettyOutput(true);
writer.writeObject(value);
String json = stringWriter.toString();
JsonTypeReader typeReader = new JsonTypeReader(json);
JsonValue read = typeReader.read();
JsonObject root = read.toJsonObject();
JsonReader reader = new JsonReader(Common.JSON_CONTEXT, root);
ImportContext context = new ImportContext(reader, new ProcessResult(), Common.getTranslations());
LazyContainer readContainer = new LazyContainer();
context.getReader().readInto(readContainer, root);
assertEquals(container.getPermission(), readContainer.getPermission());
} catch (IOException | JsonException e) {
e.printStackTrace();
fail(e.getMessage());
}
}
Aggregations