Search in sources :

Example 1 with HostTagResponse

use of org.apache.cloudstack.api.response.HostTagResponse in project cloudstack by apache.

the class HostTagDaoImpl method newHostTagResponse.

@Override
public HostTagResponse newHostTagResponse(HostTagVO tag) {
    HostTagResponse tagResponse = new HostTagResponse();
    tagResponse.setName(tag.getName());
    tagResponse.setHostId(tag.getHostId());
    tagResponse.setObjectName("hosttag");
    return tagResponse;
}
Also used : HostTagResponse(org.apache.cloudstack.api.response.HostTagResponse)

Aggregations

HostTagResponse (org.apache.cloudstack.api.response.HostTagResponse)1