src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/WSDLParserExtensionContext.java

changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
equal deleted inserted replaced
405:cc682329886b 408:b0610cd08440
1 /* 1 /*
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2013, 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
24 */ 24 */
25 25
26 package com.sun.xml.internal.ws.api.wsdl.parser; 26 package com.sun.xml.internal.ws.api.wsdl.parser;
27 27
28 import com.sun.istack.internal.NotNull; 28 import com.sun.istack.internal.NotNull;
29 import com.sun.xml.internal.ws.api.model.wsdl.WSDLModel; 29 import com.sun.xml.internal.ws.api.model.wsdl.editable.EditableWSDLModel;
30 import com.sun.xml.internal.ws.api.server.Container; 30 import com.sun.xml.internal.ws.api.server.Container;
31 import com.sun.xml.internal.ws.api.policy.PolicyResolver; 31 import com.sun.xml.internal.ws.api.policy.PolicyResolver;
32 32
33 /** 33 /**
34 * Provides contextual information for {@link WSDLParserExtension}s. 34 * Provides contextual information for {@link WSDLParserExtension}s.
42 * its started on the server side. 42 * its started on the server side.
43 */ 43 */
44 boolean isClientSide(); 44 boolean isClientSide();
45 45
46 /** 46 /**
47 * Gives the {@link WSDLModel}. The WSDLModel may not be complete until 47 * Gives the {@link EditableWSDLModel}. The WSDLModel may not be complete until
48 * {@link WSDLParserExtension#finished(WSDLParserExtensionContext)} is called. 48 * {@link WSDLParserExtension#finished(WSDLParserExtensionContext)} is called.
49 */ 49 */
50 WSDLModel getWSDLModel(); 50 EditableWSDLModel getWSDLModel();
51 51
52 /** 52 /**
53 * Provides the {@link Container} in which this service or client is running. 53 * Provides the {@link Container} in which this service or client is running.
54 * May return null. 54 * May return null.
55 * 55 *

mercurial