Examples of MutableFileInfoImpl


Examples of org.jclouds.mezeo.pcs.domain.internal.MutableFileInfoImpl

*/
@Singleton
public class BlobToFileInfo implements Function<BlobMetadata, MutableFileInfo> {
   @Override
   public MutableFileInfo apply(BlobMetadata base) {
      MutableFileInfo to = new MutableFileInfoImpl();
      to.setUrl(base.getUri());
      to.setMimeType(base.getContentMetadata().getContentType());
      to.setName(base.getName());
      to.setModified(base.getLastModified());
      if (base.getContentMetadata().getContentLength() != null)
         to.setBytes(base.getContentMetadata().getContentLength());
      return to;
   }
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.