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

changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
     1.1 --- a/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/AbstractExtensibleImpl.java	Thu Sep 26 10:43:28 2013 -0700
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/AbstractExtensibleImpl.java	Fri Oct 04 16:21:34 2013 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -29,11 +29,9 @@
    1.11  import com.sun.xml.internal.ws.api.model.wsdl.WSDLExtension;
    1.12  import com.sun.xml.internal.ws.api.model.wsdl.WSDLObject;
    1.13  import com.sun.xml.internal.ws.resources.UtilMessages;
    1.14 -import com.sun.xml.internal.ws.wsdl.parser.WSDLConstants;
    1.15  import com.sun.istack.internal.NotNull;
    1.16  
    1.17  import javax.xml.stream.XMLStreamReader;
    1.18 -import javax.xml.stream.Location;
    1.19  import javax.xml.namespace.QName;
    1.20  import javax.xml.ws.WebServiceException;
    1.21  import java.util.ArrayList;
    1.22 @@ -42,7 +40,6 @@
    1.23  import java.util.Set;
    1.24  
    1.25  import org.xml.sax.Locator;
    1.26 -import org.xml.sax.helpers.LocatorImpl;
    1.27  
    1.28  /**
    1.29   * All the WSDL 1.1 elements that are extensible should subclass from this abstract implementation of
    1.30 @@ -95,6 +92,10 @@
    1.31          extensions.add(ex);
    1.32      }
    1.33  
    1.34 +    public List<? extends UnknownWSDLExtension> getNotUnderstoodExtensions() {
    1.35 +        return notUnderstoodExtensions;
    1.36 +    }
    1.37 +
    1.38      /**
    1.39       * This can be used if a WSDL extension element that has wsdl:required=true
    1.40       * is not understood

mercurial