[7u40] Request for approval for CR JDK-8025713 - Syncing indendation/comment/copyright year differences with upstream projects
Miroslav Kos
miroslav.kos at oracle.com
Tue Oct 8 08:05:54 PDT 2013
Thanks Sean, you'll find it attached.
Miran
On 10/8/13 4:53 PM, Seán Coffey wrote:
> I'm fine with pushing this change to jdk7u-dev for you Miran. Send me
> the committed changeset and I'll push it.
>
> regards,
> Sean.
>
> On 03/10/2013 22:24, Bradford Wetmore wrote:
>> If you want to see whitespace changes, there is webrev's -b option.
>>
>> Brad
>>
>>
>> On 10/3/2013 2:29 AM, Chris Hegarty wrote:
>>> On 10/03/2013 10:07 AM, Miroslav Kos wrote:
>>>> Hi,
>>>> see inline.
>>>>
>>>> On 10/2/13 5:55 PM, Seán Coffey wrote:
>>>>> Miran, Jeff,
>>>>>
>>>>> Looks like webrev doesn't show up the indentation changes. You'll see
>>>>> them in the patch link from webrev. This seems to be a review request
>>>>> and an approval request. 7u40 has shipped however. This can go into
>>>>> 7u-dev[7u60]. Consider it approved for jdk7u-dev but that's
>>>>> conditional on getting an OpenJDK reviewer to approve first.
>>>
>>> I took a look at the changes in the webrev, and they look benign to me.
>>> If they build and test, I am happy to be considered a reviewer for this
>>> change.
>>>
>>> -Chris.
>>>
>>>> What to do to get it? Any action from me necessary?
>>>>>
>>>>>
>>>>> Please add the '8-na' label to bug report.
>>>> label added
>>>>>
>>>>> regards,
>>>>> Sean.
>>>>>
>>>>> On 02/10/13 15:32, Jeff Dinkins wrote:
>>>>>> Hi Miroslaw:
>>>>>>
>>>>>> At least one of these comes up blank:
>>>>>>
>>>>>> http://cr.openjdk.java.net/%7Emkos/8025713/webrev-jaxws.00/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ModelBuilder.java.sdiff.html
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> Is that ok?
>>>>>>
>>>>>> And this one seems to be changing the copyright from 2013 to 2012 -
>>>>>> is that right?
>>>> Yes, I believe it should be ok - the change in upstream project was
>>>> done
>>>> sooner, then the actual jdk release has been done, so the copyright
>>>> years are different; 2012 should be ok.
>>>>
>>>>
>>>> Regards
>>>> Miran
>>>>
>>>>
>>>>>>
>>>>>> http://cr.openjdk.java.net/%7Emkos/8025713/webrev-jaxws.00/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/MemoryData.java.sdiff.html
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> -jeff
>>>>>>
>>>>>> On Oct 2, 2013, at 5:56 AM, Miroslav Kos <miroslav.kos at oracle.com>
>>>>>> wrote:
>>>>>>
>>>>>>> Bug: https://bugs.openjdk.java.net/browse/JDK-8025713
>>>>>>>
>>>>>>> Description: There are some changes in upstream projects and one of
>>>>>>> them are differences not changing semantics, but always
>>>>>>> appearing in
>>>>>>> diff after preparing source bundle for jdk. Fixing this will help
>>>>>>> for next integrations and will avoid risk to overlook some
>>>>>>> important
>>>>>>> change in code.
>>>>>>> Review for this should be fast and easy, no actual code change.
>>>>>>>
>>>>>>> Changeset to be reviewed:
>>>>>>> http://cr.openjdk.java.net/~mkos/8025713/webrev-jaxws.00/
>>>>>>> <http://cr.openjdk.java.net/%7Emkos/8025713/webrev-jaxws.00/>
>>>>>>>
>>>>>>> JDK8 changeset: not applicable, different code basis
>>>>>>>
>>>>>>>
>>>>>
>>>>
>
-------------- next part --------------
# HG changeset patch
# User mkos
# Date 1381240856 -7200
# Tue Oct 08 16:00:56 2013 +0200
# Node ID a5e139dd0a74731b4f73c382180bf54d6c51040a
# Parent 4ee34d2cf2d84d0e1f5f20381ade525665ae424c
8025713: Syncing indendation/comment/copyright year differences with upstream projects
Reviewed-by: coffees, chegar
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/BoundedRangeStatisticImpl.java
--- a/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/BoundedRangeStatisticImpl.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/BoundedRangeStatisticImpl.java Tue Oct 08 16:00:56 2013 +0200
@@ -26,6 +26,7 @@
package com.sun.org.glassfish.external.statistics.impl;
+
import com.sun.org.glassfish.external.statistics.BoundedRangeStatistic;
import java.util.Map;
import java.lang.reflect.*;
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/WebServiceVisitor.java
--- a/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/WebServiceVisitor.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/WebServiceVisitor.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -204,24 +204,24 @@
}
portName = ClassNameInfo.getName(
d.getSimpleName().replace(
- SIGC_INNERCLASS,
- SIGC_UNDERSCORE));;
- packageName = d.getPackage().getQualifiedName();
- portName = webService != null && webService.name() != null && webService.name().length() >0 ?
- webService.name() : portName;
- serviceName = ClassNameInfo.getName(d.getQualifiedName())+SERVICE;
- serviceName = webService != null && webService.serviceName() != null &&
- webService.serviceName().length() > 0 ?
- webService.serviceName() : serviceName;
- wsdlNamespace = seiContext.getNamespaceURI();
- typeNamespace = wsdlNamespace;
+ SIGC_INNERCLASS,
+ SIGC_UNDERSCORE));;
+ packageName = d.getPackage().getQualifiedName();
+ portName = webService != null && webService.name() != null && webService.name().length() >0 ?
+ webService.name() : portName;
+ serviceName = ClassNameInfo.getName(d.getQualifiedName())+SERVICE;
+ serviceName = webService != null && webService.serviceName() != null &&
+ webService.serviceName().length() > 0 ?
+ webService.serviceName() : serviceName;
+ wsdlNamespace = seiContext.getNamespaceURI();
+ typeNamespace = wsdlNamespace;
- SOAPBinding soapBinding = d.getAnnotation(SOAPBinding.class);
- if (soapBinding != null) {
- pushedSOAPBinding = pushSOAPBinding(soapBinding, d, d);
- } else if (d.equals(typeDecl)) {
- pushedSOAPBinding = pushSOAPBinding(new MySOAPBinding(), d, d);
- }
+ SOAPBinding soapBinding = d.getAnnotation(SOAPBinding.class);
+ if (soapBinding != null) {
+ pushedSOAPBinding = pushSOAPBinding(soapBinding, d, d);
+ } else if (d.equals(typeDecl)) {
+ pushedSOAPBinding = pushSOAPBinding(new MySOAPBinding(), d, d);
+ }
}
public static boolean sameStyle(SOAPBinding.Style style, SOAPStyle soapStyle) {
@@ -235,7 +235,7 @@
}
protected boolean pushSOAPBinding(SOAPBinding soapBinding, Declaration bindingDecl,
- TypeDeclaration classDecl) {
+ TypeDeclaration classDecl) {
boolean changed = false;
if (!sameStyle(soapBinding.style(), soapStyle)) {
changed = true;
@@ -293,7 +293,7 @@
// abstract protected boolean shouldProcessWebService(WebService webService, InterfaceDeclaration intf);
-// abstract protected boolean shouldProcessWebService(WebService webService, ClassDeclaration decl);
+ // abstract protected boolean shouldProcessWebService(WebService webService, ClassDeclaration decl);
protected boolean shouldProcessWebService(WebService webService, InterfaceDeclaration intf) {
hasWebMethods = false;
if (webService == null)
@@ -315,9 +315,9 @@
return false;
hasWebMethods = hasWebMethods(classDecl);
SOAPBinding soapBinding = classDecl.getAnnotation(SOAPBinding.class);
- if(soapBinding != null && soapBinding.style() == SOAPBinding.Style.RPC && soapBinding.parameterStyle() == SOAPBinding.ParameterStyle.BARE) {
- builder.onError(classDecl.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_SOAPBINDING_PARAMETERSTYLE(soapBinding, classDecl));
- return false;
+ if(soapBinding != null && soapBinding.style() == SOAPBinding.Style.RPC && soapBinding.parameterStyle() == SOAPBinding.ParameterStyle.BARE) {
+ builder.onError(classDecl.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_SOAPBINDING_PARAMETERSTYLE(soapBinding, classDecl));
+ return false;
}
return isLegalImplementation(webService, classDecl);
}
@@ -345,8 +345,8 @@
if (webMethod.exclude()) {
if (webMethod.operationName().length() > 0)
builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_WEBMETHOD_ELEMENT_WITH_EXCLUDE("operationName", d.getQualifiedName(), method.toString()));
- if (webMethod.action().length() > 0)
- builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_WEBMETHOD_ELEMENT_WITH_EXCLUDE("action", d.getQualifiedName(), method.toString()));
+ if (webMethod.action().length() > 0)
+ builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_WEBMETHOD_ELEMENT_WITH_EXCLUDE("action", d.getQualifiedName(), method.toString()));
} else {
return true;
}
@@ -382,7 +382,7 @@
}
private InterfaceDeclaration getEndpointInterfaceDecl(String endpointInterfaceName,
- ClassDeclaration d) {
+ ClassDeclaration d) {
InterfaceDeclaration intTypeDecl = null;
for (InterfaceType interfaceType : d.getSuperinterfaces()) {
if (endpointInterfaceName.equals(interfaceType.toString())) {
@@ -488,7 +488,7 @@
Collection<Modifier> modifiers = classDecl.getModifiers();
if (!modifiers.contains(Modifier.PUBLIC)){
builder.onError(classDecl.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_WEBSERVICE_CLASS_NOT_PUBLIC(classDecl.getQualifiedName()));
- return false;
+ return false;
}
if (modifiers.contains(Modifier.FINAL) && !isStateful) {
builder.onError(classDecl.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_WEBSERVICE_CLASS_IS_FINAL(classDecl.getQualifiedName()));
@@ -538,7 +538,7 @@
}
protected boolean classImplementsSEI(ClassDeclaration classDecl,
- InterfaceDeclaration intfDecl) {
+ InterfaceDeclaration intfDecl) {
for (InterfaceType interfaceType : classDecl.getSuperinterfaces()) {
if (interfaceType.getDeclaration().equals(intfDecl))
return true;
@@ -637,8 +637,8 @@
*/
if (!isLegalType(method.getReturnType())) {
builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_METHOD_RETURN_TYPE_CANNOT_IMPLEMENT_REMOTE(typeDecl.getQualifiedName(),
- method.getSimpleName(),
- method.getReturnType()));
+ method.getSimpleName(),
+ method.getReturnType()));
}
boolean isOneway = method.getAnnotation(Oneway.class) != null;
if (isOneway && !isValidOnewayMethod(method, typeDecl))
@@ -684,14 +684,14 @@
}
protected boolean isLegalParameter(ParameterDeclaration param,
- MethodDeclaration method,
- TypeDeclaration typeDecl,
- int paramIndex) {
+ MethodDeclaration method,
+ TypeDeclaration typeDecl,
+ int paramIndex) {
if (!isLegalType(param.getType())) {
builder.onError(param.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_METHOD_PARAMETER_TYPES_CANNOT_IMPLEMENT_REMOTE(typeDecl.getQualifiedName(),
- method.getSimpleName(),
- param.getSimpleName(),
- param.getType().toString()));
+ method.getSimpleName(),
+ param.getSimpleName(),
+ param.getType().toString()));
return false;
}
TypeMirror holderType;
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ModelBuilder.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ModelBuilder.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ModelBuilder.java Tue Oct 08 16:00:56 2013 +0200
@@ -160,8 +160,8 @@
res = Messages.INCOMPATIBLE_API_VERSION;
throw new LinkageError( res.format(
- Which.which(XmlSchema.class),
- Which.which(ModelBuilder.class)
+ Which.which(XmlSchema.class),
+ Which.which(ModelBuilder.class)
));
}
}
@@ -176,8 +176,8 @@
} catch (NoSuchMethodError e) {
// we seem to be getting 1.0 runtime
throw new LinkageError( Messages.RUNNING_WITH_1_0_RUNTIME.format(
- Which.which(WhiteSpaceProcessor.class),
- Which.which(ModelBuilder.class)
+ Which.which(WhiteSpaceProcessor.class),
+ Which.which(ModelBuilder.class)
));
}
}
@@ -302,7 +302,7 @@
if(nav.isArray(t)) { // no need for checking byte[], because above typeInfoset.getTypeInfo() would return non-null
ArrayInfoImpl<T,C,F,M> ai =
- createArrayInfo(upstream, t);
+ createArrayInfo(upstream, t);
addTypeName(ai);
typeInfoSet.add(ai);
return ai;
@@ -338,7 +338,7 @@
}
protected ElementInfoImpl<T,C,F,M> createElementInfo(
- RegistryInfoImpl<T,C,F,M> registryInfo, M m) throws IllegalAnnotationException {
+ RegistryInfoImpl<T,C,F,M> registryInfo, M m) throws IllegalAnnotationException {
return new ElementInfoImpl<T,C,F,M>(this,registryInfo,m);
}
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/MemoryData.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/MemoryData.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/MemoryData.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/TempFiles.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/TempFiles.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/TempFiles.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/client/WSServiceDelegate.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/client/WSServiceDelegate.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/client/WSServiceDelegate.java Tue Oct 08 16:00:56 2013 +0200
@@ -22,6 +22,7 @@
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
+
package com.sun.xml.internal.ws.client;
import com.sun.istack.internal.NotNull;
@@ -140,8 +141,8 @@
/**
* Information about SEI, keyed by their interface type.
*/
- // private final Map<Class,SEIPortInfo> seiContext = new HashMap<Class,SEIPortInfo>();
- private final Map<QName,SEIPortInfo> seiContext = new HashMap<QName,SEIPortInfo>();
+ // private final Map<Class,SEIPortInfo> seiContext = new HashMap<Class,SEIPortInfo>();
+ private final Map<QName,SEIPortInfo> seiContext = new HashMap<QName,SEIPortInfo>();
// This executor is used for all the async invocations for all proxies
// created from this service. But once the proxy is created, then changing
@@ -166,8 +167,8 @@
public WSServiceDelegate(URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass) {
this(
- wsdlDocumentLocation==null ? null : new StreamSource(wsdlDocumentLocation.toExternalForm()),
- serviceName,serviceClass);
+ wsdlDocumentLocation==null ? null : new StreamSource(wsdlDocumentLocation.toExternalForm()),
+ serviceName,serviceClass);
}
/**
@@ -204,10 +205,10 @@
if(wsdl == null){
if(serviceClass != Service.class){
WebServiceClient wsClient = AccessController.doPrivileged(new PrivilegedAction<WebServiceClient>() {
- public WebServiceClient run() {
- return serviceClass.getAnnotation(WebServiceClient.class);
- }
- });
+ public WebServiceClient run() {
+ return serviceClass.getAnnotation(WebServiceClient.class);
+ }
+ });
String wsdlLocation = wsClient.wsdlLocation();
wsdlLocation = JAXWSUtils.absolutize(JAXWSUtils.getFileOrURLName(wsdlLocation));
wsdl = new StreamSource(wsdlLocation);
@@ -221,8 +222,8 @@
service = model.getService(this.serviceName);
if (service == null)
throw new WebServiceException(
- ClientMessages.INVALID_SERVICE_NAME(this.serviceName,
- buildNameList(model.getServices().keySet())));
+ ClientMessages.INVALID_SERVICE_NAME(this.serviceName,
+ buildNameList(model.getServices().keySet())));
// fill in statically known ports
for (WSDLPortImpl port : service.getPorts())
ports.put(port.getName(), new PortInfo(this, port));
@@ -255,7 +256,7 @@
private WSDLModelImpl parseWSDL(URL wsdlDocumentLocation, Source wsdlSource) {
try {
return RuntimeWSDLParser.parse(wsdlDocumentLocation, wsdlSource, createDefaultCatalogResolver(),
- true, getContainer(), ServiceFinder.find(WSDLParserExtension.class).toArray());
+ true, getContainer(), ServiceFinder.find(WSDLParserExtension.class).toArray());
} catch (IOException e) {
throw new WebServiceException(e);
} catch (XMLStreamException e) {
@@ -345,7 +346,7 @@
//get the first port corresponding to the SEI
WSDLPortImpl port = wsdlService.getMatchingPort(portTypeName);
if (port == null)
- throw new WebServiceException(ClientMessages.UNDEFINED_PORT_TYPE(portTypeName));
+ throw new WebServiceException(ClientMessages.UNDEFINED_PORT_TYPE(portTypeName));
QName portName = port.getName();
return getPort(portName, portInterface,features);
}
@@ -431,8 +432,8 @@
binding.setMode(mode);
Dispatch<Object> dispatch = Stubs.createJAXBDispatch(
port, binding, jaxbContext, mode,wsepr);
- serviceInterceptor.postCreateDispatch((WSBindingProvider)dispatch);
- return dispatch;
+ serviceInterceptor.postCreateDispatch((WSBindingProvider)dispatch);
+ return dispatch;
}
@Override
@@ -583,7 +584,7 @@
if (wsdlService.get(portName)==null) {
throw new WebServiceException(
- ClientMessages.INVALID_PORT_NAME(portName,buildWsdlPortNames()));
+ ClientMessages.INVALID_PORT_NAME(portName,buildWsdlPortNames()));
}
BindingImpl binding = eif.createBinding(webServiceFeatures,portInterface);
@@ -681,7 +682,7 @@
return wsdlService;
}
- class DaemonThreadFactory implements ThreadFactory {
+ class DaemonThreadFactory implements ThreadFactory {
public Thread newThread(Runnable r) {
Thread daemonThread = new Thread(r);
daemonThread.setDaemon(Boolean.TRUE);
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/AssertionSet.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/AssertionSet.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/AssertionSet.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/AssertionValidationProcessor.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/AssertionValidationProcessor.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/AssertionValidationProcessor.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/ComplexAssertion.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/ComplexAssertion.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/ComplexAssertion.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/EffectiveAlternativeSelector.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/EffectiveAlternativeSelector.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/EffectiveAlternativeSelector.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/EffectivePolicyModifier.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/EffectivePolicyModifier.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/EffectivePolicyModifier.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/NestedPolicy.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/NestedPolicy.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/NestedPolicy.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/Policy.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/Policy.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/Policy.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyAssertion.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyAssertion.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyAssertion.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyConstants.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyConstants.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyConstants.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyException.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyException.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyException.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyIntersector.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyIntersector.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyIntersector.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMap.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMap.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMap.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapExtender.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapExtender.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapExtender.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapKey.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapKey.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapKey.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapKeyHandler.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapKeyHandler.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapKeyHandler.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapMutator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapMutator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMapMutator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMerger.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMerger.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyMerger.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyScope.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyScope.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicyScope.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicySubject.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicySubject.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/PolicySubject.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/SimpleAssertion.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/SimpleAssertion.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/SimpleAssertion.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/package-info.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/package-info.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/package-info.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/PolicyLogger.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/PolicyLogger.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/PolicyLogger.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/RuntimePolicyUtilsException.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/RuntimePolicyUtilsException.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/RuntimePolicyUtilsException.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/ServiceConfigurationError.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/ServiceConfigurationError.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/ServiceConfigurationError.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/ServiceFinder.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/ServiceFinder.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/ServiceFinder.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/package-info.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/package-info.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/package-info.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/AssertionData.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/AssertionData.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/AssertionData.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/CompactModelGenerator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/CompactModelGenerator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/CompactModelGenerator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/DefaultPolicyAssertionCreator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/DefaultPolicyAssertionCreator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/DefaultPolicyAssertionCreator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/ModelNode.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/ModelNode.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/ModelNode.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/NormalizedModelGenerator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/NormalizedModelGenerator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/NormalizedModelGenerator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelGenerator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelGenerator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelGenerator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelMarshaller.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelMarshaller.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelMarshaller.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelTranslator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelTranslator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelTranslator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelUnmarshaller.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelUnmarshaller.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyModelUnmarshaller.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyReferenceData.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyReferenceData.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicyReferenceData.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModel.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModel.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModel.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModelContext.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModelContext.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModelContext.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/XmlPolicyModelMarshaller.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/XmlPolicyModelMarshaller.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/XmlPolicyModelMarshaller.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/XmlPolicyModelUnmarshaller.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/XmlPolicyModelUnmarshaller.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/XmlPolicyModelUnmarshaller.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/ExternalAttachmentsUnmarshaller.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/ExternalAttachmentsUnmarshaller.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/ExternalAttachmentsUnmarshaller.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/package-info.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/package-info.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/package-info.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/package-info.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/package-info.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/package-info.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/NamespaceVersion.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/NamespaceVersion.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/NamespaceVersion.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/XmlToken.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/XmlToken.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/XmlToken.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/AbstractQNameValidator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/AbstractQNameValidator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/AbstractQNameValidator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/AssertionCreationException.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/AssertionCreationException.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/AssertionCreationException.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PolicyAssertionCreator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PolicyAssertionCreator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PolicyAssertionCreator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PolicyAssertionValidator.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PolicyAssertionValidator.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PolicyAssertionValidator.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PrefixMapper.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PrefixMapper.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/PrefixMapper.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/package-info.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/package-info.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/package-info.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/PolicyMapKeyConverter.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/PolicyMapKeyConverter.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/PolicyMapKeyConverter.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/WsdlBindingSubject.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/WsdlBindingSubject.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/WsdlBindingSubject.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/package-info.java
--- a/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/package-info.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/package-info.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/AttachmentPart.java
--- a/src/share/jaxws_classes/javax/xml/soap/AttachmentPart.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/AttachmentPart.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/Detail.java
--- a/src/share/jaxws_classes/javax/xml/soap/Detail.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/Detail.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/DetailEntry.java
--- a/src/share/jaxws_classes/javax/xml/soap/DetailEntry.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/DetailEntry.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/FactoryFinder.java
--- a/src/share/jaxws_classes/javax/xml/soap/FactoryFinder.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/FactoryFinder.java Tue Oct 08 16:00:56 2013 +0200
@@ -40,11 +40,12 @@
*/
private static Object newInstance(String className,
ClassLoader classLoader)
- throws SOAPException
+ throws SOAPException
{
try {
Class spiClass = safeLoadClass(className, classLoader);
return spiClass.newInstance();
+
} catch (ClassNotFoundException x) {
throw new SOAPException("Provider " + className + " not found", x);
} catch (Exception x) {
@@ -66,7 +67,7 @@
* @exception SOAPException if there is a SOAP error
*/
static Object find(String factoryId)
- throws SOAPException
+ throws SOAPException
{
return find(factoryId, null, false);
}
@@ -92,7 +93,7 @@
* @exception SOAPException if there is a SOAP error
*/
static Object find(String factoryId, String fallbackClassName)
- throws SOAPException
+ throws SOAPException
{
return find(factoryId, fallbackClassName, true);
}
@@ -122,7 +123,7 @@
* @exception SOAPException if there is a SOAP error
*/
static Object find(String factoryId, String defaultClassName,
- boolean tryFallback) throws SOAPException {
+ boolean tryFallback) throws SOAPException {
ClassLoader classLoader;
try {
classLoader = Thread.currentThread().getContextClassLoader();
@@ -133,7 +134,7 @@
// Use the system property first
try {
String systemProp =
- System.getProperty( factoryId );
+ System.getProperty( factoryId );
if( systemProp!=null) {
return newInstance(systemProp, classLoader);
}
@@ -144,7 +145,7 @@
try {
String javah=System.getProperty( "java.home" );
String configFile = javah + File.separator +
- "lib" + File.separator + "jaxm.properties";
+ "lib" + File.separator + "jaxm.properties";
File f=new File( configFile );
if( f.exists()) {
Properties props=new Properties();
@@ -167,13 +168,13 @@
if( is!=null ) {
BufferedReader rd =
- new BufferedReader(new InputStreamReader(is, "UTF-8"));
+ new BufferedReader(new InputStreamReader(is, "UTF-8"));
String factoryClassName = rd.readLine();
rd.close();
if (factoryClassName != null &&
- ! "".equals(factoryClassName)) {
+ ! "".equals(factoryClassName)) {
return newInstance(factoryClassName, classLoader);
}
}
@@ -188,7 +189,7 @@
// (built in) factory if specified.
if (defaultClassName == null) {
throw new SOAPException(
- "Provider for " + factoryId + " cannot be found", null);
+ "Provider for " + factoryId + " cannot be found", null);
}
return newInstance(defaultClassName, classLoader);
}
@@ -200,7 +201,7 @@
* Class.forName() on it so it will be loaded by the bootstrap class loader.
*/
private static Class safeLoadClass(String className,
- ClassLoader classLoader)
+ ClassLoader classLoader)
throws ClassNotFoundException {
try {
// make sure that the current thread has an access to the package of the given name.
@@ -218,7 +219,7 @@
return classLoader.loadClass(className);
} catch (SecurityException se) {
// (only) default implementation can be loaded
- // using bootstrap class loader ...
+ // using bootstrap class loader:
if (isDefaultImplementation(className))
return Class.forName(className);
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/MessageFactory.java
--- a/src/share/jaxws_classes/javax/xml/soap/MessageFactory.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/MessageFactory.java Tue Oct 08 16:00:56 2013 +0200
@@ -96,8 +96,9 @@
* @see SAAJMetaFactory
*/
- public static MessageFactory newInstance()
- throws SOAPException {
+ public static MessageFactory newInstance() throws SOAPException {
+
+
try {
MessageFactory factory = (MessageFactory) FactoryFinder.find(
MESSAGE_FACTORY_PROPERTY,
@@ -107,8 +108,8 @@
if (factory != null) {
return factory;
}
+ return newInstance(SOAPConstants.SOAP_1_1_PROTOCOL);
- return newInstance(SOAPConstants.SOAP_1_1_PROTOCOL);
} catch (Exception ex) {
throw new SOAPException(
"Unable to create message factory for SOAP: "
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/MimeHeader.java
--- a/src/share/jaxws_classes/javax/xml/soap/MimeHeader.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/MimeHeader.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/MimeHeaders.java
--- a/src/share/jaxws_classes/javax/xml/soap/MimeHeaders.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/MimeHeaders.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/Name.java
--- a/src/share/jaxws_classes/javax/xml/soap/Name.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/Name.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/Node.java
--- a/src/share/jaxws_classes/javax/xml/soap/Node.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/Node.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SAAJResult.java
--- a/src/share/jaxws_classes/javax/xml/soap/SAAJResult.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SAAJResult.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPBody.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPBody.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPBody.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPBodyElement.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPBodyElement.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPBodyElement.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPConnection.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPConnection.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPConnection.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPConstants.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPConstants.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPConstants.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPElement.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPElement.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPElement.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPElementFactory.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPElementFactory.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPElementFactory.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPEnvelope.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPEnvelope.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPEnvelope.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPException.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPException.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPException.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPFactory.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPFactory.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPFactory.java Tue Oct 08 16:00:56 2013 +0200
@@ -261,7 +261,8 @@
throws SOAPException
{
try {
- SOAPFactory factory = (SOAPFactory) FactoryFinder.find(SOAP_FACTORY_PROPERTY, DEFAULT_SOAP_FACTORY, false);
+ SOAPFactory factory = (SOAPFactory) FactoryFinder.find(
+ SOAP_FACTORY_PROPERTY, DEFAULT_SOAP_FACTORY, false);
if (factory != null)
return factory;
return newInstance(SOAPConstants.SOAP_1_1_PROTOCOL);
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPFault.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPFault.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPFault.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPFaultElement.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPFaultElement.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPFaultElement.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPHeader.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPHeader.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPHeader.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPHeaderElement.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPHeaderElement.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPHeaderElement.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPMessage.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPMessage.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPMessage.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/SOAPPart.java
--- a/src/share/jaxws_classes/javax/xml/soap/SOAPPart.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/SOAPPart.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
diff -r 4ee34d2cf2d8 -r a5e139dd0a74 src/share/jaxws_classes/javax/xml/soap/Text.java
--- a/src/share/jaxws_classes/javax/xml/soap/Text.java Tue Sep 03 22:34:36 2013 -0700
+++ b/src/share/jaxws_classes/javax/xml/soap/Text.java Tue Oct 08 16:00:56 2013 +0200
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
More information about the jdk7u-dev
mailing list