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
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/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 in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20: /*
21: * $Id: ProcessingContext.java,v 1.2 2007/07/16 16:41:17 ofung Exp $
22: */
23:
24: /*
25: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
26: *
27: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
28: *
29: * The contents of this file are subject to the terms of either the GNU
30: * General Public License Version 2 only ("GPL") or the Common Development
31: * and Distribution License("CDDL") (collectively, the "License"). You
32: * may not use this file except in compliance with the License. You can obtain
33: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
34: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
35: * language governing permissions and limitations under the License.
36: *
37: * When distributing the software, include this License Header Notice in each
38: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
39: * Sun designates this particular file as subject to the "Classpath" exception
40: * as provided by Sun in the GPL Version 2 section of the License file that
41: * accompanied this code. If applicable, add the following below the License
42: * Header, with the fields enclosed by brackets [] replaced by your own
43: * identifying information: "Portions Copyrighted [year]
44: * [name of copyright owner]"
45: *
46: * Contributor(s):
47: *
48: * If you wish your version of this file to be governed by only the CDDL or
49: * only the GPL Version 2, indicate your decision by adding "[Contributor]
50: * elects to include this software in this distribution under the [CDDL or GPL
51: * Version 2] license." If you don't indicate a single choice of license, a
52: * recipient has the option to distribute your version of this file under
53: * either the CDDL, the GPL Version 2 or to extend the choice of license to
54: * its licensees as provided above. However, if you add GPL Version 2 code
55: * and therefore, elected the GPL Version 2 license, then the option applies
56: * only if the new code is made subject to such option by the copyright
57: * holder.
58: */
59:
60: package com.sun.xml.soap;
61:
62: import java.util.HashMap;
63: import java.util.Map;
64:
65: /**
66: * @author SAAJ RI Development Team
67: */
68: public class ProcessingContext {
69: protected Map properties = new HashMap();
70:
71: public ProcessingContext() {
72: setProperty(SOAPProcessorConstants.STATE_PROPERTY,
73: ProcessingStates.CONTINUE);
74: }
75:
76: public Object getProperty(String name) {
77: return properties.get(name);
78: }
79:
80: public void setProperty(String name, Object value) {
81: properties.put(name, value);
82: }
83:
84: public void removeProperty(String name) {
85: properties.remove(name);
86: }
87:
88: public boolean containsProperty(String name) {
89: return properties.containsKey(name);
90: }
91:
92: public java.util.Iterator getPropertyNames() {
93: return properties.keySet().iterator();
94: }
95:
96: }
|