Package org.sonatype.nexus.blobstore.file.MapdbBlobMetadataStore

Examples of org.sonatype.nexus.blobstore.file.MapdbBlobMetadataStore.MetadataRecord.readExternal()


  private MetadataRecord readFrom(final byte[] bytes) throws IOException, ClassNotFoundException {
    final ObjectInputStream objectsIn = new ObjectInputStream(new ByteArrayInputStream(bytes));

    final MetadataRecord roundTripMetadata = new MetadataRecord();
    roundTripMetadata.readExternal(objectsIn);

    return roundTripMetadata;
  }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.