Package org.apache.clerezza.platform.content

Examples of org.apache.clerezza.platform.content.DiscobitsHandler


    } else {
      alternativeImage = imageProcessor.makeAThumbnail(buffImage,
          resolution.getWidth(), resolution.getHeight());
    }
    byte[] alternativeImageBytes = bufferedImage2ByteArray(alternativeImage, mediaType);
    DiscobitsHandler contentHandler = (DiscobitsHandler) discobitTracker.getService();
   
    UriRef thumbnailUri = createThumbnailUri((UriRef) node.getNode(), alternativeImage, extact);
    contentHandler.put(thumbnailUri, mediaType, alternativeImageBytes);
    Lock writeLock = node.writeLock();
    writeLock.lock();
    try {
      node.addProperty(DISCOBITS.thumbnail, thumbnailUri);
      return thumbnailUri;
View Full Code Here

TOP

Related Classes of org.apache.clerezza.platform.content.DiscobitsHandler

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.