Examples of toXml()


Examples of org.apache.hadoop.hdfs.server.namenode.NamenodeJspHelper.XMLBlockInfo.toXML()

}


XMLBlockInfo bi = new XMLBlockInfo(fsn, blockId);
XMLOutputter doc = new XMLOutputter(out, "UTF-8");
bi.toXML(doc);


    } catch (Throwable t) {
      if (!(t instanceof SkipPageException)){
        out = _jspx_out;
View Full Code Here

Examples of org.apache.hadoop.hdfs.server.namenode.NamenodeJspHelper.XMLCorruptBlockInfo.toXML()

  XMLCorruptBlockInfo cbi = new XMLCorruptBlockInfo(fsn,
                                                    new Configuration(),
                                                    numCorruptBlocks,
                                                    startingBlockId);
  XMLOutputter doc = new XMLOutputter(out, "UTF-8");
  cbi.toXML(doc);

    } catch (Throwable t) {
      if (!(t instanceof SkipPageException)){
        out = _jspx_out;
        if (out != null && out.getBufferSize() != 0)
View Full Code Here

Examples of org.apache.hadoop.hive.ql.plan.MapredWork.toXML()

          return null;
        }
        currWork.setOpParseCtxMap(parseCtx.getOpParseCtx());
        currWork.setJoinTree(joinTree);

        String xml = currWork.toXML();
        String bigTableAlias = null;

        if(smallTableOnlySet.size() == numAliases) {
          return null;
        }
View Full Code Here

Examples of org.apache.isis.viewer.xhtml.viewer.html.XhtmlTemplate.toXML()

        }
        div.appendChild(ul);

        xhtml.appendToBody(div);

        return xhtml.toXML();
    }

    private SpecificationLoader getSpecificationLoader() {
        return IsisContext.getSpecificationLoader();
    }
View Full Code Here

Examples of org.apache.jackrabbit.webdav.MultiStatus.toXml()

        if (responses != null) {
            for (MultiStatusResponse response : responses) {
                ms.addResponse(response);
            }
        }
        return ms.toXml(document);
    }
}
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.lock.JcrActiveLock.toXml()

        Lock l = new TestLock(jcrtimeout);
        JcrActiveLock al = new JcrActiveLock(l);

        Document d = DomUtil.createDocument();
        Element activeLock = al.toXml(d);
        assertEquals("activelock", activeLock.getLocalName());
        NodeList nl = activeLock.getElementsByTagNameNS("DAV:", "timeout");

        if (expectedString == null) {
            assertEquals(0, nl.getLength());
View Full Code Here

Examples of org.apache.jackrabbit.webdav.observation.EventDiscovery.toXml()

            EventDiscovery disc = method.getResponseAsEventDiscovery();
            EventBundle[] events;
            if (disc.isEmpty()) {
                events = new EventBundle[0];
            } else {
                Element discEl = disc.toXml(DomUtil.createDocument());
                ElementIterator it = DomUtil.getChildren(discEl,
                        ObservationConstants.XML_EVENTBUNDLE,
                        ObservationConstants.NAMESPACE);
                List<EventBundle> bundles = new ArrayList<EventBundle>();
                while (it.hasNext()) {
View Full Code Here

Examples of org.apache.jackrabbit.webdav.property.DavProperty.toXml()

            }

            DavPropertySet ps = responses[0].getProperties(DavServletResponse.SC_OK);
            if (ps.contains(DavPropertyName.LOCKDISCOVERY)) {
                DavProperty p = ps.get(DavPropertyName.LOCKDISCOVERY);
                LockDiscovery ld = LockDiscovery.createFromXml(p.toXml(domFactory));
                NodeId parentId = getParentId(ps, sessionInfo);
                return retrieveLockInfo(ld, sessionInfo, nodeId, parentId);
            else {
                // no lock present
                log.debug("No Lock present on node with id " + saveGetIdString(nodeId, sessionInfo));
View Full Code Here

Examples of org.apache.jackrabbit.webdav.property.DavPropertyName.toXml()

                    DavPropertyName removeName = (DavPropertyName) entry;
                    if (propElement == null || isSet) {
                        isSet = false;
                        propElement = getPropElement(propUpdateElement, isSet);
                    }
                    propElement.appendChild(removeName.toXml(document));
                    propertyNames.add(removeName);
                } else if (entry instanceof DavProperty) {
                    // DAV:set
                    DavProperty<?> setProperty = (DavProperty<?>) entry;
                    if (propElement == null || !isSet) {
View Full Code Here

Examples of org.apache.jackrabbit.webdav.property.DavPropertyNameSet.toXml()

        public Element toXml(Document document) {
            Element psElem = DomUtil.createElement(document, XML_PRINCIPAL_SEARCH_PROPERTY, SecurityConstants.NAMESPACE);
            // create property set from the single property name
            DavPropertyNameSet pnSet = new DavPropertyNameSet();
            pnSet.add(propName);
            psElem.appendChild(pnSet.toXml(document));
            // append description if present
            if (description != null) {
                Element desc = DomUtil.addChildElement(psElem, XML_DESCRIPTION, SecurityConstants.NAMESPACE, description);
                if (language != null) {
                    DomUtil.setAttribute(desc, ATTR_LANG, Namespace.XML_NAMESPACE, language);
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.