Examples of VMUserDataResponse


Examples of org.apache.cloudstack.api.response.VMUserDataResponse

    /////////////////////////////////////////////////////

    @Override
    public void execute() {
        String userData = _userVmService.getVmUserData(getId());
        VMUserDataResponse resp = new VMUserDataResponse();
        resp.setVmId(_entityMgr.findById(UserVm.class, getId()).getUuid());
        resp.setUserData(userData);
        resp.setObjectName("virtualmachineuserdata");
        resp.setResponseName(getCommandName());
        this.setResponseObject(resp);
    }
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.