01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the License). You may not use this file except in
05: * compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * Header Notice in each file and include the License file
14: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
15: * If applicable, add the following below the CDDL Header,
16: * with the fields enclosed by brackets [] replaced by
17: * you own identifying information:
18: * "Portions Copyrighted [year] [name of copyright owner]"
19: *
20: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
21: */
22:
23: /*
24: * SAXEXC14nCanonicalizerImpl.java
25: *
26: * Created on August 20, 2005, 5:01 PM
27: *
28: * To change this template, choose Tools | Options and locate the template under
29: * the Source Creation and Management node. Right-click the template and choose
30: * Open. You can then make changes to the template in the Source Editor.
31: */
32:
33: package com.sun.xml.wss.impl.c14n;
34:
35: import org.xml.sax.*;
36:
37: /**
38: *
39: * @author K.Venugopal@sun.com
40: */
41: public class SAXEXC14nCanonicalizerImpl implements ContentHandler {
42:
43: /** Creates a new instance of SAXEXC14nCanonicalizerImpl */
44: public SAXEXC14nCanonicalizerImpl() {
45: }
46:
47: public void setDocumentLocator(Locator locator) {
48: }
49:
50: public void startDocument() throws SAXException {
51: }
52:
53: public void endDocument() throws SAXException {
54: }
55:
56: public void startPrefixMapping(String prefix, String uri)
57: throws SAXException {
58: }
59:
60: public void endPrefixMapping(String prefix) throws SAXException {
61: }
62:
63: public void startElement(String uri, String localName,
64: String qName, Attributes atts) throws SAXException {
65: }
66:
67: public void endElement(String uri, String localName, String qName)
68: throws SAXException {
69: }
70:
71: public void characters(char[] ch, int start, int length)
72: throws SAXException {
73: }
74:
75: public void ignorableWhitespace(char[] ch, int start, int length)
76: throws SAXException {
77: }
78:
79: public void processingInstruction(String target, String data)
80: throws SAXException {
81: }
82:
83: public void skippedEntity(String name) throws SAXException {
84: }
85:
86: }
|