src/share/jaxws_classes/com/sun/xml/internal/ws/api/PropertySet.java

Wed, 12 Jun 2013 14:47:09 +0100

author
mkos
date
Wed, 12 Jun 2013 14:47:09 +0100
changeset 384
8f2986ff0235
parent 368
0989ad8c0860
child 637
9c07ef4934dd
permissions
-rw-r--r--

8013021: Rebase 8005432 & 8003542 against the latest jdk8/jaxws
8003542: Improve processing of MTOM attachments
8005432: Update access to JAX-WS
Reviewed-by: mullan

ohair@286 1 /*
alanb@368 2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
ohair@286 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@286 4 *
ohair@286 5 * This code is free software; you can redistribute it and/or modify it
ohair@286 6 * under the terms of the GNU General Public License version 2 only, as
ohair@286 7 * published by the Free Software Foundation. Oracle designates this
ohair@286 8 * particular file as subject to the "Classpath" exception as provided
ohair@286 9 * by Oracle in the LICENSE file that accompanied this code.
ohair@286 10 *
ohair@286 11 * This code is distributed in the hope that it will be useful, but WITHOUT
ohair@286 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@286 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@286 14 * version 2 for more details (a copy is included in the LICENSE file that
ohair@286 15 * accompanied this code).
ohair@286 16 *
ohair@286 17 * You should have received a copy of the GNU General Public License version
ohair@286 18 * 2 along with this work; if not, write to the Free Software Foundation,
ohair@286 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@286 20 *
ohair@286 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@286 22 * or visit www.oracle.com if you need additional information or have any
ohair@286 23 * questions.
ohair@286 24 */
ohair@286 25
ohair@286 26 package com.sun.xml.internal.ws.api;
ohair@286 27
ohair@286 28 import java.util.Map;
alanb@368 29 import java.util.Set;
ohair@286 30 import java.util.Map.Entry;
ohair@286 31
ohair@286 32 /**
alanb@368 33 * Placeholder for backwards compatibility.
ohair@286 34 *
alanb@368 35 * @deprecated Use com.oracle.webservices.internal.api.message.PropertySet instead.
alanb@368 36 * @author snajper
ohair@286 37 */
alanb@368 38 public abstract class PropertySet extends com.oracle.webservices.internal.api.message.BasePropertySet {
ohair@286 39 /**
alanb@368 40 * Represents the list of strongly-typed known properties
ohair@286 41 * (keyed by property names.)
ohair@286 42 *
ohair@286 43 * <p>
ohair@286 44 * Just giving it an alias to make the use of this class more fool-proof.
alanb@368 45 * @deprecated
ohair@286 46 */
alanb@368 47 protected static class PropertyMap extends com.oracle.webservices.internal.api.message.BasePropertySet.PropertyMap {}
ohair@286 48
ohair@286 49 /**
alanb@368 50 * @deprecated
ohair@286 51 */
ohair@286 52 protected static PropertyMap parse(final Class clazz) {
alanb@368 53 com.oracle.webservices.internal.api.message.BasePropertySet.PropertyMap pm = com.oracle.webservices.internal.api.message.BasePropertySet.parse(clazz);
alanb@368 54 PropertyMap map = new PropertyMap();
alanb@368 55 map.putAll(pm);
alanb@368 56 return map;
ohair@286 57 }
ohair@286 58
ohair@286 59 /**
ohair@286 60 * Gets the name of the property.
ohair@286 61 *
ohair@286 62 * @param key
ohair@286 63 * This field is typed as {@link Object} to follow the {@link Map#get(Object)}
ohair@286 64 * convention, but if anything but {@link String} is passed, this method
ohair@286 65 * just returns null.
ohair@286 66 */
ohair@286 67 public Object get(Object key) {
ohair@286 68 Accessor sp = getPropertyMap().get(key);
ohair@286 69 if(sp!=null)
ohair@286 70 return sp.get(this);
ohair@286 71 throw new IllegalArgumentException("Undefined property "+key);
ohair@286 72 }
ohair@286 73
ohair@286 74 /**
ohair@286 75 * Sets a property.
ohair@286 76 *
ohair@286 77 * <h3>Implementation Note</h3>
ohair@286 78 * This method is slow. Code inside JAX-WS should define strongly-typed
ohair@286 79 * fields in this class and access them directly, instead of using this.
ohair@286 80 *
ohair@286 81 * @throws ReadOnlyPropertyException
ohair@286 82 * if the given key is an alias of a strongly-typed field,
ohair@286 83 * and if the name object given is not assignable to the field.
ohair@286 84 *
ohair@286 85 * @see Property
ohair@286 86 */
ohair@286 87 public Object put(String key, Object value) {
ohair@286 88 Accessor sp = getPropertyMap().get(key);
ohair@286 89 if(sp!=null) {
ohair@286 90 Object old = sp.get(this);
ohair@286 91 sp.set(this,value);
ohair@286 92 return old;
ohair@286 93 } else {
ohair@286 94 throw new IllegalArgumentException("Undefined property "+key);
ohair@286 95 }
ohair@286 96 }
ohair@286 97
ohair@286 98 public boolean supports(Object key) {
ohair@286 99 return getPropertyMap().containsKey(key);
ohair@286 100 }
ohair@286 101
ohair@286 102 public Object remove(Object key) {
ohair@286 103 Accessor sp = getPropertyMap().get(key);
ohair@286 104 if(sp!=null) {
ohair@286 105 Object old = sp.get(this);
ohair@286 106 sp.set(this,null);
ohair@286 107 return old;
ohair@286 108 } else {
ohair@286 109 throw new IllegalArgumentException("Undefined property "+key);
ohair@286 110 }
ohair@286 111 }
ohair@286 112
alanb@368 113 protected void createEntrySet(Set<Entry<String,Object>> core) {
ohair@286 114 for (final Entry<String, Accessor> e : getPropertyMap().entrySet()) {
ohair@286 115 core.add(new Entry<String, Object>() {
ohair@286 116 public String getKey() {
ohair@286 117 return e.getKey();
ohair@286 118 }
ohair@286 119
ohair@286 120 public Object getValue() {
ohair@286 121 return e.getValue().get(PropertySet.this);
ohair@286 122 }
ohair@286 123
ohair@286 124 public Object setValue(Object value) {
ohair@286 125 Accessor acc = e.getValue();
ohair@286 126 Object old = acc.get(PropertySet.this);
ohair@286 127 acc.set(PropertySet.this,value);
ohair@286 128 return old;
ohair@286 129 }
ohair@286 130 });
ohair@286 131 }
ohair@286 132 }
alanb@368 133
alanb@368 134 protected abstract PropertyMap getPropertyMap();
ohair@286 135 }

mercurial