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

com.sun.xml.wss.impl.c14n.SAXEXC14nCanonicalizerImpl Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/*
 * SAXEXC14nCanonicalizerImpl.java
 *
 * Created on August 20, 2005, 5:01 PM
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

package com.sun.xml.wss.impl.c14n;

import org.xml.sax.*;

/**
 *
 * @author [email protected]
 */
public class SAXEXC14nCanonicalizerImpl  implements ContentHandler{
    
    /** Creates a new instance of SAXEXC14nCanonicalizerImpl */
    public SAXEXC14nCanonicalizerImpl () {
    }
    
    public void setDocumentLocator (Locator locator) {
    }
    
    public void startDocument () throws SAXException {
    }
    
    public void endDocument () throws SAXException {
    }
    
    public void startPrefixMapping (String prefix, String uri) throws SAXException {
    }
    
    public void endPrefixMapping (String prefix) throws SAXException {
    }
    
    public void startElement (String uri, String localName, String qName, Attributes atts) throws SAXException {
    }
    
    public void endElement (String uri, String localName, String qName) throws SAXException {
    }
    
    public void characters (char[] ch, int start, int length) throws SAXException {
    }
    
    public void ignorableWhitespace (char[] ch, int start, int length) throws SAXException {
    }
    
    public void processingInstruction (String target, String data) throws SAXException {
    }
    
    public void skippedEntity (String name) throws SAXException {
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy