All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jcp.xml.dsig.internal.dom.ApacheOctetStreamData Maven / Gradle / Ivy

The newest version!
/*    */ package org.jcp.xml.dsig.internal.dom;
/*    */ 
/*    */ import com.sun.org.apache.xml.internal.security.c14n.CanonicalizationException;
/*    */ import com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput;
/*    */ import java.io.IOException;
/*    */ import javax.xml.crypto.OctetStreamData;
/*    */ 
/*    */ public class ApacheOctetStreamData extends OctetStreamData
/*    */   implements ApacheData
/*    */ {
/*    */   private XMLSignatureInput xi;
/*    */ 
/*    */   public ApacheOctetStreamData(XMLSignatureInput xi)
/*    */     throws CanonicalizationException, IOException
/*    */   {
/* 21 */     super(xi.getOctetStream(), xi.getSourceURI(), xi.getMIMEType());
/* 22 */     this.xi = xi;
/*    */   }
/*    */ 
/*    */   public XMLSignatureInput getXMLSignatureInput() {
/* 26 */     return this.xi;
/*    */   }
/*    */ }

/* Location:           E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
 * Qualified Name:     org.jcp.xml.dsig.internal.dom.ApacheOctetStreamData
 * JD-Core Version:    0.6.2
 */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy