return pids;
}
public static List<String> getContentModels(String pid) {
try {
GetObjectProfileResponse getObjectProfileResponse = FedoraClient
.getObjectProfile(pid).execute(client);
return getObjectProfileResponse.getObjectProfile().getObjModels()
.getModel();
} catch (FedoraClientException e) {
e.printStackTrace();
}
return null;