@ConditionalOnClass(name = {"org.activiti.rest.service.api.RestUrls", "org.springframework.web.servlet.DispatcherServlet"})
public class RestApiAutoConfiguration {
@Bean()
public RestResponseFactory restResponseFactory() {
RestResponseFactory restResponseFactory = new RestResponseFactory();
return restResponseFactory;
}