use of org.alfresco.rest.framework.jacksonextensions.RestJsonModule in project alfresco-remote-api by Alfresco.
the class JsonJacksonTests method setupTests.
@BeforeClass
public static void setupTests() throws Exception {
jsonHelper = new JacksonHelper();
RestJsonModule module = new RestJsonModule();
jsonHelper.setModule(module);
jsonHelper.afterPropertiesSet();
}
use of org.alfresco.rest.framework.jacksonextensions.RestJsonModule in project alfresco-remote-api by Alfresco.
the class ParamsExtractorTests method setupTests.
@BeforeClass
public static void setupTests() throws Exception {
jsonHelper = new JacksonHelper();
RestJsonModule module = new RestJsonModule();
jsonHelper.setModule(module);
jsonHelper.afterPropertiesSet();
assistant = new ApiAssistant();
assistant.setJsonHelper(jsonHelper);
}
Aggregations