added Boolean deep to getRelationshipChain
This commit is contained in:
parent
8891ec4fb2
commit
44b87e9aff
|
@ -166,14 +166,15 @@ public class ProjectsCaller {
|
|||
* @param profileID the profile ID
|
||||
* @param projectID the project ID
|
||||
* @param relationID the relation ID
|
||||
* @param deep the deep
|
||||
* @return the relationship chain
|
||||
* @throws Exception the exception
|
||||
*/
|
||||
public Iterator<RelationshipNavigationObject> getRelationshipChain(String profileID, String projectID, String relationID)
|
||||
public Iterator<RelationshipNavigationObject> getRelationshipChain(String profileID, String projectID, String relationID, Boolean deep)
|
||||
throws Exception {
|
||||
LOG.info("getRelationshipChain called for projectID: {}, relationID: {}", projectID, projectID);
|
||||
Projects<Project> client = (Projects<Project>) getClient(profileID);
|
||||
return client.getRelationshipChain(projectID, relationID);
|
||||
return client.getRelationshipChain(projectID, relationID, deep);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue