src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/WSDLProperties.java

changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 408
b0610cd08440
equal deleted inserted replaced
366:8c0b6bccfe47 368:0989ad8c0860
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
23 * questions. 23 * questions.
24 */ 24 */
25 25
26 package com.sun.xml.internal.ws.model.wsdl; 26 package com.sun.xml.internal.ws.model.wsdl;
27 27
28 import com.oracle.webservices.internal.api.message.BasePropertySet;
29 import com.oracle.webservices.internal.api.message.PropertySet;
28 import com.sun.istack.internal.Nullable; 30 import com.sun.istack.internal.Nullable;
29 import com.sun.xml.internal.ws.api.PropertySet;
30 import com.sun.xml.internal.ws.api.model.SEIModel; 31 import com.sun.xml.internal.ws.api.model.SEIModel;
31 import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort; 32 import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort;
32 33
33 import javax.xml.namespace.QName; 34 import javax.xml.namespace.QName;
34 import javax.xml.ws.handler.MessageContext; 35 import javax.xml.ws.handler.MessageContext;
36
35 37
36 import org.xml.sax.InputSource; 38 import org.xml.sax.InputSource;
37 39
38 /** 40 /**
39 * Properties exposed from {@link WSDLPort} for {@link MessageContext}. 41 * Properties exposed from {@link WSDLPort} for {@link MessageContext}.
40 * Donot add this satellite if {@link WSDLPort} is null. 42 * Donot add this satellite if {@link WSDLPort} is null.
41 * 43 *
42 * @author Jitendra Kotamraju 44 * @author Jitendra Kotamraju
43 */ 45 */
44 public abstract class WSDLProperties extends PropertySet { 46 public abstract class WSDLProperties extends BasePropertySet {
45 47
46 private static final PropertyMap model; 48 private static final PropertyMap model;
47 static { 49 static {
48 model = parse(WSDLProperties.class); 50 model = parse(WSDLProperties.class);
49 } 51 }

mercurial