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;
}
Aggregations