Package com.ikanow.infinit.e.api.social.sharing

Examples of com.ikanow.infinit.e.api.social.sharing.ByteArrayOutputRepresentation


           try
           {
             //return the bytes like we do in shares
             DocumentFileInterface dfp = (DocumentFileInterface) rp.getData();
             if (null != dfp) {
               ByteArrayOutputRepresentation rep = new ByteArrayOutputRepresentation(MediaType.valueOf(dfp.mediaType));
               rep.setOutputBytes(dfp.bytes);
               return rep;
             }
           }
           catch (Exception ex )
           {
View Full Code Here

TOP

Related Classes of com.ikanow.infinit.e.api.social.sharing.ByteArrayOutputRepresentation

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.