01: /*
02: * XWSSCallback.java
03: *
04: * Created on November 14, 2005, 3:51 PM
05: *
06: */
07:
08: /*
09: * The contents of this file are subject to the terms
10: * of the Common Development and Distribution License
11: * (the License). You may not use this file except in
12: * compliance with the License.
13: *
14: * You can obtain a copy of the license at
15: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
16: * See the License for the specific language governing
17: * permissions and limitations under the License.
18: *
19: * When distributing Covered Code, include this CDDL
20: * Header Notice in each file and include the License file
21: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
22: * If applicable, add the following below the CDDL Header,
23: * with the fields enclosed by brackets [] replaced by
24: * you own identifying information:
25: * "Portions Copyrighted [year] [name of copyright owner]"
26: *
27: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
28: */
29: package com.sun.xml.wss.impl.callback;
30:
31: import java.util.HashMap;
32:
33: /**
34: *
35: * @author Abhijit Das
36: */
37: public abstract class XWSSCallback {
38:
39: HashMap runtimeProperties = null;
40:
41: public HashMap getRuntimeProperties() {
42: if (runtimeProperties == null)
43: runtimeProperties = new HashMap();
44: return runtimeProperties;
45: }
46:
47: }
|