Package org.activiti.rest.service.api.management

Examples of org.activiti.rest.service.api.management.TableResponse


    }
    return result;
  }
 
  public TableResponse createTableResponse(String name, Long count, String serverRootUrl) {
    TableResponse result = new TableResponse();
    result.setName(name);
    result.setCount(count);
    result.setUrl(formatUrl(serverRootUrl, RestUrls.URL_TABLE, name));
    return result;
  }
View Full Code Here

TOP

Related Classes of org.activiti.rest.service.api.management.TableResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.