Examples of PerformActionRequest


Examples of org.apache.deltacloud.client.request.PerformActionRequest

  public InputStream performAction(Action<?> action) throws DeltaCloudClientException {
    InputStream in = null;
    if (action != null) {
      try {
        in = request(new PerformActionRequest(action.getUrl(), action.getMethod()));
      } catch (DeltaCloudClientException e) {
        throw e;
      } catch (Exception e) {
        throw new DeltaCloudClientException(e);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.