Package org.apache.sling.bgservlets.impl.nodestream

Examples of org.apache.sling.bgservlets.impl.nodestream.NodeOutputStream


            }
            node.setProperty(RT_PROP, BackgroundServletConstants.JOB_RESOURCE_TYPE);
            final Node stream = node.addNode(STREAM_PATH);
            stream.setProperty(RT_PROP, BackgroundServletConstants.STREAM_RESOURCE_TYPE);
            node.save();
            return new NodeOutputStream(stream);
        } catch(Exception e) {
            throw new JobStorageException("Exception in getOutputStream()", e);
        }
  }
View Full Code Here

TOP

Related Classes of org.apache.sling.bgservlets.impl.nodestream.NodeOutputStream

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.