Package com.yourmediashelf.fedora.client.response

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


    return null;
  }

  public static String getDatastreamMIME(String pid, String dsid) {
    try {
      GetDatastreamResponse getDatastreamResponse = FedoraClient
          .getDatastream(pid, dsid).execute(client);
      return getDatastreamResponse.getDatastreamProfile().getDsMIME();
    } catch (FedoraClientException e) {
      e.printStackTrace();
    }
    return null;
  }
View Full Code Here

TOP

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

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.