Package com.cloud.api.response

Examples of com.cloud.api.response.CreateCmdResponse


    }

    public abstract String getEntityTable();

    public String getResponse(long jobId, long objectId, String objectEntityTable) {
        CreateCmdResponse response = new CreateCmdResponse();
        response.setJobId(jobId);
        response.setId(objectId);
        response.setIdEntityTable(objectEntityTable);
        response.setResponseName(getCommandName());
        return _responseGenerator.toSerializedString(response, getResponseType());
    }
View Full Code Here

TOP

Related Classes of com.cloud.api.response.CreateCmdResponse

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.