com.sun.xml.wss.impl.c14n.SAXEXC14nCanonicalizerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* 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 {
}
}