Hello to all,
For now when I need to delete a organization, I do the following steps :
QueryParams<QueryReferenceField> params = new QueryParams<QueryReferenceField>();
Filter filter = new Filter(new Expression(QueryReferenceField.NAME, "my_org_name", ExpressionType.EQUALS));
params.setFilter(filter);
ReferenceResult result = vcloudClient.getQueryService().queryReferences(QueryReferenceType.ORGANIZATION, params);
AdminOrganization organization = AdminOrganization.getAdminOrgById(vcloudClient, result.getReferences().get(0).getId());
// first of all disable the organization
organization.disable();
organization.delete();
Approximately the same steps must be done in order do delete other entities from vcloud (netwroks, vdcs, etc.)
My question is : Is it possible to delete a vCloud entity using a genereic mecanism based only on entity name ? I mean without using the query service
Thank you