Ejemplo n.º 1
0
 public static void modifyDatastreamByValue(
     FedoraAPIMMTOM skeleton,
     String pid,
     String dsId,
     String[] altIDs,
     String dsLabel,
     String mimeType,
     String formatURI,
     byte[] content,
     String checksumType,
     String checksum,
     String logMessage) {
   skeleton.modifyDatastreamByValue(
       pid,
       dsId,
       TypeUtility.convertStringtoAOS(altIDs),
       dsLabel,
       mimeType,
       formatURI,
       TypeUtility.convertBytesToDataHandler(content),
       checksumType,
       checksum,
       logMessage,
       false);
 }