Package com.yourmediashelf.fedora.client.response

Examples of com.yourmediashelf.fedora.client.response.GetObjectProfileResponse


    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;
View Full Code Here


    return null;
  }

  public static Date getLastModifiedDate(String pid) {
    try {
      GetObjectProfileResponse response = FedoraClient.getObjectProfile(
          pid).execute(client);
      return response.getLastModifiedDate();
    } catch (FedoraClientException e) {
      e.printStackTrace();
    }
    return null;
View Full Code Here

TOP

Related Classes of com.yourmediashelf.fedora.client.response.GetObjectProfileResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.