The findForId operation searches for a specific FinderResult object according to that FinderResult object's type and id properties.

You can use the findForId operation to acquire information about FinderResult objects you have already found by using the other find* operations. For example, you can use the findForId method to obtain the state of a FinderResult object you found by using the find operation.

The findForId operation is declared as the following example shows.

public FinderResult findForId(String type, String id, String username, 
String password);

Type

Value

Description

String

type

Type of object looked for.

String

id

ID of the object looked for.

String

username

Orchestrator user name.

String

password

Orchestrator password.

Returns a FinderResult object containing details of the object found. Returns null if you pass it an invalid parameter.