4.0

Table Of Contents
Procedure
1 Declare the IPluginFactory.findRelation() method to return a java.util.List instance that lists all the
child objects that relate to a parent object by a given relation.
public List findRelation(String parentType, String parentId, String relationName) {
}
2 Write in the logs the type and identifier of the parent object and the name of the relationship that the child
objects have to the parent.
public List findRelation(String parentType, String parentId, String relationName) {
log.debug("findRelation: " + parentType + ", " + parentId + ", " + relationName);
}
vCenter Orchestrator Developer's Guide
164 VMware, Inc.