8026801: Enhance endpoint addressing jdk8u5-b08

Thu, 06 Feb 2014 16:31:50 +0100

author
mkos
date
Thu, 06 Feb 2014 16:31:50 +0100
changeset 512
3ee93ab2a373
parent 511
8d64f675fccd
child 513
e85461b61b98

8026801: Enhance endpoint addressing
Summary: Caching data initialized via TCCL in static context; fix also reviewed by Iaroslav Savytskyi, Alexander Fomin
Reviewed-by: ahgross, mgrebac, skoivu

src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReference.java file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReference.java	Fri Feb 07 12:01:09 2014 -0800
     1.2 +++ b/src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReference.java	Thu Feb 06 16:31:50 2014 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2005, 2014, 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 @@ -69,7 +69,7 @@
    1.11  @XmlType(name="EndpointReferenceType",namespace=W3CEndpointReference.NS)
    1.12  public final class W3CEndpointReference extends EndpointReference {
    1.13  
    1.14 -    private final static JAXBContext w3cjc = getW3CJaxbContext();
    1.15 +    private final JAXBContext w3cjc = getW3CJaxbContext();
    1.16  
    1.17      // should be changed to package private, keeping original modifier to keep backwards compatibility
    1.18      protected static final String NS = "http://www.w3.org/2005/08/addressing";

mercurial