Java Code Examples for com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput#getOctetStream()
The following examples show how to use
com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput#getOctetStream() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DOMReference.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 2
Source File: DOMReference.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 3
Source File: DOMReference.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 4
Source File: DOMReference.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 5
Source File: DOMReference.java From hottub with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 6
Source File: DOMReference.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 7
Source File: DOMReference.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData<Node>() { public Iterator<Node> iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 8
Source File: DOMReference.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 9
Source File: DOMReference.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 10
Source File: DOMReference.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator<Node> iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 11
Source File: DOMReference.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private static Data copyDerefData(Data dereferencedData) { if (dereferencedData instanceof ApacheData) { // need to make a copy of the Data ApacheData ad = (ApacheData)dereferencedData; XMLSignatureInput xsi = ad.getXMLSignatureInput(); if (xsi.isNodeSet()) { try { final Set<Node> s = xsi.getNodeSet(); return new NodeSetData() { public Iterator iterator() { return s.iterator(); } }; } catch (Exception e) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + e); return null; } } else if (xsi.isElement()) { return new DOMSubTreeData (xsi.getSubNode(), xsi.isExcludeComments()); } else if (xsi.isOctetStream() || xsi.isByteArray()) { try { return new OctetStreamData (xsi.getOctetStream(), xsi.getSourceURI(), xsi.getMIMEType()); } catch (IOException ioe) { // log a warning log.log(java.util.logging.Level.WARNING, "cannot cache dereferenced data: " + ioe); return null; } } } return dereferencedData; }
Example 12
Source File: ApacheOctetStreamData.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 13
Source File: ApacheOctetStreamData.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 14
Source File: ApacheOctetStreamData.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 15
Source File: ApacheOctetStreamData.java From hottub with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 16
Source File: ApacheOctetStreamData.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 17
Source File: ApacheOctetStreamData.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 18
Source File: ApacheOctetStreamData.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 19
Source File: ApacheOctetStreamData.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }
Example 20
Source File: ApacheOctetStreamData.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public ApacheOctetStreamData(XMLSignatureInput xi) throws CanonicalizationException, IOException { super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType()); this.xi = xi; }