KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > axis > transport > jms > MapUtils


1 /*
2  * The Apache Software License, Version 1.1
3  *
4  *
5  * Copyright (c) 2001, 2002 The Apache Software Foundation. All rights
6  * reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in
17  * the documentation and/or other materials provided with the
18  * distribution.
19  *
20  * 3. The end-user documentation included with the redistribution,
21  * if any, must include the following acknowledgment:
22  * "This product includes software developed by the
23  * Apache Software Foundation (http://www.apache.org/)."
24  * Alternately, this acknowledgment may appear in the software itself,
25  * if and wherever such third-party acknowledgments normally appear.
26  *
27  * 4. The names "Axis" and "Apache Software Foundation" must
28  * not be used to endorse or promote products derived from this
29  * software without prior written permission. For written
30  * permission, please contact apache@apache.org.
31  *
32  * 5. Products derived from this software may not be called "Apache",
33  * nor may "Apache" appear in their name, without prior written
34  * permission of the Apache Software Foundation.
35  *
36  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
37  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
38  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39  * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
42  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
43  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
44  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
45  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
46  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47  * SUCH DAMAGE.
48  * ====================================================================
49  *
50  * This software consists of voluntary contributions made by many
51  * individuals on behalf of the Apache Software Foundation. For more
52  * information on the Apache Software Foundation, please see
53  * <http://www.apache.org/>.
54  */

55
56 package org.jboss.axis.transport.jms;
57
58 import java.util.Map JavaDoc;
59
60 /**
61  * MapUtils provides convenience methods for accessing a java.util.Map
62  *
63  * @author Jaime Meritt (jmeritt@sonicsoftware.com)
64  * @author Richard Chung (rchung@sonicsoftware.com)
65  * @author Dave Chappell (chappell@sonicsoftware.com)
66  */

67 public class MapUtils
68 {
69    /**
70     * Returns an int property from a Map and removes it.
71     *
72     * @param properties
73     * @param key
74     * @param defaultValue
75     * @return
76     */

77    public static int removeIntProperty(Map JavaDoc properties, String JavaDoc key, int defaultValue)
78    {
79       int value = defaultValue;
80       if (properties != null && properties.containsKey(key))
81       {
82          try
83          {
84             value = ((Integer JavaDoc)properties.remove(key)).intValue();
85          }
86          catch (Exception JavaDoc ignore)
87          {
88          }
89       }
90       return value;
91    }
92
93    /**
94     * Returns a long property from a Map and removes it.
95     *
96     * @param properties
97     * @param key
98     * @param defaultValue
99     * @return
100     */

101    public static long removeLongProperty(Map JavaDoc properties, String JavaDoc key, long defaultValue)
102    {
103       long value = defaultValue;
104       if (properties != null && properties.containsKey(key))
105       {
106          try
107          {
108             value = ((Long JavaDoc)properties.remove(key)).longValue();
109          }
110          catch (Exception JavaDoc ignore)
111          {
112          }
113       }
114       return value;
115    }
116
117    /**
118     * Returns a String property from a Map and removes it.
119     *
120     * @param properties
121     * @param key
122     * @param defaultValue
123     * @return
124     */

125    public static String JavaDoc removeStringProperty(Map JavaDoc properties, String JavaDoc key, String JavaDoc defaultValue)
126    {
127       String JavaDoc value = defaultValue;
128       if (properties != null && properties.containsKey(key))
129       {
130          try
131          {
132             value = (String JavaDoc)properties.remove(key);
133          }
134          catch (Exception JavaDoc ignore)
135          {
136          }
137       }
138       return value;
139    }
140
141    /**
142     * Returns a boolean property from a Map and removes it.
143     *
144     * @param properties
145     * @param key
146     * @param defaultValue
147     * @return
148     */

149    public static boolean removeBooleanProperty(Map JavaDoc properties, String JavaDoc key, boolean defaultValue)
150    {
151       boolean value = defaultValue;
152       if (properties != null && properties.containsKey(key))
153       {
154          try
155          {
156             value = ((Boolean JavaDoc)properties.remove(key)).booleanValue();
157          }
158          catch (Exception JavaDoc ignore)
159          {
160          }
161       }
162       return value;
163    }
164
165    /**
166     * Returns an Object property from a Map and removes it.
167     *
168     * @param properties
169     * @param key
170     * @param defaultValue
171     * @return
172     */

173    public static Object JavaDoc removeObjectProperty(Map JavaDoc properties, String JavaDoc key, Object JavaDoc defaultValue)
174    {
175       Object JavaDoc value = defaultValue;
176       if (properties != null && properties.containsKey(key))
177       {
178          value = properties.remove(key);
179       }
180       return value;
181    }
182 }
183
Popular Tags