From f63a84d0842f1a0319bf908952634da19b38aa30 Mon Sep 17 00:00:00 2001 From: Steve Davidson Date: Wed, 29 Jul 2020 16:03:04 -0500 Subject: [PATCH 1/4] XStream modules are using to be deleted Java APIs - Java9 version #211 https://github.com/x-stream/xstream/issues/211 Updates from CodeUpdater https://j2eeguys.com/updater/ Signed-off-by: Steve Davidson --- .../xstream/tools/benchmark/model/Five.java | 2 +- .../tools/benchmark/model/FiveBean.java | 2 +- .../benchmark/model/SerializableFive.java | 2 +- .../tools/benchmark/targets/BasicTarget.java | 12 +++++------ .../benchmark/targets/ExtendedTarget.java | 2 +- .../converters/basic/CharConverter.java | 2 +- .../reflection/CGLIBEnhancedConverter.java | 20 +++++++++---------- .../reflection/ExternalizableConverter.java | 2 +- .../PureJavaReflectionProvider.java | 2 +- .../com/thoughtworks/xstream/core/JVM.java | 14 ++++++------- .../xstream/core/util/Primitives.java | 4 ++-- .../xstream/io/path/PathTracker.java | 4 ++-- .../xstream/persistence/XmlArrayList.java | 2 +- 13 files changed, 35 insertions(+), 35 deletions(-) diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/Five.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/Five.java index 9ecbfdd67..286b26841 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/Five.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/Five.java @@ -39,6 +39,6 @@ public boolean equals(Object obj) { } public int hashCode() { - return super.hashCode() + two + new Boolean(three).hashCode() + five.toString().hashCode(); + return super.hashCode() + two + Boolean.valueOf(three).hashCode() + five.toString().hashCode(); } } \ No newline at end of file diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/FiveBean.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/FiveBean.java index a219f39c7..dd53009d0 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/FiveBean.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/FiveBean.java @@ -63,6 +63,6 @@ public boolean equals(Object obj) { } public int hashCode() { - return super.hashCode() + two + new Boolean(three).hashCode() + five.toString().hashCode(); + return super.hashCode() + two + Boolean.valueOf(three).hashCode() + five.toString().hashCode(); } } \ No newline at end of file diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/SerializableFive.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/SerializableFive.java index cefc10d0b..fc1c03c85 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/SerializableFive.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/model/SerializableFive.java @@ -52,6 +52,6 @@ public boolean equals(Object obj) { } public int hashCode() { - return super.hashCode() + two + new Boolean(three).hashCode() + five.toString().hashCode(); + return super.hashCode() + two + Boolean.valueOf(three).hashCode() + five.toString().hashCode(); } } \ No newline at end of file diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java index 582f717a8..a4abb5b55 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java @@ -31,14 +31,14 @@ public class BasicTarget implements Target { public BasicTarget() { list = new ArrayList(); - list.add(new Integer(1)); - list.add(new Byte((byte)2)); - list.add(new Short((short)3)); - list.add(new Long(4)); + list.add(Integer.valueOf(1)); + list.add(Byte.valueOf((byte)2)); + list.add(Short.valueOf((short)3)); + list.add(Long.valueOf(4)); list.add("Profile"); list.add(Boolean.TRUE); - list.add(new Float(1.2f)); - list.add(new Double(1.2f)); + list.add(Float.valueOf(1.2f)); + list.add(Double.valueOf(1.2f)); list.add(new File("profile.txt")); list.add(Locale.ENGLISH); } diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java index cc0e78a94..f493f4d4a 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java @@ -87,7 +87,7 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl if (method.equals(EQUALS)) { return new Boolean(args[0] instanceof Runnable); } else if (method.getName().equals("hashCode")) { - return new Integer(System.identityHashCode(proxy)); + return Integer.valueOf(System.identityHashCode(proxy)); } else if (method.getName().equals("toString")) { return "Proxy" + System.identityHashCode(proxy); } else if (method.getName().equals("getClass")) { diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/basic/CharConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/basic/CharConverter.java index 1e1583acd..1a606e5f7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/basic/CharConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/basic/CharConverter.java @@ -42,7 +42,7 @@ public void marshal(final Object source, final HierarchicalStreamWriter writer, public Object unmarshal(final HierarchicalStreamReader reader, final UnmarshallingContext context) { final String nullAttribute = reader.getAttribute("null"); if (nullAttribute != null && nullAttribute.equals("true")) { - return new Character('\0'); + return Character.valueOf('\0'); } else { return fromString(reader.getValue()); } diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java index 75701d2b8..025f448c3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java @@ -156,7 +156,7 @@ public void marshal(final Object source, final HierarchicalStreamWriter writer, } try { final Field field = type.getDeclaredField("serialVersionUID"); - if (!field.isAccessible()) { + if (!(java.lang.reflect.Modifier.isStatic(field.getModifiers()) ? field.canAccess(null) : field.canAccess(source))) { field.setAccessible(true); } final long serialVersionUID = field.getLong(null); @@ -186,7 +186,7 @@ private Callback[] getCallbacks(final Object source) { for (int i = 0; true; ++i) { try { final Field field = type.getDeclaredField(CALLBACK_MARKER + i); - if (!field.isAccessible()) { + if (!(java.lang.reflect.Modifier.isStatic(field.getModifiers()) ? field.canAccess(null) : field.canAccess(source))) { field.setAccessible(true); } fields.add(field); @@ -246,7 +246,7 @@ private Callback[] getCallbacks(final Object source) { } for (final Iterator iter = methods.iterator(); iter.hasNext();) { final Method method = iter.next(); - if (!method.isAccessible()) { + if (!(java.lang.reflect.Modifier.isStatic(method.getModifiers()) ? method.canAccess(null) : method.canAccess(source))) { method.setAccessible(true); } if (Factory.class.isAssignableFrom(method.getDeclaringClass()) @@ -301,19 +301,19 @@ private Object[] createNullArguments(final Class[] parameterTypes) { final Class type = parameterTypes[i]; if (type.isPrimitive()) { if (type == byte.class) { - arguments[i] = new Byte((byte)0); + arguments[i] = Byte.valueOf((byte)0); } else if (type == short.class) { - arguments[i] = new Short((short)0); + arguments[i] = Short.valueOf((short)0); } else if (type == int.class) { - arguments[i] = new Integer(0); + arguments[i] = Integer.valueOf(0); } else if (type == long.class) { - arguments[i] = new Long(0); + arguments[i] = Long.valueOf(0); } else if (type == float.class) { - arguments[i] = new Float(0); + arguments[i] = Float.valueOf(0); } else if (type == double.class) { - arguments[i] = new Double(0); + arguments[i] = Double.valueOf(0); } else if (type == char.class) { - arguments[i] = new Character('\0'); + arguments[i] = Character.valueOf('\0'); } else { arguments[i] = Boolean.FALSE; } diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java index ce5badd3b..e9a382d12 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java @@ -149,7 +149,7 @@ public Object unmarshal(final HierarchicalStreamReader reader, final Unmarshalli final Constructor defaultConstructor; try { defaultConstructor = type.getDeclaredConstructor(); - if (!defaultConstructor.isAccessible()) { + if (!defaultConstructor.canAccess(null)) { defaultConstructor.setAccessible(true); } final Externalizable externalizable = (Externalizable)defaultConstructor.newInstance(); diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java index 9709f1ab2..6b7a6cdcd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java @@ -65,7 +65,7 @@ public Object newInstance(final Class type) { try { for (final Constructor constructor : type.getDeclaredConstructors()) { if (constructor.getParameterTypes().length == 0) { - if (!constructor.isAccessible()) { + if (!constructor.canAccess(null)) { constructor.setAccessible(true); } return constructor.newInstance(new Object[0]); diff --git a/xstream/src/java/com/thoughtworks/xstream/core/JVM.java b/xstream/src/java/com/thoughtworks/xstream/core/JVM.java index 265e3469e..c424ff23b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/JVM.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/JVM.java @@ -119,13 +119,13 @@ static class Test { final Test t = (Test)provider.newInstance(Test.class); try { provider.writeField(t, "o", "object", Test.class); - provider.writeField(t, "c", new Character('c'), Test.class); - provider.writeField(t, "b", new Byte((byte)1), Test.class); - provider.writeField(t, "s", new Short((short)1), Test.class); - provider.writeField(t, "i", new Integer(1), Test.class); - provider.writeField(t, "l", new Long(1), Test.class); - provider.writeField(t, "f", new Float(1), Test.class); - provider.writeField(t, "d", new Double(1), Test.class); + provider.writeField(t, "c", Character.valueOf('c'), Test.class); + provider.writeField(t, "b", Byte.valueOf((byte)1), Test.class); + provider.writeField(t, "s", Short.valueOf((short)1), Test.class); + provider.writeField(t, "i", Integer.valueOf(1), Test.class); + provider.writeField(t, "l", Long.valueOf(1), Test.class); + provider.writeField(t, "f", Float.valueOf(1), Test.class); + provider.writeField(t, "d", Double.valueOf(1), Test.class); provider.writeField(t, "bool", Boolean.TRUE, Test.class); test = true; } catch (final IncompatibleClassChangeError e) { diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java index 951a54f65..305b5a671 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java @@ -32,8 +32,8 @@ public final class Primitives { {Integer.TYPE, Integer.class}, {Long.TYPE, Long.class}, {Float.TYPE, Float.class}, {Double.TYPE, Double.class}, {Boolean.TYPE, Boolean.class}, {Void.TYPE, Void.class},}; final Character[] representingChars = { - new Character('B'), new Character('C'), new Character('S'), new Character('I'), new Character('J'), - new Character('F'), new Character('D'), new Character('Z'), null}; + Character.valueOf('B'), Character.valueOf('C'), Character.valueOf('S'), Character.valueOf('I'), Character.valueOf('J'), + Character.valueOf('F'), Character.valueOf('D'), Character.valueOf('Z'), null}; for (int i = 0; i < boxing.length; i++) { final Class primitiveType = boxing[i][0]; final Class boxedType = boxing[i][1]; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java index 93a1f619a..3dda069c2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java @@ -85,9 +85,9 @@ public void pushElement(final String name) { indexMapStack[pointer] = indexMap; } if (indexMap.containsKey(name)) { - indexMap.put(name, new Integer(indexMap.get(name).intValue() + 1)); + indexMap.put(name, Integer.valueOf(indexMap.get(name).intValue() + 1)); } else { - indexMap.put(name, new Integer(1)); + indexMap.put(name, Integer.valueOf(1)); } pointer++; currentPath = null; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java index d29846733..2d78bf32e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java @@ -50,7 +50,7 @@ public void add(final int index, final V element) { for (int i = size; i > to; i--) { map.put(Integer.valueOf(i + 1), map.get(Integer.valueOf(i))); } - map.put(new Integer(index), element); + map.put(Integer.valueOf(index), element); } private void rangeCheck(final int index) { From 56236a0d94836ecac957eecf1d69cd39e4bf637b Mon Sep 17 00:00:00 2001 From: Honor Systems Updater Jenkins Date: Sun, 25 Oct 2020 20:10:05 -0500 Subject: [PATCH 2/4] Updating to JDK 11 https://github.com/x-stream/xstream/issues/211 Automatic updates https://jenkins.updater.j2eeguys.com/ Signed-off-by: Honor Systems Updater Jenkins --- README.md | 16 +++++++++- pom.xml | 18 ++++++++++++ settings-template.xml | 28 +++++++++++------- xstream-benchmark/pom.xml | 18 ++++++++++++ .../xstream/tools/benchmark/Harness.java | 21 +++++++++----- .../xstream/tools/benchmark/Metric.java | 21 +++++++++----- .../xstream/tools/benchmark/Product.java | 21 +++++++++----- .../xstream/tools/benchmark/Reporter.java | 21 +++++++++----- .../xstream/tools/benchmark/Target.java | 21 +++++++++----- .../metrics/CharacterCountMetric.java | 20 ++++++++----- .../metrics/DeserializationSpeedMetric.java | 21 +++++++++----- .../metrics/SerializationSpeedMetric.java | 21 +++++++++----- .../tools/benchmark/metrics/SizeMetric.java | 21 +++++++++----- .../tools/benchmark/model/A100Fields.java | 20 ++++++++----- .../tools/benchmark/model/A100Parents.java | 20 ++++++++----- .../benchmark/model/A50InnerClasses.java | 20 ++++++++----- .../model/A50StaticInnerClasses.java | 20 ++++++++----- .../xstream/tools/benchmark/model/Five.java | 22 +++++++++----- .../tools/benchmark/model/FiveBean.java | 22 +++++++++----- .../xstream/tools/benchmark/model/One.java | 22 +++++++++----- .../tools/benchmark/model/OneBean.java | 22 +++++++++----- .../benchmark/model/SerializableFive.java | 22 +++++++++----- .../benchmark/model/SerializableOne.java | 22 +++++++++----- .../xstream/tools/benchmark/package.html | 27 ++++++++++------- .../products/JavaObjectSerialization.java | 21 +++++++++----- .../benchmark/products/XStreamBEAStax.java | 20 ++++++++----- .../benchmark/products/XStreamBinary.java | 21 +++++++++----- .../benchmark/products/XStreamCompact.java | 21 +++++++++----- .../tools/benchmark/products/XStreamDom.java | 21 +++++++++----- .../benchmark/products/XStreamDom4J.java | 20 ++++++++----- .../benchmark/products/XStreamDriver.java | 18 ++++++++---- .../tools/benchmark/products/XStreamJDom.java | 20 ++++++++----- .../benchmark/products/XStreamKXml2.java | 20 ++++++++----- .../benchmark/products/XStreamKXml2DOM.java | 20 ++++++++----- .../benchmark/products/XStreamSjsxp.java | 20 ++++++++----- .../tools/benchmark/products/XStreamStax.java | 21 +++++++++----- .../benchmark/products/XStreamWoodstox.java | 20 ++++++++----- .../tools/benchmark/products/XStreamXom.java | 20 ++++++++----- .../tools/benchmark/products/XStreamXpp.java | 21 +++++++++----- .../tools/benchmark/products/XStreamXpp3.java | 20 ++++++++----- .../benchmark/products/XStreamXpp3DOM.java | 20 ++++++++----- .../benchmark/reporters/HtmlReporter.java | 21 +++++++++----- .../benchmark/reporters/MultiReporter.java | 20 ++++++++----- .../benchmark/reporters/TextReporter.java | 21 +++++++++----- .../tools/benchmark/targets/BasicTarget.java | 20 ++++++++----- .../benchmark/targets/ExtendedTarget.java | 20 ++++++++----- .../tools/benchmark/targets/JTreeTarget.java | 21 +++++++++----- .../benchmark/targets/JavaBeanTarget.java | 20 ++++++++----- .../tools/benchmark/targets/ListTarget.java | 21 +++++++++----- .../tools/benchmark/targets/Person.java | 21 +++++++++----- .../benchmark/targets/ReflectionTarget.java | 20 ++++++++----- .../benchmark/targets/SerializableTarget.java | 20 ++++++++----- .../tools/benchmark/targets/StringTarget.java | 21 +++++++++----- .../targets/UserDefinedClassTarget.java | 21 +++++++++----- xstream-distribution/pom.xml | 18 ++++++++++++ .../src/assembly/assembly-bin.xml | 29 ++++++++++++------- .../src/assembly/assembly-src.xml | 27 ++++++++++------- .../src/content/CVE-2013-7285.html | 28 +++++++++++------- .../src/content/CVE-2016-3674.html | 28 +++++++++++------- .../src/content/CVE-2017-7957.html | 26 +++++++++++------ .../src/content/alias-tutorial.html | 27 ++++++++++------- .../src/content/annotations-tutorial.html | 27 ++++++++++------- .../src/content/architecture.html | 29 ++++++++++++------- .../src/content/benchmarks.html | 28 +++++++++++------- xstream-distribution/src/content/changes.html | 27 ++++++++++------- .../src/content/converter-tutorial.html | 29 ++++++++++++------- .../src/content/converters.html | 29 ++++++++++++------- .../src/content/download.html | 27 ++++++++++------- xstream-distribution/src/content/faq.html | 27 ++++++++++------- xstream-distribution/src/content/graphs.html | 27 ++++++++++------- .../src/content/how-to-contribute.html | 27 ++++++++++------- xstream-distribution/src/content/index.html | 27 ++++++++++------- xstream-distribution/src/content/issues.html | 26 +++++++++++------ .../src/content/json-tutorial.html | 26 +++++++++++------ xstream-distribution/src/content/license.html | 27 ++++++++++------- .../src/content/mailing-lists.html | 27 ++++++++++------- .../src/content/manual-tweaking-output.html | 29 ++++++++++++------- xstream-distribution/src/content/news.html | 27 ++++++++++------- .../src/content/objectstream.html | 29 ++++++++++++------- .../src/content/persistence-tutorial.html | 27 ++++++++++------- .../src/content/references.html | 26 +++++++++++------ .../src/content/repository.html | 27 ++++++++++------- .../src/content/security.html | 26 +++++++++++------ xstream-distribution/src/content/team.html | 25 ++++++++++------ .../src/content/tutorial.html | 27 ++++++++++------- .../src/content/versioning.html | 29 ++++++++++++------- xstream-distribution/src/content/website.xml | 27 ++++++++++------- xstream-distribution/src/resources/style.css | 26 ++++++++++------- xstream-distribution/src/templates/skin.html | 27 ++++++++++------- xstream-distribution/src/xsite/xsite.xml | 29 ++++++++++++------- xstream-hibernate/pom.xml | 28 +++++++++++------- ...ibernatePersistentCollectionConverter.java | 18 ++++++++---- .../HibernatePersistentMapConverter.java | 18 ++++++++---- ...HibernatePersistentSortedMapConverter.java | 18 ++++++++---- ...HibernatePersistentSortedSetConverter.java | 18 ++++++++---- .../converter/HibernateProxyConverter.java | 18 ++++++++---- .../hibernate/mapper/HibernateMapper.java | 18 ++++++++---- .../xstream/hibernate/package.html | 28 +++++++++++------- .../xstream/hibernate/util/Hibernate.java | 16 ++++++++-- .../AbstractHibernateAcceptanceTest.java | 18 ++++++++---- ...rnateCollectionsTypeCompatibilityTest.java | 17 +++++++---- .../hibernate/HibernateReferenceTest.java | 17 +++++++---- .../hibernate/reference/BaseDomainObject.java | 19 +++++++----- .../hibernate/reference/Department.hbm.xml | 20 ++++++++++++- .../hibernate/reference/Department.java | 18 ++++++++---- .../hibernate/reference/Division.hbm.xml | 20 ++++++++++++- .../hibernate/reference/Division.java | 18 ++++++++---- .../hibernate/reference/Person.hbm.xml | 20 ++++++++++++- .../hibernate/reference/Person.java | 20 ++++++++----- .../hibernate/reference/Site.hbm.xml | 20 ++++++++++++- .../acceptance/hibernate/reference/Site.java | 18 ++++++++---- xstream-hibernate/src/test/hibernate.cfg.xml | 18 ++++++++++++ xstream-its/pom.xml | 18 ++++++++++++ .../src/test-resources/project.properties | 16 ++++++++++ .../test/com/thoughtworks/xstream/OSGiIT.java | 18 ++++++++---- xstream-jmh/pom.xml | 18 ++++++++++++ .../src/application/bin/xstream-jmh.sh | 19 ++++++++---- xstream-jmh/src/assembly-app.xml | 26 +++++++++++------ .../benchmark/jmh/Base64Benchmark.java | 18 ++++++++---- .../benchmark/jmh/ConverterTypeBenchmark.java | 18 ++++++++---- .../benchmark/jmh/NameCoderBenchmark.java | 18 ++++++++---- .../benchmark/jmh/ParserBenchmark.java | 18 ++++++++---- .../jmh/StringConverterBenchmark.java | 18 ++++++++---- xstream/pom.xml | 18 ++++++++++++ .../xstream/InitializationException.java | 20 ++++++++----- .../xstream/MarshallingStrategy.java | 21 +++++++++----- .../com/thoughtworks/xstream/XStream.java | 19 +++++++----- .../xstream/XStreamException.java | 18 ++++++++---- .../com/thoughtworks/xstream/XStreamer.java | 18 ++++++++---- .../xstream/annotations/XStreamAlias.java | 21 +++++++++----- .../xstream/annotations/XStreamAliasType.java | 16 ++++++++-- .../annotations/XStreamAsAttribute.java | 20 ++++++++----- .../xstream/annotations/XStreamConverter.java | 21 +++++++++----- .../annotations/XStreamConverters.java | 21 +++++++++----- .../xstream/annotations/XStreamImplicit.java | 20 ++++++++----- .../xstream/annotations/XStreamInclude.java | 20 ++++++++----- .../xstream/annotations/XStreamOmitField.java | 20 ++++++++----- .../converters/ConversionException.java | 19 +++++++----- .../xstream/converters/Converter.java | 21 +++++++++----- .../xstream/converters/ConverterLookup.java | 21 +++++++++----- .../xstream/converters/ConverterMatcher.java | 20 ++++++++----- .../xstream/converters/ConverterRegistry.java | 20 ++++++++----- .../xstream/converters/DataHolder.java | 21 +++++++++----- .../xstream/converters/ErrorReporter.java | 18 ++++++++---- .../xstream/converters/ErrorWriter.java | 21 +++++++++----- .../converters/ErrorWritingException.java | 19 +++++++----- .../converters/MarshallingContext.java | 21 +++++++++----- .../converters/SingleValueConverter.java | 22 +++++++++----- .../SingleValueConverterWrapper.java | 20 ++++++++----- .../converters/UnmarshallingContext.java | 21 +++++++++----- .../basic/AbstractSingleValueConverter.java | 20 ++++++++----- .../converters/basic/BigDecimalConverter.java | 21 +++++++++----- .../converters/basic/BigIntegerConverter.java | 21 +++++++++----- .../converters/basic/BooleanConverter.java | 21 +++++++++----- .../converters/basic/ByteConverter.java | 21 +++++++++----- .../converters/basic/CharConverter.java | 21 +++++++++----- .../converters/basic/DateConverter.java | 19 +++++++----- .../converters/basic/DoubleConverter.java | 21 +++++++++----- .../converters/basic/FloatConverter.java | 21 +++++++++----- .../converters/basic/IntConverter.java | 21 +++++++++----- .../converters/basic/LongConverter.java | 21 +++++++++----- .../converters/basic/NullConverter.java | 19 +++++++----- .../converters/basic/ShortConverter.java | 21 +++++++++----- .../basic/StringBufferConverter.java | 21 +++++++++----- .../basic/StringBuilderConverter.java | 20 ++++++++----- .../converters/basic/StringConverter.java | 21 +++++++++----- .../converters/basic/URIConverter.java | 20 ++++++++----- .../converters/basic/URLConverter.java | 21 +++++++++----- .../converters/basic/UUIDConverter.java | 20 ++++++++----- .../xstream/converters/basic/package.html | 29 ++++++++++++------- .../AbstractCollectionConverter.java | 19 +++++++----- .../collections/ArrayConverter.java | 21 +++++++++----- .../collections/BitSetConverter.java | 21 +++++++++----- .../collections/CharArrayConverter.java | 21 +++++++++----- .../collections/CollectionConverter.java | 21 +++++++++----- .../converters/collections/MapConverter.java | 19 +++++++----- .../collections/PropertiesConverter.java | 19 +++++++----- .../SingletonCollectionConverter.java | 18 ++++++++---- .../collections/SingletonMapConverter.java | 18 ++++++++---- .../collections/TreeMapConverter.java | 19 +++++++----- .../collections/TreeSetConverter.java | 19 +++++++----- .../converters/collections/package.html | 27 ++++++++++------- .../converters/enums/EnumConverter.java | 20 ++++++++----- .../converters/enums/EnumMapConverter.java | 18 +++++++----- .../converters/enums/EnumSetConverter.java | 18 +++++++----- .../enums/EnumSingleValueConverter.java | 18 ++++++++---- .../enums/EnumToStringConverter.java | 18 ++++++++---- .../ActivationDataFlavorConverter.java | 18 ++++++++---- .../converters/extended/CharsetConverter.java | 20 ++++++++----- .../converters/extended/ColorConverter.java | 19 +++++++----- .../extended/CurrencyConverter.java | 21 +++++++++----- .../extended/DurationConverter.java | 20 ++++++++----- .../extended/DynamicProxyConverter.java | 19 +++++++----- .../extended/EncodedByteArrayConverter.java | 19 +++++++----- .../converters/extended/FileConverter.java | 21 +++++++++----- .../converters/extended/FontConverter.java | 19 +++++++----- .../extended/GregorianCalendarConverter.java | 19 +++++++----- .../extended/ISO8601DateConverter.java | 21 +++++++++----- .../ISO8601GregorianCalendarConverter.java | 19 +++++++----- .../ISO8601SqlTimestampConverter.java | 21 +++++++++----- .../extended/JavaClassConverter.java | 21 +++++++++----- .../extended/JavaFieldConverter.java | 20 ++++++++----- .../extended/JavaMethodConverter.java | 21 +++++++++----- .../converters/extended/LocaleConverter.java | 21 +++++++++----- .../extended/LookAndFeelConverter.java | 20 ++++++++----- .../extended/NamedArrayConverter.java | 18 ++++++++---- .../extended/NamedCollectionConverter.java | 18 ++++++++---- .../extended/NamedMapConverter.java | 18 ++++++++---- .../converters/extended/PathConverter.java | 18 ++++++++---- .../PropertyEditorCapableConverter.java | 20 ++++++++----- .../extended/RegexPatternConverter.java | 21 +++++++++----- .../converters/extended/SqlDateConverter.java | 21 +++++++++----- .../converters/extended/SqlTimeConverter.java | 21 +++++++++----- .../extended/SqlTimestampConverter.java | 19 +++++++----- .../extended/StackTraceElementConverter.java | 19 +++++++----- .../extended/StackTraceElementFactory.java | 21 +++++++++----- .../converters/extended/SubjectConverter.java | 20 ++++++++----- .../extended/TextAttributeConverter.java | 20 ++++++++----- .../extended/ThrowableConverter.java | 19 +++++++----- .../extended/ToAttributedValueConverter.java | 19 +++++++----- .../extended/ToStringConverter.java | 18 ++++++++---- .../extended/UseAttributeForEnumMapper.java | 20 ++++++++----- .../xstream/converters/extended/package.html | 27 ++++++++++------- .../converters/javabean/BeanProperty.java | 21 +++++++++----- .../converters/javabean/BeanProvider.java | 19 +++++++----- .../javabean/ComparingPropertySorter.java | 20 ++++++++----- .../javabean/JavaBeanConverter.java | 19 +++++++----- .../converters/javabean/JavaBeanProvider.java | 20 ++++++++----- .../javabean/NativePropertySorter.java | 20 ++++++++----- .../javabean/PropertyDictionary.java | 19 +++++++----- .../converters/javabean/PropertySorter.java | 20 ++++++++----- ...edCharacterIteratorAttributeConverter.java | 18 ++++++++---- .../AbstractReflectionConverter.java | 19 +++++++----- .../reflection/CGLIBEnhancedConverter.java | 18 ++++++++---- .../reflection/ExternalizableConverter.java | 19 +++++++----- .../reflection/FieldDictionary.java | 19 +++++++----- .../converters/reflection/FieldKey.java | 20 ++++++++----- .../converters/reflection/FieldKeySorter.java | 20 ++++++++----- .../reflection/ImmutableFieldKeySorter.java | 20 ++++++++----- .../reflection/LambdaConverter.java | 16 ++++++++-- .../reflection/MissingFieldException.java | 18 ++++++++---- .../reflection/NativeFieldKeySorter.java | 20 ++++++++----- .../reflection/ObjectAccessException.java | 19 +++++++----- .../PureJavaReflectionProvider.java | 21 +++++++++----- .../reflection/ReflectionConverter.java | 21 +++++++++----- .../reflection/ReflectionProvider.java | 21 +++++++++----- .../reflection/ReflectionProviderWrapper.java | 20 ++++++++----- .../SelfStreamingInstanceChecker.java | 20 ++++++++----- .../reflection/SerializableConverter.java | 19 +++++++----- .../SerializationMethodInvoker.java | 19 +++++++----- .../reflection/SortableFieldKeySorter.java | 18 ++++++++---- .../reflection/Sun14ReflectionProvider.java | 21 +++++++++----- .../SunLimitedUnsafeReflectionProvider.java | 17 ++++++++--- .../SunUnsafeReflectionProvider.java | 19 +++++++----- .../reflection/XStream12FieldKeySorter.java | 20 ++++++++----- .../AbstractChronoLocalDateConverter.java | 18 ++++++++---- .../converters/time/ChronologyConverter.java | 18 ++++++++---- .../converters/time/DurationConverter.java | 18 ++++++++---- .../converters/time/HijrahDateConverter.java | 18 ++++++++---- .../converters/time/InstantConverter.java | 18 ++++++++---- .../time/JapaneseDateConverter.java | 18 ++++++++---- .../converters/time/JapaneseEraConverter.java | 18 ++++++++---- .../converters/time/LocalDateConverter.java | 18 ++++++++---- .../time/LocalDateTimeConverter.java | 18 ++++++++---- .../converters/time/LocalTimeConverter.java | 18 ++++++++---- .../converters/time/MinguoDateConverter.java | 18 ++++++++---- .../converters/time/MonthDayConverter.java | 18 ++++++++---- .../time/OffsetDateTimeConverter.java | 18 ++++++++---- .../converters/time/OffsetTimeConverter.java | 18 ++++++++---- .../converters/time/PeriodConverter.java | 18 ++++++++---- .../converters/time/SystemClockConverter.java | 18 ++++++++---- .../time/ThaiBuddhistDateConverter.java | 18 ++++++++---- .../converters/time/ValueRangeConverter.java | 18 ++++++++---- .../converters/time/WeekFieldsConverter.java | 18 ++++++++---- .../converters/time/YearConverter.java | 18 ++++++++---- .../converters/time/YearMonthConverter.java | 18 ++++++++---- .../converters/time/ZoneIdConverter.java | 18 ++++++++---- .../time/ZonedDateTimeConverter.java | 18 ++++++++---- .../xstream/converters/time/package.html | 26 +++++++++++------ .../core/AbstractReferenceMarshaller.java | 20 ++++++++----- .../core/AbstractReferenceUnmarshaller.java | 18 ++++++++---- .../core/AbstractTreeMarshallingStrategy.java | 20 ++++++++----- .../xstream/core/Base64Codec.java | 18 ++++++++---- .../thoughtworks/xstream/core/Caching.java | 20 ++++++++----- .../xstream/core/ClassLoaderReference.java | 20 ++++++++----- .../xstream/core/DefaultConverterLookup.java | 19 +++++++----- .../com/thoughtworks/xstream/core/JVM.java | 19 +++++++----- .../xstream/core/MapBackedDataHolder.java | 21 +++++++++----- .../xstream/core/ReferenceByIdMarshaller.java | 21 +++++++++----- .../ReferenceByIdMarshallingStrategy.java | 21 +++++++++----- .../core/ReferenceByIdUnmarshaller.java | 21 +++++++++----- .../core/ReferenceByXPathMarshaller.java | 21 +++++++++----- .../ReferenceByXPathMarshallingStrategy.java | 21 +++++++++----- .../core/ReferenceByXPathUnmarshaller.java | 21 +++++++++----- .../core/ReferencingMarshallingContext.java | 18 ++++++++---- .../xstream/core/SequenceGenerator.java | 21 +++++++++----- .../xstream/core/StringCodec.java | 20 ++++++++----- .../xstream/core/TreeMarshaller.java | 20 ++++++++----- .../xstream/core/TreeMarshallingStrategy.java | 21 +++++++++----- .../xstream/core/TreeUnmarshaller.java | 21 +++++++++----- .../xstream/core/util/ArrayIterator.java | 18 ++++++++---- .../xstream/core/util/Base64Encoder.java | 19 +++++++----- .../xstream/core/util/Base64JAXBCodec.java | 18 ++++++++---- .../core/util/Base64JavaUtilCodec.java | 18 ++++++++---- .../core/util/ClassLoaderReference.java | 21 +++++++++----- .../xstream/core/util/Cloneables.java | 18 ++++++++---- .../core/util/CompositeClassLoader.java | 19 +++++++----- .../core/util/CustomObjectInputStream.java | 19 +++++++----- .../core/util/CustomObjectOutputStream.java | 19 +++++++----- .../xstream/core/util/DefaultDriver.java | 18 ++++++++---- .../core/util/DependencyInjectionFactory.java | 18 ++++++++---- .../xstream/core/util/FastField.java | 20 ++++++++----- .../xstream/core/util/FastStack.java | 21 +++++++++----- .../xstream/core/util/Fields.java | 19 +++++++----- .../core/util/HierarchicalStreams.java | 20 ++++++++----- .../core/util/ISO8601JavaTimeConverter.java | 18 ++++++++---- .../core/util/ISO8601JodaTimeConverter.java | 19 +++++++----- .../xstream/core/util/ListWrappingQueue.java | 20 ++++++++----- .../xstream/core/util/ObjectIdDictionary.java | 19 +++++++----- .../xstream/core/util/OrderRetainingMap.java | 19 +++++++----- .../thoughtworks/xstream/core/util/Pool.java | 20 ++++++++----- .../xstream/core/util/PresortedMap.java | 16 ++++++++-- .../xstream/core/util/PresortedSet.java | 16 ++++++++-- .../xstream/core/util/Primitives.java | 20 ++++++++----- .../xstream/core/util/PrioritizedList.java | 21 +++++++++----- .../xstream/core/util/QuickWriter.java | 21 +++++++++----- .../util/SelfStreamingInstanceChecker.java | 21 +++++++++----- .../core/util/SerializationMembers.java | 19 +++++++----- .../core/util/ThreadSafePropertyEditor.java | 18 ++++++++---- .../core/util/ThreadSafeSimpleDateFormat.java | 21 +++++++++----- .../xstream/core/util/TypedNull.java | 20 ++++++++----- .../thoughtworks/xstream/core/util/Types.java | 16 ++++++++-- .../xstream/core/util/WeakCache.java | 20 ++++++++----- .../core/util/XmlHeaderAwareReader.java | 19 +++++++----- .../xstream/io/AbstractDriver.java | 20 ++++++++----- .../xstream/io/AbstractReader.java | 18 ++++++++---- .../xstream/io/AbstractWriter.java | 20 ++++++++----- .../xstream/io/AttributeNameIterator.java | 21 +++++++++----- .../io/ExtendedHierarchicalStreamReader.java | 18 ++++++++---- .../io/ExtendedHierarchicalStreamWriter.java | 21 +++++++++----- ...xtendedHierarchicalStreamWriterHelper.java | 21 +++++++++----- .../xstream/io/HierarchicalStreamDriver.java | 21 +++++++++----- .../xstream/io/HierarchicalStreamReader.java | 19 +++++++----- .../xstream/io/HierarchicalStreamWriter.java | 19 +++++++----- .../xstream/io/ReaderWrapper.java | 21 +++++++++----- .../xstream/io/StatefulWriter.java | 21 +++++++++----- .../xstream/io/StreamException.java | 21 +++++++++----- .../xstream/io/WriterWrapper.java | 21 +++++++++----- .../xstream/io/binary/BinaryStreamDriver.java | 18 ++++++++---- .../xstream/io/binary/BinaryStreamReader.java | 21 +++++++++----- .../xstream/io/binary/BinaryStreamWriter.java | 21 +++++++++----- .../xstream/io/binary/ReaderDepthState.java | 21 +++++++++----- .../thoughtworks/xstream/io/binary/Token.java | 21 +++++++++----- .../io/copy/HierarchicalStreamCopier.java | 21 +++++++++----- .../xstream/io/json/AbstractJsonWriter.java | 18 ++++++++---- .../io/json/JettisonMappedXmlDriver.java | 18 ++++++++---- .../xstream/io/json/JettisonStaxWriter.java | 18 ++++++++---- .../io/json/JsonHierarchicalStreamDriver.java | 21 +++++++++----- .../io/json/JsonHierarchicalStreamWriter.java | 21 +++++++++----- .../xstream/io/json/JsonWriter.java | 21 +++++++++----- .../xstream/io/naming/NameCoder.java | 18 ++++++++---- .../xstream/io/naming/NameCoderWrapper.java | 18 ++++++++---- .../xstream/io/naming/NoNameCoder.java | 18 ++++++++---- .../xstream/io/naming/StaticNameCoder.java | 18 ++++++++---- .../thoughtworks/xstream/io/path/Path.java | 21 +++++++++----- .../xstream/io/path/PathTracker.java | 21 +++++++++----- .../xstream/io/path/PathTrackingReader.java | 21 +++++++++----- .../xstream/io/path/PathTrackingWriter.java | 21 +++++++++----- .../thoughtworks/xstream/io/path/package.html | 27 ++++++++++------- .../io/xml/AbstractDocumentReader.java | 19 +++++++----- .../io/xml/AbstractDocumentWriter.java | 18 ++++++++---- .../xstream/io/xml/AbstractPullReader.java | 19 +++++++----- .../xstream/io/xml/AbstractXmlDriver.java | 21 +++++++++----- .../xstream/io/xml/AbstractXmlReader.java | 21 +++++++++----- .../xstream/io/xml/AbstractXmlWriter.java | 21 +++++++++----- .../xstream/io/xml/AbstractXppDomDriver.java | 20 ++++++++----- .../xstream/io/xml/AbstractXppDriver.java | 20 ++++++++----- .../xstream/io/xml/BEAStaxDriver.java | 18 ++++++++---- .../xstream/io/xml/CompactWriter.java | 21 +++++++++----- .../xstream/io/xml/DocumentReader.java | 20 ++++++++----- .../xstream/io/xml/DocumentWriter.java | 20 ++++++++----- .../xstream/io/xml/Dom4JDriver.java | 21 +++++++++----- .../xstream/io/xml/Dom4JReader.java | 21 +++++++++----- .../xstream/io/xml/Dom4JWriter.java | 21 +++++++++----- .../xstream/io/xml/Dom4JXmlWriter.java | 19 +++++++----- .../xstream/io/xml/DomDriver.java | 19 +++++++----- .../xstream/io/xml/DomReader.java | 21 +++++++++----- .../xstream/io/xml/DomWriter.java | 21 +++++++++----- .../xstream/io/xml/JDom2Driver.java | 20 ++++++++----- .../xstream/io/xml/JDom2Reader.java | 20 ++++++++----- .../xstream/io/xml/JDom2Writer.java | 20 ++++++++----- .../xstream/io/xml/JDomDriver.java | 21 +++++++++----- .../xstream/io/xml/JDomReader.java | 21 +++++++++----- .../xstream/io/xml/JDomWriter.java | 21 +++++++++----- .../xstream/io/xml/KXml2DomDriver.java | 20 ++++++++----- .../xstream/io/xml/KXml2Driver.java | 20 ++++++++----- .../xstream/io/xml/PrettyPrintWriter.java | 21 +++++++++----- .../thoughtworks/xstream/io/xml/QNameMap.java | 21 +++++++++----- .../xstream/io/xml/SaxWriter.java | 19 +++++++----- .../xstream/io/xml/SimpleStaxDriver.java | 18 ++++++++---- .../xstream/io/xml/SjsxpDriver.java | 20 ++++++++----- .../xstream/io/xml/StandardStaxDriver.java | 18 ++++++++---- .../xstream/io/xml/StaxDriver.java | 19 +++++++----- .../xstream/io/xml/StaxReader.java | 21 +++++++++----- .../xstream/io/xml/StaxWriter.java | 21 +++++++++----- .../xstream/io/xml/TraxSource.java | 19 +++++++----- .../xstream/io/xml/WstxDriver.java | 20 ++++++++----- .../xstream/io/xml/XStream11NameCoder.java | 18 ++++++++---- .../io/xml/XStream11XmlFriendlyReplacer.java | 21 +++++++++----- .../xstream/io/xml/XmlFriendlyNameCoder.java | 19 +++++++----- .../xstream/io/xml/XmlFriendlyReader.java | 20 ++++++++----- .../xstream/io/xml/XmlFriendlyReplacer.java | 21 +++++++++----- .../xstream/io/xml/XmlFriendlyWriter.java | 20 ++++++++----- .../xstream/io/xml/XomDriver.java | 19 +++++++----- .../xstream/io/xml/XomReader.java | 21 +++++++++----- .../xstream/io/xml/XomWriter.java | 21 +++++++++----- .../xstream/io/xml/Xpp3DomDriver.java | 20 ++++++++----- .../xstream/io/xml/Xpp3Driver.java | 20 ++++++++----- .../xstream/io/xml/XppDomDriver.java | 21 +++++++++----- .../xstream/io/xml/XppDomReader.java | 21 +++++++++----- .../xstream/io/xml/XppDomWriter.java | 21 +++++++++----- .../xstream/io/xml/XppDriver.java | 19 +++++++----- .../xstream/io/xml/XppReader.java | 21 +++++++++----- .../xstream/io/xml/xppdom/Xpp3Dom.java | 21 +++++++++----- .../xstream/io/xml/xppdom/Xpp3DomBuilder.java | 21 +++++++++----- .../xstream/io/xml/xppdom/XppDom.java | 20 ++++++++----- .../io/xml/xppdom/XppDomComparator.java | 20 ++++++++----- .../xstream/io/xml/xppdom/XppFactory.java | 20 ++++++++----- .../AbstractAttributeAliasingMapper.java | 18 ++++++++---- .../mapper/AbstractXmlFriendlyMapper.java | 21 +++++++++----- .../mapper/AnnotationConfiguration.java | 20 ++++++++----- .../xstream/mapper/AnnotationMapper.java | 18 ++++++++---- .../xstream/mapper/ArrayMapper.java | 21 +++++++++----- .../mapper/AttributeAliasingMapper.java | 21 +++++++++----- .../xstream/mapper/AttributeMapper.java | 21 +++++++++----- .../xstream/mapper/CGLIBMapper.java | 20 ++++++++----- .../xstream/mapper/CachingMapper.java | 19 +++++++----- .../mapper/CannotResolveClassException.java | 19 +++++++----- .../xstream/mapper/ClassAliasingMapper.java | 19 +++++++----- .../mapper/DefaultImplementationsMapper.java | 21 +++++++++----- .../xstream/mapper/DefaultMapper.java | 19 +++++++----- .../xstream/mapper/DynamicProxyMapper.java | 21 +++++++++----- .../xstream/mapper/ElementIgnoringMapper.java | 18 ++++++++---- .../xstream/mapper/EnumMapper.java | 19 +++++++----- .../xstream/mapper/FieldAliasingMapper.java | 19 +++++++----- .../xstream/mapper/ImmutableTypesMapper.java | 19 +++++++----- .../mapper/ImplicitCollectionMapper.java | 19 +++++++----- .../xstream/mapper/LambdaMapper.java | 16 ++++++++-- .../xstream/mapper/LocalConversionMapper.java | 20 ++++++++----- .../thoughtworks/xstream/mapper/Mapper.java | 19 +++++++----- .../xstream/mapper/MapperWrapper.java | 19 +++++++----- .../xstream/mapper/OuterClassMapper.java | 19 +++++++----- .../xstream/mapper/PackageAliasingMapper.java | 20 ++++++++----- .../xstream/mapper/SecurityMapper.java | 16 ++++++++-- .../mapper/SystemAttributeAliasingMapper.java | 18 ++++++++---- .../mapper/XStream11XmlFriendlyMapper.java | 21 +++++++++----- .../AbstractFilePersistenceStrategy.java | 18 ++++++++---- .../persistence/FilePersistenceStrategy.java | 18 ++++++++---- .../persistence/FileStreamStrategy.java | 21 +++++++++----- .../persistence/PersistenceStrategy.java | 20 ++++++++----- .../xstream/persistence/StreamStrategy.java | 21 +++++++++----- .../xstream/persistence/XmlArrayList.java | 21 +++++++++----- .../xstream/persistence/XmlMap.java | 21 +++++++++----- .../xstream/persistence/XmlSet.java | 21 +++++++++----- .../xstream/security/AnyTypePermission.java | 16 ++++++++-- .../xstream/security/ArrayTypePermission.java | 16 ++++++++-- .../security/CGLIBProxyTypePermission.java | 16 ++++++++-- .../security/ExplicitTypePermission.java | 16 ++++++++-- .../security/ForbiddenClassException.java | 16 ++++++++-- .../security/InterfaceTypePermission.java | 16 ++++++++-- .../xstream/security/NoPermission.java | 16 ++++++++-- .../xstream/security/NoTypePermission.java | 16 ++++++++-- .../xstream/security/NullPermission.java | 16 ++++++++-- .../security/PrimitiveTypePermission.java | 16 ++++++++-- .../xstream/security/ProxyTypePermission.java | 16 ++++++++-- .../security/RegExpTypePermission.java | 16 ++++++++-- .../security/TypeHierarchyPermission.java | 16 ++++++++-- .../xstream/security/TypePermission.java | 16 ++++++++-- .../security/WildcardTypePermission.java | 16 ++++++++-- xstream/src/test/$Package.java | 15 ++++++++-- .../AbsoluteSingleNodeXPathReferenceTest.java | 20 ++++++++----- .../AbsoluteXPathReferenceTest.java | 20 ++++++++----- .../acceptance/AbstractAcceptanceTest.java | 19 +++++++----- .../acceptance/AbstractReferenceTest.java | 21 ++++++++------ .../thoughtworks/acceptance/AliasTest.java | 19 +++++++----- .../thoughtworks/acceptance/ArraysTest.java | 21 +++++++++----- .../acceptance/AttributeTest.java | 19 +++++++----- .../acceptance/BasicTypesTest.java | 19 +++++++----- .../BeanIDCircularReferenceTest.java | 18 ++++++++---- .../acceptance/BooleanFieldsTest.java | 18 ++++++++---- .../acceptance/BufferedImagesTest.java | 18 ++++++++---- .../acceptance/CglibCompatibilityTest.java | 18 ++++++++---- .../acceptance/ClassLoaderTest.java | 19 +++++++----- .../acceptance/CollectionsTest.java | 19 +++++++----- .../acceptance/ConcreteClassesTest.java | 19 +++++++----- .../acceptance/ConcurrencyTest.java | 18 ++++++++---- .../acceptance/ConcurrentTypesTest.java | 18 ++++++++---- .../acceptance/CustomClassesTest.java | 19 +++++++----- .../acceptance/CustomConverterTest.java | 18 ++++++++---- .../acceptance/CustomFieldKeySorterTest.java | 18 ++++++++---- .../acceptance/CustomMapperTest.java | 19 +++++++----- .../acceptance/CustomSerializationTest.java | 19 +++++++----- .../acceptance/DataHolderTest.java | 19 +++++++----- .../acceptance/DefaultImplementationTest.java | 19 +++++++----- .../acceptance/DynamicProxyTest.java | 19 +++++++----- .../acceptance/EncodingTestSuite.java | 19 +++++++----- .../thoughtworks/acceptance/ErrorTest.java | 19 +++++++----- .../acceptance/ExtendedTypesTest.java | 19 +++++++----- .../acceptance/ExternalizableTest.java | 19 +++++++----- .../acceptance/FinalFieldsTest.java | 19 +++++++----- .../acceptance/IDReferenceTest.java | 21 ++++++++------ .../acceptance/ImplicitArrayTest.java | 18 ++++++++---- .../acceptance/ImplicitCollectionTest.java | 19 +++++++----- .../acceptance/ImplicitMapTest.java | 18 ++++++++---- .../thoughtworks/acceptance/ImplicitTest.java | 18 ++++++++---- .../acceptance/InheritanceTest.java | 19 +++++++----- .../acceptance/InnerClassesTest.java | 19 +++++++----- .../acceptance/JodaTimeTypesTest.java | 18 ++++++++---- .../thoughtworks/acceptance/LambdaTest.java | 18 ++++++++---- .../acceptance/LocalConverterTest.java | 18 ++++++++---- .../com/thoughtworks/acceptance/MapTest.java | 19 +++++++----- .../MultipleObjectsInOneStreamTest.java | 19 +++++++----- .../acceptance/NamedLocalElementsTest.java | 18 ++++++++---- .../acceptance/OmitFieldsTest.java | 19 +++++++----- .../acceptance/PersistenceTest.java | 18 ++++++++---- .../QNameMappedConcreteClassesTest.java | 19 +++++++----- .../acceptance/ReadResolveTest.java | 19 +++++++----- .../acceptance/ReflectionClassesTest.java | 19 +++++++----- .../RelativeSingleNodeXPathReferenceTest.java | 21 ++++++++------ .../RelativeXPathReferenceTest.java | 21 ++++++++------ .../acceptance/SecurityManagerTest.java | 18 ++++++++---- .../acceptance/SecurityVulnerabilityTest.java | 18 ++++++++---- .../SerializationCallbackOrderTest.java | 19 +++++++----- .../SerializationNestedWriteObjectsTest.java | 18 ++++++++---- .../acceptance/SortableFieldListTest.java | 18 ++++++++---- .../thoughtworks/acceptance/SwingTest.java | 19 +++++++----- .../acceptance/Time18TypesTest.java | 18 ++++++++---- .../acceptance/TreeMapAndTreeSetTest.java | 19 +++++++----- .../acceptance/WriteReplaceTest.java | 19 +++++++----- .../acceptance/XStream11XmlFriendlyTest.java | 19 +++++++----- .../XStream12CompatibilityTest.java | 18 ++++++++---- .../XStream13CompatibilityTest.java | 18 ++++++++---- .../com/thoughtworks/acceptance/XStreamer.xsl | 22 +++++++++----- .../acceptance/XStreamerTest.java | 19 +++++++----- .../acceptance/XmlFriendlyDollarOnlyTest.java | 18 ++++++++---- .../acceptance/XmlFriendlyTest.java | 19 +++++++----- .../acceptance/annotations/AliasTest.java | 18 ++++++++---- .../annotations/AnnotationsTest.java | 19 +++++++----- .../annotations/AttributesTest.java | 18 ++++++++---- .../annotations/FieldConverterTest.java | 19 +++++++----- .../annotations/ImplicitArrayTest.java | 20 ++++++++----- .../annotations/ImplicitCollectionTest.java | 18 ++++++++---- .../annotations/ImplicitMapTest.java | 18 ++++++++---- .../acceptance/annotations/OmitFieldTest.java | 20 ++++++++----- .../ParametrizedConverterTest.java | 18 ++++++++---- .../acceptance/objects/Category.java | 18 ++++++++---- .../acceptance/objects/Hardware.java | 19 +++++++----- .../objects/OpenSourceSoftware.java | 19 +++++++----- .../acceptance/objects/Original.java | 17 +++++++---- .../objects/OwnerOfExternalizable.java | 21 +++++++++----- .../acceptance/objects/Product.java | 18 ++++++++---- .../acceptance/objects/Replaced.java | 19 +++++++----- .../objects/SampleDynamicProxy.java | 19 +++++++----- .../acceptance/objects/SampleLists.java | 21 +++++++++----- .../acceptance/objects/SampleMaps.java | 18 ++++++++---- .../acceptance/objects/Software.java | 19 +++++++----- .../objects/SomethingExternalizable.java | 19 +++++++----- .../acceptance/objects/StandardObject.java | 19 +++++++----- .../acceptance/objects/StatusEnum.java | 19 +++++++----- .../someobjects/FunnyConstructor.java | 19 +++++++----- .../acceptance/someobjects/Handler.java | 21 +++++++++----- .../someobjects/HandlerManager.java | 21 +++++++++----- .../acceptance/someobjects/Protocol.java | 21 +++++++++----- .../acceptance/someobjects/U.java | 19 +++++++----- .../acceptance/someobjects/WithList.java | 19 +++++++----- .../acceptance/someobjects/WithNamedList.java | 18 ++++++++---- .../acceptance/someobjects/X.java | 21 +++++++++----- .../acceptance/someobjects/Y.java | 21 +++++++++----- .../acceptance/someobjects/Z.java | 21 +++++++++----- .../com/thoughtworks/xstream/XStreamTest.java | 19 +++++++----- .../converters/ConversionExceptionTest.java | 20 ++++++++----- .../converters/basic/DateConverterTest.java | 19 +++++++----- .../converters/basic/StringConverterTest.java | 17 +++++++---- .../converters/basic/URIConverterTest.java | 18 ++++++++---- .../converters/basic/URLConverterTest.java | 21 +++++++++----- .../collections/BitSetConverterTest.java | 21 +++++++++----- .../collections/ByteArrayConverterTest.java | 19 +++++++----- .../collections/CharArrayConverterTest.java | 21 +++++++++----- .../collections/PropertiesConverterTest.java | 19 +++++++----- .../xstream/converters/enums/BigEnum.java | 21 +++++++++----- .../converters/enums/EnumConverterTest.java | 19 +++++++----- .../enums/EnumCustomConverterTest.java | 18 ++++++++---- .../enums/EnumMapConverterTest.java | 19 +++++++----- .../converters/enums/EnumMapperTest.java | 18 ++++++++---- .../enums/EnumSetConverterTest.java | 19 +++++++----- .../enums/EnumToStringConverterTest.java | 18 ++++++++---- .../xstream/converters/enums/Fruit.java | 18 ++++++++---- .../converters/enums/PolymorphicEnum.java | 19 +++++++----- .../xstream/converters/enums/SimpleEnum.java | 21 +++++++++----- .../ActivationDataFlavorConverterTest.java | 18 ++++++++---- .../extended/CharsetConverterTest.java | 21 +++++++++----- .../extended/DurationConverterTest.java | 20 ++++++++----- .../EncodedByteArrayConverterTest.java | 19 +++++++----- .../extended/FontConverterTest.java | 19 +++++++----- .../GregorianCalendarConverterTest.java | 21 +++++++++----- .../extended/ISO8601DateConverterTest.java | 19 +++++++----- ...ISO8601GregorianCalendarConverterTest.java | 19 +++++++----- .../ISO8601SqlTimestampConverterTest.java | 19 +++++++----- .../extended/JavaClassConverterTest.java | 19 +++++++----- .../extended/JavaMethodConverterTest.java | 19 +++++++----- .../PropertyEditorCapableConverterTest.java | 18 ++++++++---- .../extended/RegexPatternConverterTest.java | 19 +++++++----- .../StackTraceElementConverter9Test.java | 18 ++++++++---- .../StackTraceElementConverterTest.java | 19 +++++++----- .../extended/ThrowableConverterTest.java | 19 +++++++----- .../ToAttributedValueConverterTest.java | 17 +++++++---- .../extended/ToStringConverterTest.java | 19 +++++++----- .../javabean/JavaBeanConverterTest.java | 19 +++++++----- .../javabean/PropertyDictionaryTest.java | 19 +++++++----- .../AbstractReflectionProviderTest.java | 19 +++++++----- .../reflection/FieldDictionaryTest.java | 19 +++++++----- .../reflection/NativeFieldKeySorterTest.java | 18 ++++++++---- .../PureJavaReflectionProviderTest.java | 19 +++++++----- .../reflection/ReflectionConverterTest.java | 19 +++++++----- .../reflection/SerializableConverterTest.java | 18 ++++++++---- .../SortableFieldKeySorterTest.java | 18 ++++++++---- ...unLimitedUnsafeReflectionProviderTest.java | 17 ++++++++--- .../SunUnsafeReflectionProviderTest.java | 19 +++++++----- .../xstream/core/Base64CodecTest.java | 18 ++++++++---- .../core/DefaultConverterLookupTest.java | 21 +++++++++----- .../thoughtworks/xstream/core/JVMTest.java | 21 +++++++++----- .../ReferenceByIDMarshallingStrategyTest.java | 18 ++++++++---- ...ferenceByXPathMarshallingStrategyTest.java | 19 +++++++----- .../xstream/core/TreeMarshallerTest.java | 19 +++++++----- .../xstream/core/TreeUnmarshallerTest.java | 19 +++++++----- .../xstream/core/util/Base64EncoderTest.java | 19 +++++++----- .../core/util/Base64JAXBCodecTest.java | 18 ++++++++---- .../xstream/core/util/CloneablesTest.java | 18 ++++++++---- .../util/DependencyInjectionFactoryTest.java | 18 ++++++++---- .../xstream/core/util/FastStackTest.java | 19 +++++++----- .../core/util/ObjectIdDictionaryTest.java | 19 +++++++----- .../core/util/OrderRetainingMapTest.java | 19 +++++++----- .../core/util/PrioritizedListTest.java | 19 +++++++----- .../xstream/core/util/QuickWriterTest.java | 18 ++++++++---- .../util/ThreadSafeSimpleDateFormatTest.java | 20 ++++++++----- .../xstream/core/util/WeakCacheTest.java | 18 ++++++++---- .../core/util/XmlHeaderAwareReaderTest.java | 18 ++++++++---- .../xstream/io/DriverEndToEndTestSuite.java | 19 +++++++----- .../xstream/io/StatefulWriterTest.java | 18 ++++++++---- .../xstream/io/binary/BinaryStreamTest.java | 19 +++++++----- .../xstream/io/binary/TokenTest.java | 19 +++++++----- .../io/copy/HierarchicalStreamCopierTest.java | 19 +++++++----- .../io/json/JettisonMappedXmlDriverTest.java | 18 ++++++++---- .../JsonHierarchicalStreamDriverTest.java | 19 +++++++----- .../xstream/io/json/JsonWriterFormatTest.java | 18 ++++++++---- .../json/JsonWriterModeDroppingRootTest.java | 18 ++++++++---- .../xstream/io/json/JsonWriterModeTest.java | 18 ++++++++---- .../io/naming/StaticNameCoderTest.java | 18 ++++++++---- .../xstream/io/path/PathTest.java | 19 +++++++----- .../xstream/io/path/PathTrackerTest.java | 19 +++++++----- .../io/path/PathTrackingReaderTest.java | 19 +++++++----- .../io/path/PathTrackingWriterTest.java | 19 +++++++----- .../io/xml/AbstractDocumentWriterTest.java | 18 ++++++++---- .../xstream/io/xml/AbstractReaderTest.java | 19 +++++++----- .../io/xml/AbstractStaxReaderTest.java | 18 ++++++++---- .../io/xml/AbstractStaxWriterTest.java | 18 ++++++++---- .../xstream/io/xml/AbstractXMLReaderTest.java | 19 +++++++----- .../xstream/io/xml/AbstractXMLWriterTest.java | 19 +++++++----- .../xstream/io/xml/BEAStaxReaderTest.java | 18 ++++++++---- .../xstream/io/xml/BEAStaxWriterTest.java | 18 ++++++++---- .../xstream/io/xml/CompactWriterTest.java | 19 +++++++----- .../xstream/io/xml/Dom4JReaderTest.java | 19 +++++++----- .../xstream/io/xml/Dom4JWriterTest.java | 19 +++++++----- .../xstream/io/xml/Dom4JXmlWriterTest.java | 19 +++++++----- .../xstream/io/xml/DomReaderTest.java | 19 +++++++----- .../xstream/io/xml/DomWriterTest.java | 19 +++++++----- .../xstream/io/xml/JDom2AcceptanceTest.java | 18 ++++++++---- .../xstream/io/xml/JDom2ReaderTest.java | 18 ++++++++---- .../xstream/io/xml/JDom2WriterTest.java | 18 ++++++++---- .../xstream/io/xml/JDomAcceptanceTest.java | 19 +++++++----- .../xstream/io/xml/JDomReaderTest.java | 19 +++++++----- .../xstream/io/xml/JDomWriterTest.java | 19 +++++++----- .../xstream/io/xml/KXml2ReaderTest.java | 18 ++++++++---- .../xstream/io/xml/PrettyPrintWriterTest.java | 19 +++++++----- .../xstream/io/xml/SaxWriterTest.java | 19 +++++++----- .../xstream/io/xml/SjsxpReaderTest.java | 18 ++++++++---- .../xstream/io/xml/SjsxpWriterTest.java | 18 ++++++++---- .../io/xml/StandardStaxReaderTest.java | 18 ++++++++---- .../xstream/io/xml/StaxDriverTest.java | 18 ++++++++---- .../xstream/io/xml/StaxReaderTest.java | 19 +++++++----- .../xstream/io/xml/WstxReaderTest.java | 18 ++++++++---- .../xstream/io/xml/WstxWriterTest.java | 18 ++++++++---- .../xstream/io/xml/XomReaderTest.java | 19 +++++++----- .../xstream/io/xml/XomWriterTest.java | 19 +++++++----- .../xstream/io/xml/Xpp3ReaderTest.java | 18 ++++++++---- .../xstream/io/xml/XppDomReaderTest.java | 19 +++++++----- .../xstream/io/xml/XppDomWriterTest.java | 18 ++++++++---- .../xstream/io/xml/XppReaderTest.java | 19 +++++++----- .../io/xml/xppdom/XppDomComparatorTest.java | 17 +++++++---- .../mapper/DefaultClassMapperTest.java | 19 +++++++----- .../mapper/FieldAliasingMapperTest.java | 21 +++++++++----- .../mapper/ImplicitCollectionMapperTest.java | 21 +++++++++----- .../xstream/mapper/SecurityMapperTest.java | 16 ++++++++-- .../FilePersistenceStrategyTest.java | 18 ++++++++---- .../persistence/FileStreamStrategyTest.java | 19 +++++++----- .../xstream/persistence/XmlArrayListTest.java | 19 +++++++----- .../xstream/persistence/XmlMapTest.java | 19 +++++++----- .../xstream/persistence/XmlSetTest.java | 19 +++++++----- .../xstream/testutil/CallLog.java | 21 +++++++++----- .../testutil/DynamicSecurityManager.java | 18 ++++++++---- .../xstream/testutil/TimeZoneChanger.java | 21 +++++++++----- 711 files changed, 9137 insertions(+), 4928 deletions(-) diff --git a/README.md b/README.md index aeb3044c6..11e04d051 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,18 @@ -master: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=master)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=master)](https://coveralls.io/github/x-stream/xstream?branch=master) +[//]: # " Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. " +[//]: # " " +[//]: # " This program and the accompanying materials are made available under the " +[//]: # " terms of the Eclipse Public License v. 2.0, which is available at " +[//]: # " http://www.eclipse.org/legal/epl-2.0. " +[//]: # " " +[//]: # " This Source Code may also be made available under the following Secondary " +[//]: # " Licenses when the conditions for such availability set forth in the " +[//]: # " Eclipse Public License v. 2.0 are satisfied: GNU General Public License, " +[//]: # " version 2 with the GNU Classpath Exception, which is available at " +[//]: # " https://www.gnu.org/software/classpath/license.html. " +[//]: # " " +[//]: # " SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 " + +master: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=master)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=master)](https://coveralls.io/github/x-stream/xstream?branch=master) v-1.4.x: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=v-1.4.x)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=v-1.4.x)](https://coveralls.io/github/x-stream/xstream?branch=v-1.4.x) - - - - diff --git a/pom.xml b/pom.xml index a33e6d17b..882ae4757 100644 --- a/pom.xml +++ b/pom.xml @@ -1,3 +1,21 @@ + + + + diff --git a/xstream-benchmark/pom.xml b/xstream-benchmark/pom.xml index f04edda9b..c33139432 100644 --- a/xstream-benchmark/pom.xml +++ b/xstream-benchmark/pom.xml @@ -1,3 +1,21 @@ + + + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + A simple harness for running benchmarks. See Harness diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java index 9e00f5d79..4f08223bf 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.tools.benchmark.Product; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java index bf3b5449a..9beeabea2 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.BEAStaxDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java index 9b96ed57b..a6b953ff2 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.tools.benchmark.Product; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java index 9b0f9f730..1777b282b 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.tools.benchmark.Product; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java index 6b196f9df..4d1a6bff6 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.DomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java index 791744227..18ea93b45 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.HierarchicalStreamWriter; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java index f8805eb9d..93bcc0986 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19.02.2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.XStream; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java index 8e278ec25..ffb986e27 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.JDomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java index 5d3cd1ffc..5b51c1551 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.KXml2Driver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java index adeaf653f..b96860cb9 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 05. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.KXml2DomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java index 1a54ebde7..8a297d33f 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.SjsxpDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java index b51f51197..d70c87089 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.StaxDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java index 32afaab11..067542cf0 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.WstxDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java index 661300d4c..0e6d81ddb 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.XomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java index 9150a395e..f57498d3b 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.XppDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java index fba75741a..8ea1d7b0f 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.Xpp3Driver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java index 676567e2e..86e3f1ae4 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 05. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.Xpp3DomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java index 55b102e4e..894693d68 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.reporters; import com.thoughtworks.xstream.tools.benchmark.Reporter; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java index b6fc23277..13f923eb6 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 14. September 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.reporters; import com.thoughtworks.xstream.tools.benchmark.Metric; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java index 5819fa23d..06cb81218 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.reporters; import com.thoughtworks.xstream.tools.benchmark.Metric; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java index a4abb5b55..4ca584d2b 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. January 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java index f493f4d4a..6da1e62c7 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. January 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java index c6611dd2d..5766d1363 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java index 39a870f26..732168e7e 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 05. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java index 217c806de..d8825bce0 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java index 4198adab6..f0b439851 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import java.util.Date; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java index dcb58f532..92faa55ae 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. January 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java index 24c2b2a8b..36e02b807 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. January 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java index b9e2386fd..8c359db51 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java index c318a3b53..9a44dd6b0 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. July 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-distribution/pom.xml b/xstream-distribution/pom.xml index 286591442..13c46daa8 100644 --- a/xstream-distribution/pom.xml +++ b/xstream-distribution/pom.xml @@ -1,3 +1,21 @@ + + + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + bin @@ -40,4 +47,4 @@ lib/xstream-hibernate - \ No newline at end of file + diff --git a/xstream-distribution/src/assembly/assembly-src.xml b/xstream-distribution/src/assembly/assembly-src.xml index b843d6f34..5e2c551bb 100644 --- a/xstream-distribution/src/assembly/assembly-src.xml +++ b/xstream-distribution/src/assembly/assembly-src.xml @@ -1,14 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + src diff --git a/xstream-distribution/src/content/CVE-2013-7285.html b/xstream-distribution/src/content/CVE-2013-7285.html index 22fa82233..ff96ca8e6 100644 --- a/xstream-distribution/src/content/CVE-2013-7285.html +++ b/xstream-distribution/src/content/CVE-2013-7285.html @@ -1,14 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + CVE-2013-7285 @@ -83,4 +91,4 @@

Credits

The vulnerability was discovered and reported by Pierre Francis Ernst of IBM Canada.

- \ No newline at end of file + diff --git a/xstream-distribution/src/content/CVE-2016-3674.html b/xstream-distribution/src/content/CVE-2016-3674.html index f29dccad0..e99822977 100644 --- a/xstream-distribution/src/content/CVE-2016-3674.html +++ b/xstream-distribution/src/content/CVE-2016-3674.html @@ -1,14 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + CVE-2016-3674 @@ -86,4 +94,4 @@

Credits

The vulnerability was discovered and reported by Alexander Klink.

- \ No newline at end of file + diff --git a/xstream-distribution/src/content/CVE-2017-7957.html b/xstream-distribution/src/content/CVE-2017-7957.html index bcb660ee1..da7d185d9 100644 --- a/xstream-distribution/src/content/CVE-2017-7957.html +++ b/xstream-distribution/src/content/CVE-2017-7957.html @@ -1,14 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + CVE-2017-7957 diff --git a/xstream-distribution/src/content/alias-tutorial.html b/xstream-distribution/src/content/alias-tutorial.html index 0bc94404e..f2437c88e 100644 --- a/xstream-distribution/src/content/alias-tutorial.html +++ b/xstream-distribution/src/content/alias-tutorial.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Alias Tutorial diff --git a/xstream-distribution/src/content/annotations-tutorial.html b/xstream-distribution/src/content/annotations-tutorial.html index 934a56ffd..22d294026 100644 --- a/xstream-distribution/src/content/annotations-tutorial.html +++ b/xstream-distribution/src/content/annotations-tutorial.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Annotations Tutorial diff --git a/xstream-distribution/src/content/architecture.html b/xstream-distribution/src/content/architecture.html index bdf8b6884..f8f133ab1 100644 --- a/xstream-distribution/src/content/architecture.html +++ b/xstream-distribution/src/content/architecture.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Architecture Overview @@ -133,4 +140,4 @@

XStream facade

- \ No newline at end of file + diff --git a/xstream-distribution/src/content/benchmarks.html b/xstream-distribution/src/content/benchmarks.html index 06754a086..5a083d6ad 100644 --- a/xstream-distribution/src/content/benchmarks.html +++ b/xstream-distribution/src/content/benchmarks.html @@ -1,14 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Benchmarks @@ -100,4 +107,4 @@

References

you do!

- \ No newline at end of file + diff --git a/xstream-distribution/src/content/persistence-tutorial.html b/xstream-distribution/src/content/persistence-tutorial.html index 3519df9f8..2f7587c9a 100644 --- a/xstream-distribution/src/content/persistence-tutorial.html +++ b/xstream-distribution/src/content/persistence-tutorial.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Persistence API Tutorial diff --git a/xstream-distribution/src/content/references.html b/xstream-distribution/src/content/references.html index 293d634f9..cb264c0c0 100644 --- a/xstream-distribution/src/content/references.html +++ b/xstream-distribution/src/content/references.html @@ -1,14 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + References diff --git a/xstream-distribution/src/content/repository.html b/xstream-distribution/src/content/repository.html index e301d9149..018059037 100644 --- a/xstream-distribution/src/content/repository.html +++ b/xstream-distribution/src/content/repository.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Source Repository diff --git a/xstream-distribution/src/content/security.html b/xstream-distribution/src/content/security.html index eb6f459ae..b88819f0c 100644 --- a/xstream-distribution/src/content/security.html +++ b/xstream-distribution/src/content/security.html @@ -1,14 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Security Aspects diff --git a/xstream-distribution/src/content/team.html b/xstream-distribution/src/content/team.html index 2d0912ef9..416567e9c 100644 --- a/xstream-distribution/src/content/team.html +++ b/xstream-distribution/src/content/team.html @@ -1,15 +1,22 @@ + Development Team diff --git a/xstream-distribution/src/content/tutorial.html b/xstream-distribution/src/content/tutorial.html index f5a1ca519..932a891dd 100644 --- a/xstream-distribution/src/content/tutorial.html +++ b/xstream-distribution/src/content/tutorial.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + Two Minute Tutorial diff --git a/xstream-distribution/src/content/versioning.html b/xstream-distribution/src/content/versioning.html index 5feab90ba..6cbea1f52 100644 --- a/xstream-distribution/src/content/versioning.html +++ b/xstream-distribution/src/content/versioning.html @@ -1,15 +1,22 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + About Versioning @@ -100,4 +107,4 @@

Versioning and Deprecation

- \ No newline at end of file + diff --git a/xstream-distribution/src/content/website.xml b/xstream-distribution/src/content/website.xml index 1ea251f5f..531087003 100644 --- a/xstream-distribution/src/content/website.xml +++ b/xstream-distribution/src/content/website.xml @@ -1,14 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> +
Software diff --git a/xstream-distribution/src/resources/style.css b/xstream-distribution/src/resources/style.css index 7d6e7fd03..634b54880 100644 --- a/xstream-distribution/src/resources/style.css +++ b/xstream-distribution/src/resources/style.css @@ -1,14 +1,18 @@ /* - Copyright (C) 2005, 2006 Joe Walnes. - Copyright (C) 2006, 2007 XStream committers. - All rights reserved. - - The software in this package is published under the terms of the BSD - style license a copy of which has been included with this distribution in - the LICENSE.txt file. - - Created on 29. January 2005 by Joe Walnes -*/ + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + */ /*--------------------------------------------------------------------------- * Two- and three-column layout @@ -409,4 +413,4 @@ ul, ol { .Meta a:link { color: #C0C0C0; } .Meta a:visited { color: #C0C0C0; } .Meta a:active { color: red; } -.Meta a:hover { color: red; } \ No newline at end of file +.Meta a:hover { color: red; } diff --git a/xstream-distribution/src/templates/skin.html b/xstream-distribution/src/templates/skin.html index d2dc8e277..b3bf0064d 100644 --- a/xstream-distribution/src/templates/skin.html +++ b/xstream-distribution/src/templates/skin.html @@ -1,16 +1,23 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + XStream - ${title} diff --git a/xstream-distribution/src/xsite/xsite.xml b/xstream-distribution/src/xsite/xsite.xml index c9f36e38e..d9c704522 100644 --- a/xstream-distribution/src/xsite/xsite.xml +++ b/xstream-distribution/src/xsite/xsite.xml @@ -1,14 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + @@ -62,4 +69,4 @@ code-coverage/ - \ No newline at end of file + diff --git a/xstream-hibernate/pom.xml b/xstream-hibernate/pom.xml index 5ab258973..a3275e4bb 100644 --- a/xstream-hibernate/pom.xml +++ b/xstream-hibernate/pom.xml @@ -1,14 +1,22 @@ - + + 4.0.0 com.thoughtworks.xstream diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java index 7057e8f4e..7e498596f 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. April 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java index 84460bd65..46f790afd 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. April 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java index dbdba98b2..acd545634 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. April 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java index 7d3c38fa8..c05d7a1cc 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. April 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java index 20a055152..7ffdcb56a 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. January 2007 by Konstantin Pribluda + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.converter; import org.hibernate.proxy.HibernateProxy; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java index d5d25d10d..bb9c08168 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2011, 2012, 2013, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. January 2007 by Konstantin Pribluda + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.mapper; import java.util.ArrayList; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html index d7742835d..72e0bc02a 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html @@ -1,13 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> +

Support of Hibernate enhanced collections and proxied types and Hibernate's collection proxies from the Envers add-on. To drop the internals of Hibernate @@ -24,4 +32,4 @@ xstream.registerConverter(new HibernatePersistentSortedMapConverter(xstream.getMapper())); xstream.registerConverter(new HibernatePersistentSortedSetConverter(xstream.getMapper()));

- \ No newline at end of file + diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java index 566b82eda..9f9dd7867 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2012, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08.06.2012 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.hibernate.util; import org.hibernate.proxy.HibernateProxy; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java b/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java index 0c11d6567..0ce0b37f2 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 21. April 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package acceptance.hibernate; import org.hibernate.SessionFactory; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java b/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java index 8f2d5e56a..3b295d8f0 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2011, 2012, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. October 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package acceptance.hibernate; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java b/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java index 9d6d9b32d..a9b49f3c8 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2011, 2012, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. March 2011 by Jaime Metcher + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package acceptance.hibernate; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java b/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java index ba667a65a..c8626e8f4 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2011 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 25. March 2011 by Jaime Metcher + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package acceptance.hibernate.reference; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml b/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml index cee1a5e1b..1914cd7b5 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml +++ b/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml @@ -1,5 +1,23 @@ + "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> + "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> + "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> + "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> + "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> + diff --git a/xstream-its/src/test-resources/project.properties b/xstream-its/src/test-resources/project.properties index afba2c572..b3134cd47 100644 --- a/xstream-its/src/test-resources/project.properties +++ b/xstream-its/src/test-resources/project.properties @@ -1 +1,17 @@ +# +# Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. +# +# This program and the accompanying materials are made available under the +# terms of the Eclipse Public License v. 2.0, which is available at +# http://www.eclipse.org/legal/epl-2.0. +# +# This Source Code may also be made available under the following Secondary +# Licenses when the conditions for such availability set forth in the +# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, +# version 2 with the GNU Classpath Exception, which is available at +# https://www.gnu.org/software/classpath/license.html. +# +# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 +# + project.version=${project.version} diff --git a/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java b/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java index 758204866..4f5dc73ef 100644 --- a/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java +++ b/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. August 2019 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream; import static java.lang.String.format; diff --git a/xstream-jmh/pom.xml b/xstream-jmh/pom.xml index d6e86e21f..3b88818fa 100644 --- a/xstream-jmh/pom.xml +++ b/xstream-jmh/pom.xml @@ -1,3 +1,21 @@ + + + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + app diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java index a4a68c5e6..2c51c3f07 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. July 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.benchmark.jmh; import java.nio.charset.StandardCharsets; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java index bae415f34..3b7dbe790 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20.11.2015 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.benchmark.jmh; import java.math.BigInteger; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java index 31d160396..4dd639257 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 16. December 2015 by Joerg Schaible, renamed from XmlFriendlyBenchmark + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.benchmark.jmh; import java.util.concurrent.ConcurrentHashMap; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java index e19efda7a..15b46f051 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. October 2015 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.benchmark.jmh; import java.io.ByteArrayInputStream; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java index 118d1c9e8..e393e21eb 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08.11.2015 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.benchmark.jmh; import java.io.StringWriter; diff --git a/xstream/pom.xml b/xstream/pom.xml index eb960f2b6..24f2537ef 100644 --- a/xstream/pom.xml +++ b/xstream/pom.xml @@ -1,3 +1,21 @@ + + + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> +

Converters for common basic types in Java. These include primitives (int, boolean, etc), wrapper objects (Integer, Boolean, etc), @@ -19,4 +26,4 @@

All of the basic converters will convert the item into a single String, with no nested elements.

- \ No newline at end of file + diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java index 4c26e92b5..a610bd665 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java index 2822b660c..969eff837 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. October 2003 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java index 77e542908..658915de0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.BitSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java index aed401ae1..bd0ee3cff 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.xstream.converters.Converter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java index bd120b905..732c0642e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. October 2003 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java index e537e67ec..5a66c76bf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java index e76a4672d..e9bbd43ee 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. February 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java index e53388360..618f1f578 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. October 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.Collection; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java index 7e6b611ae..05487946b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. October 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.Collections; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java index c6807d7e4..1a23bf5cd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java index 2e15815d4..3e6b9ac02 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html b/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html index 9d59acddf..a533475cb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html @@ -1,14 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> +

Converters for collection objects that write their items as nested elements, such as arrays, Lists, Sets and Maps.

diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java index 431e320c7..b48881bc4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java @@ -1,13 +1,17 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 18. March 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.converters.enums; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java index b2af15c30..f4e99f467 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java @@ -1,13 +1,17 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.converters.enums; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java index ef13a1786..919fa352b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java @@ -1,13 +1,17 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.converters.enums; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java index 4526c906e..011f9c3bd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2010, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. February 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java index c6a7a431e..01236fd16 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. March 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import java.util.EnumMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java index a83134b60..8c5fd2c21 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 21.06.2015 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import javax.activation.ActivationDataFlavor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java index 4f6e2ab14..f3869a630 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. April 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.nio.charset.Charset; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java index 4e033d26a..5d5f85cf3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. October 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.awt.Color; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java index 2ec55b83b..1f801d7c7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. July 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.Currency; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java index 02858ba24..8521d648f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 21.09.2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import javax.xml.datatype.DatatypeConfigurationException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java index 425469491..1634fd95f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2013, 2014, 2015, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java index 3f1d92dfc..05f283b92 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2014, 2015, 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java index 78397f6c1..18fe0f0dc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 13. January 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java index 86a73c36d..935000d76 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. July 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.awt.Font; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java index c9c951e98..238b7aaa3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. July 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.GregorianCalendar; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java index 0c4ea00bf..7ec1e1823 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. November 2004 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.Calendar; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java index 8061a7d07..d05d5fe90 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2016, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. October 2005 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.InvocationTargetException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java index b4cbdc9ec..09d7418de 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. October 2005 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.sql.Timestamp; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java index 5b565c4f4..6f42da695 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. April 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java index f02fdf87c..272bab3b4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 17. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java index 7253fcff4..1528f38b3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. April 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java index 299f38c2a..01611a864 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. July 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.Locale; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java index a082de7b9..cbda2c7ba 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 08.12.2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.io.NotSerializableException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java index 4ee81e599..9726ba892 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. December 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java index 86bffe4d3..a83b39759 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. September 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.Collection; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java index 0dce2e8d6..9e653bf8c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. September 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.Map; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java index 0d0540bde..1b4722149 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2016, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 7. February 2016 by Aaron Johnson + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java index 358dac7df..f13eaa3c6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 20.09.2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.beans.PropertyEditor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java index 22fcaf517..df36e9ebb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 31. July 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.regex.Pattern; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java index baee30edd..2acc1888d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. July 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.sql.Date; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java index f3dc8d7c3..3315b7b7c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. July 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.sql.Time; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java index 96252670d..90f1d7d34 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2012, 2014, 2016, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. October 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.sql.Timestamp; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java index 364d4fad3..ac9cce6d2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018, 2019, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java index 1422a19f5..14de4ee6b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. May 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java index 594decd17..ab6bd686c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 12. January 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.security.Principal; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java index 828d1c047..0c7fa2303 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 25. March 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.awt.font.TextAttribute; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java index bf3b6def0..d080d4a2b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java index 02f617550..7024cc369 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2011, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.converters.extended; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java index 25e0976d4..403da21ea 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2014, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. July 2006 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java index fcc8464e2..ee685a6ad 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 25. September 2013 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.converters.SingleValueConverter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html b/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html index 10e58dfa6..82da1e5fd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html @@ -1,14 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> +

Extra converters that may not be enabled in XStream by default.

diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java index dff4c408f..804c7d2e9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 12. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.lang.reflect.InvocationTargetException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java index c24d78483..2cecdb805 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java index 82fd5c6ea..e5a104eaa 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java index 5c972db1a..ad87766c6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.util.HashSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java index 5111a9b10..3eb6905c2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java index 244bc7a31..7e778f2d7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java index 0ccaf9a95..03b0af5dc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2016, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.beans.BeanInfo; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java index 1946f3264..4a49c83e5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java index 30b54088c..2e492bcaf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2013, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. February 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java index 7b4ef2163..c7c544793 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java index a0f3c5425..eb4a2110d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. April 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java index 43b7722a6..975508911 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.Externalizable; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java index 239a687c1..be328cad4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java index b18703daa..8612e53fc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. April 2007 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java index 5434eee90..fb3734295 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. April 2007 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java index e01ecee8a..0ee5a9274 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. April 2007 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java index d0656c62d..d6b2d9388 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2015 XStream Committer. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 17. January 2015 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.Serializable; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java index a50b3ca11..14a885ea0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. October 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java index 544af247a..6311b2eae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 17.05.2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java index e2a5a430f..38286de6b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.xstream.converters.ErrorWritingException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java index be4f66ad7..902f01824 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.ByteArrayInputStream; @@ -70,7 +75,7 @@ public Object newInstance(final Class type) { try { for (final Constructor constructor : type.getDeclaredConstructors()) { if (constructor.getParameterTypes().length == 0) { - if (!constructor.isAccessible()) { + if (!constructor.canAccess(null)) { constructor.setAccessible(true); } return constructor.newInstance(new Object[0]); diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java index eb7a3219b..030f686f1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.xstream.mapper.Mapper; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java index 9958b3c16..94a51268d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java index bd3e4f852..c84433fc5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 13. April 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java index 64322f86b..6b39c104b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. April 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.xstream.converters.Converter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java index 81a4e35b7..9bec8e18d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 21. December 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java index d9ee57413..d552ec3cd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.ObjectInputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java index 9bf93f21c..00f08d36c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2009, 2011, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 10. April 2007 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java index 9bab5a9ad..48e7b2a1e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java index 44455df24..f4b503a6e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java @@ -1,10 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2013, 2014, 2016, 2017, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible, factored out from SunUnsafeReflectionProvider + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java index 0221e024f..9b583bbb7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. January 2014 by Joerg Schaible, renamed from Sun14ReflectionProvider + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java index 14a6d255e..7b96bd795 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 19.09.2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java index 40f5bf45a..e945bfd95 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.DateTimeException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java index 11c25b646..be5f18fef 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.DateTimeException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java index e1454c338..66e6d8d79 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.Duration; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java index 3dc00a711..fe280bccb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 21. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java index 24bccac2c..eadf7b53b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.Instant; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java index 3429a51e5..6a3ba924e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java index 6f4b9dfdd..671205987 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.chrono.JapaneseEra; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java index c6285e881..8c48769fd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. January 2017 by Matej Cimbora + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.LocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java index 06d417474..f02a4f0e7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. January 2017 by Matej Cimbora + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.LocalDateTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java index fde20d4d7..8aaa365a5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. January 2017 by Matej Cimbora + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.LocalTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java index 2413f6316..2c5285a19 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java index bc38f7a1b..007951078 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.MonthDay; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java index 707437e59..f2ba143b2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. January 2017 by Matej Cimbora + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.OffsetDateTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java index fab0cd03e..d06743af4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.OffsetTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java index 33736c7d0..9f2591de6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.Period; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java index 9ea9a05f0..4c8348bff 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. March 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.Clock; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java index 2380ca9e0..0d349cef4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java index 369b380ef..79e84df88 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.temporal.ValueRange; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java index 664bdcfef..c51abef3c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.DayOfWeek; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java index 79e5d0a76..94f02d0f8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.Year; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java index ae9a665ae..57f2b9059 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.YearMonth; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java index ccfd402f9..e671a154a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 8. February 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.DateTimeException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java index b3ff8745c..8a4000ae9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. January 2017 by Matej Cimbora + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.time; import java.time.ZonedDateTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html b/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html index 97be04997..922236d54 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html @@ -1,13 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> +

Extra converters for the java.time package.

diff --git a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java index 5408a4f30..5b2cf051f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2014, 2015, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. March 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java index 3f5f668ab..13b571573 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. March 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java index f08dc0ab2..96bbca379 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 26.09.2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.MarshallingStrategy; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java b/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java index 5135ee0cd..8c9ae71a9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. March 2020 by Joerg Schaible, renamed from com.thoughtworks.xstream.core.Base64JavaUtilCodec + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.Base64; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/Caching.java b/xstream/src/java/com/thoughtworks/xstream/core/Caching.java index ef329da50..42169dfd5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/Caching.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/Caching.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 19. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java b/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java index d6701eca9..0e9101046 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 26. June 2013 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.core.util.CompositeClassLoader; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java b/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java index 0e34bd576..a1ab66909 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016, 2017, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/JVM.java b/xstream/src/java/com/thoughtworks/xstream/core/JVM.java index 9e7f6bb62..dc8a7927b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/JVM.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/JVM.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java b/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java index aa4eaba7b..d1b14378e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. October 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.Collections; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java index 12305e20b..dec73aeff 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java index f6a6428c7..14cf505d2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java index d88b18acc..38b6eb894 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java index fda71050b..85775cc22 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. April 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java index 132dbca5e..70c68a2ee 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. April 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java index be449a8bb..ff765efe5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. April 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java index 730b476c3..748316a7e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. May 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.MarshallingContext; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java b/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java index 6c078647f..236d4abae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; public class SequenceGenerator implements ReferenceByIdMarshaller.IDGenerator { diff --git a/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java b/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java index 4721ddc69..36de5603a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. August 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; /** @@ -35,4 +41,4 @@ public interface StringCodec { * @since 1.4.11 */ String encode(byte[] data); -} \ No newline at end of file +} diff --git a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java index 682796db5..42a46ec1b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java @@ -1,15 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2018 - * XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java index 231ef2572..a6df8a156 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java index a9ee45b36..4c2aa00d3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java index 5f0c13641..cb1864e3a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29.07.2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java index f59e2875d..6910b2322 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.ByteArrayOutputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java index 0688ad79f..a42fa130f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. August 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import javax.xml.bind.DatatypeConverter; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java index 7d1cd77cc..ee79b6025 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. August 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Base64; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java index 8ed391fb8..a17506aca 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java index 41b3a372e..7997eae7a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2010, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java b/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java index 644422cbd..3653cfb04 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2017, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 16. November 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.ref.Reference; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java index edd8b8144..4cd3267af 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java index f3f346afe..9844d96e0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java b/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java index 2ea6b9bab..80789f2bc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17. March 2019 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import com.thoughtworks.xstream.io.HierarchicalStreamDriver; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java b/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java index 7a3415b5e..362331295 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. March 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java b/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java index 25810f10f..9a3a979a9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2010, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; public final class FastField { @@ -60,4 +66,4 @@ public int hashCode() { public String toString() { return (declaringClass == null ? "" : declaringClass + ".") + name; } -} \ No newline at end of file +} diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java b/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java index b613a6db2..dae6ff3bd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 02. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java index 334efc4bd..f6543a43d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2016, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. April 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java b/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java index e97400f20..6afc43fb3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 09. October 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java index d4cb7d8d2..077f0bb50 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. May 2017 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.time.Instant; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java index 8e3563ee5..87ea11da5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2016, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. May 2017 by Joerg Schaible, copied from ISO8601GregorianCalendarConverter + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Calendar; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java index 88f076e18..3a4d681c0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. Mai 2020 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Collection; @@ -123,4 +129,4 @@ public E element() { public E peek() { return this.list.get(0); } -} \ No newline at end of file +} diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java index e116994f6..aa1029641 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.ref.ReferenceQueue; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java b/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java index 46a60b8ba..2866e9b5b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. February 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java index 614290f2a..9c844bad5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. May 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java index f22678a13..29e111d43 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2010, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 12.10.2010 by Joerg Schaible, extracted from TreeMapConverter. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java index fa53cc66a..bfee389ee 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2010, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 12.10.2010 by Joerg Schaible, extracted from TreeSetConverter. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java index 5bb94223a..8494bd382 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2006, 2007, 2011, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2006, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 11. October 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java b/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java index 3694cfbe1..c479a7001 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. February 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java b/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java index cb6572883..ece161d9d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.Closeable; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java b/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java index c0254b1ad..f1c4ecce5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. March 2013 by Joerg Schaible, moved from package - * com.thoughtworks.xstream.converters.reflection. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java b/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java index 69e51c83a..affc87b08 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2014, 2015, 2016, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. February 2015 by Joerg Schaible, copied from c.t.x.converters.reflection.SerializationMemberInvoker. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.ObjectInputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java index 77b63cf58..82776f4fa 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2007, 2008, 2014, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. September 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.beans.PropertyEditor; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java index 0ae5d10a1..301dc2a9d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2012, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. May 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.text.DateFormat; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java b/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java index 09d5c598a..8bf9f4b22 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. March 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java index 5168be7a3..72a3985ad 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 17. January 2015 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.regex.Pattern; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java b/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java index 780cbcf75..4d8a61949 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2013, 2014, 2015, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 12. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.lang.ref.Reference; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java b/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java index 2a92d9820..ca5031366 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2007, 2008, 2010, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 13. September 2007 by Joerg Schaible. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.core.util; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java index 18b588306..ea44ff0a2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. August 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java b/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java index b7a437ac7..de81bedda 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 16. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java index 6d703200c..147468a14 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 17. August 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import com.thoughtworks.xstream.core.util.Cloneables; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java b/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java index 7c2e15327..e1d96237c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java index 8587bc1d3..c54a1d5c9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. October 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java index 7645bde3e..291775e00 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. June 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java index cbed09143..5f1d89767 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. June 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java index bc5c6860e..9a180edaf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java index 55118ce6b..ac6386cbc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java index 27a174cbf..0a12c23a4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java b/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java index dbcfe8b16..669f09d27 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java index 9ec1d4f0d..6d9f792f5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. March 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java b/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java index 86535c707..d97952c59 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java b/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java index 985d13af7..9d749b612 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java index be7ab85e0..8b0b12aaf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. October 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.io.InputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java index 3260994f2..9049fc8fc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.io.DataInputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java index 4cc226fcb..e9fbff2ba 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.io.DataOutputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java index e34f6a7c7..c399e0dd5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java index 93a899aaf..7fde45113 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.io.DataInput; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java b/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java index 3bb9f157d..befd6ea05 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.copy; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java index 0135086ea..7ce2d0af8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.Externalizable; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java index 0afa35c30..ea4c3d2ce 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2007, 2008, 2009, 2010, 2011, 2013, 2014, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. March 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java index 3149b343e..dd8094eaa 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java @@ -1,13 +1,19 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2008, 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17.04.2008 by Joerg Schaible. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.util.ArrayDeque; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java index 186e007fb..968721713 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2014, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. June 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java index 860360ea0..c6f2cde01 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. June 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java index 0b5cf7977..5ed9e321b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 28. November 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java index c383bb0c3..7c908c25f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.naming; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java index 7ff4b52df..b6ed0f727 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.naming; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java index 5d2560f68..e2be44c9f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.naming; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java index 9a3256c57..a2f43337d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2015, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.naming; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java b/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java index 0d5d86813..f5237074b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 02. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java index 5e7223d1e..e7991edb5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java index 09abf5eb6..0eafa69b6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. April 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import com.thoughtworks.xstream.converters.ErrorWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java index 331f34390..93a2388ad 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import com.thoughtworks.xstream.io.AbstractWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/package.html b/xstream/src/java/com/thoughtworks/xstream/io/path/package.html index 86d4a4b0c..f773f3eb9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/package.html @@ -1,14 +1,21 @@ + + Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + + This program and the accompanying materials are made available under the + terms of the Eclipse Public License v. 2.0, which is available at + http://www.eclipse.org/legal/epl-2.0. + + This Source Code may also be made available under the following Secondary + Licenses when the conditions for such availability set forth in the + Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + version 2 with the GNU Classpath Exception, which is available at + https://www.gnu.org/software/classpath/license.html. + + SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + +--> + diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java index 240421248..21e978a2d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.converters.ErrorWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java index c01af9b4e..91edb3864 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 18. October 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java index 5f8dfc16e..928733eae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.core.util.FastStack; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java index 5907ba1f4..3c5ae624b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 28. May 2005 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.AbstractDriver; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java index e6a7e113a..25bdf0179 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.AbstractReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java index 2ab440705..911f6120b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 04. June 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.AbstractWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java index 309e8466d..55d324244 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java index a5d53603d..bbcbd3c2d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java index 600bb2fe9..d199b9132 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. April 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java index 8da552c1c..f3903b518 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java index 174720506..ae915213d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 18. October 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java index 5339ec11d..65b60a900 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 18. October 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java index e3c50459a..1edbb5d57 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java index a54729050..02186344f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java index f4262cc0d..453e104ca 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.dom4j.Branch; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java index e0a7f3ff6..3a0f79831 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java index bbd9ad6d8..05aa385be 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java index daff7e4d9..fdd9b9878 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java index caf77dde1..608efd69e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 02. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.w3c.dom.Document; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java index 578f534bd..adeb8c1a0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. June 2013 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java index deac9b6bd..e90cacf7a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. June 2013 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java index 3ee151865..d4e7d85ca 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 24. June 2013 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.jdom2.DefaultJDOMFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java index 6deba9f08..90638c733 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java index d3c5d2057..7692480ca 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java index 0e027f42f..d87264c46 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.jdom.DefaultJDOMFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java index 75af9ebda..d5709ff2a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.kxml2.io.KXmlParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java index 3604857d9..0ad243d56 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.kxml2.io.KXmlParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java index 5d6f752fd..1052f04aa 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java index e2bfb6bd8..51f8e2cda 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 01. October 2004 by James Strachan + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.Collections; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java index 37df52caf..eb3b57cbf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java index 7ee4b9210..24bf0d9fb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. March 2019 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java index b7d2b5d83..e9c9927bf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java index 9f75a4e5f..c2aba1784 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 27. July 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java index f3e9263aa..e0e817c00 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014, 2015, 2019, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. September 2004 by James Strachan + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.Closeable; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java index ee1059994..6bdfc7b81 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. September 2004 by James Strachan + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.namespace.QName; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java index 38ac8de8e..6592276c7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. September 2004 by James Strachan + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.namespace.QName; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java index 13c1ab560..db5976aea 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java index 5d55bb598..ce966c83e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java index 236aeeb54..6f4ff463c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. August 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java index 8d989bf50..fbda08ff0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. April 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java index 2df54639b..1d755e517 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. August 2009 by Joerg Schaible, copied from XmlFriendlyReplacer. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.BitSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java index b65183c4a..63fecda83 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 26. September 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java index 148c43415..54236f61e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 17. April 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java index 83e36dd6f..bdb0f5ab1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 26. September 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java index e79e97060..ff88fc217 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. April 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java index e2b40e692..b9337635b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 02. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java index 061205279..cfd478234 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. September 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java index 385f50074..4990a9082 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.xmlpull.mxp1.MXParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java index 795a1ef17..e48d41761 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 29. April 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.xmlpull.mxp1.MXParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java index 38dc450ec..738145d27 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.xmlpull.v1.XmlPullParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java index 5c969baf8..a9e3566fd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java index 3f05ec663..d2c6c238a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java index b68f5bc5d..79288bfd8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.xmlpull.v1.XmlPullParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java index f1f2da8b2..cd7947417 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 08. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java index 606eecab9..66f80c850 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml.xppdom; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java index 2059ae885..886c1f6c7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml.xppdom; import java.io.Reader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java index c75ceb6dd..561ba7d1c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 02. May 2009 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml.xppdom; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java index 0ee33f5e0..f9f065377 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 11. August 2011 by Joerg Schaible. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml.xppdom; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java index 5b307f765..334aa8dbd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 11. August 2011 by Joerg Schaible, code from XppDom. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml.xppdom; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java index de6811527..c4fa5e414 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java index 8a7435476..750f5e20a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. May 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java index e15c8b272..05c343774 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. November 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java index 1eff98895..50c428eb3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. November 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java index d66851c9d..5cf406ebf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. January 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.core.util.Primitives; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java index 648784576..32111d384 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 27. March 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java index 65b90b0b0..c803f92c5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 20. February 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java index 78f89e6e0..d5b84cc59 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 08. April 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import net.sf.cglib.proxy.Enhancer; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java index 46add3008..b776eec7a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.concurrent.ConcurrentHashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java b/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java index 057165a3f..50c159ef7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java index 4559c3d55..eebbe8329 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java index 15e3c2c85..0aac732fe 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. January 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java index f50a7268f..14c34e90d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.converters.Converter; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java index 4e93128a5..5cdbade3e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. January 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.lang.reflect.Proxy; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java index 310baa529..52f45f83a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. January 2016 by Joerg Schaible, factored out from FieldAliasingMapper. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java index c51936575..85f252256 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. March 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.EnumSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java index 110f16b68..57cf3de0c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java index 1f7ddbdba..425ca8f7c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java index 329eefec3..2ba487dac 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2012, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 16. February 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java index 421162061..9d63c0e57 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 15. January 2015 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.io.Serializable; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java index 456331366..8720577d8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. November 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java index aeacf07e3..2d32b139b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.io.Serializable; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java index b83ff9913..de687efe9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.lang.reflect.Method; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java index a64dd5dcd..de90957ea 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 31. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java index 7b36022ab..3900d6eb9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 10. November 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java index f0e92937d..e5773d911 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java index 685926fb6..d89eb94b3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java index dd8957e4c..19a27fb4b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. May 2006 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java index 37128da84..aa2920b12 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 18. November 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java index 2d0db951e..ae915d106 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014, 2015, 2016, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. November 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java index a40785914..124b3e8d9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 13. June 2006 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java index e1ffe99e9..c0c949731 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 20. November 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java index 1ca781e6a..71e8074cd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 13. June 2006 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java index 96b793f19..d2f8e3ad9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2014, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. July 2006 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.AbstractList; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java index 2248b2f76..73bb254a9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 13. June 2006 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.AbstractMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java index e03f1556b..678356a47 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 28. June 2006 by Guilherme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.AbstractSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java index 13c18673c..ad522b4e2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java index ec263f345..c6dd784fd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java index 0acc6d83c..9b995628f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 19. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import net.sf.cglib.proxy.Proxy; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java index b688066ae..b35d29754 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014, 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java b/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java index 23c938777..7d4121fab 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java index 2951ac658..fa014bb7a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 27. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java b/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java index df7fabe2e..c2e43faae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java index dca2766b6..059a5cc31 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java b/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java index 942cf3e70..3d2a7738c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import com.thoughtworks.xstream.mapper.Mapper; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java index b6e530419..1fcd18e8e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import com.thoughtworks.xstream.core.util.Primitives; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java index aebe1054a..5a71ef644 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 19. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import java.lang.reflect.Proxy; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java index 9a669661e..22a98b1b3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; import java.util.regex.Pattern; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java b/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java index 18ed3aae3..6d1c9a546 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 23. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java index 2187650fe..0e6817991 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java index 9bbf56c67..8032f86f7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/test/$Package.java b/xstream/src/test/$Package.java index 4a4b9f0e2..7bed6c17f 100644 --- a/xstream/src/test/$Package.java +++ b/xstream/src/test/$Package.java @@ -1,8 +1,17 @@ /* - * Copyright (C) 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 22. February 2013 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java index dfa90c0a8..c3cba415a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java @@ -1,15 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible by merging - * AbsolutSingleNodeXPathCircularReferenceTest, AbsolutSingleNodeXPathDuplicateReferenceTest - * and AbsolutSingleNodeXPathReplacedReferenceTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java index 485c4573e..082be9b75 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java @@ -1,15 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible by merging AbsolutXPathCircularReferenceTest, - * AbsolutXPathDuplicateReferenceTest, AbsolutXPathNestedCircularReferenceTest and - * AbsolutXPathReplacedReferenceTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java index 632fddc01..5f1759ef6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014, 2015, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java index 73acd9bc3..fcda55eca 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java @@ -1,16 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible by merging AbstractCircularReferenceTest, - * AbstractDuplicateReferenceTest, AbstractNestedCircularReferenceTest and - * AbstractReplacedReferenceTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java b/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java index 44dd006f9..4362e6e73 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2018, 2019, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java b/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java index c15b1d76a..2f66034e1 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 03. October 2003 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java b/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java index 263bd197f..edf51e6ad 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. February 2006 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.text.DateFormat; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java index 7258db71f..5ac21c927 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2013, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes, merged with Basic15TypesTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.math.BigDecimal; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java index cb031677d..4a983da1c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. November 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java b/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java index 71d3f2f61..39d7150a8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. October 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java b/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java index 472662954..c1255b93c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 28. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.awt.Color; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java index 6d2cb9101..e889383eb 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2010, 2013, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. April 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java b/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java index b67b6cc5e..1d68e202c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java b/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java index 65e38d4c0..6bf961222 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. October 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java index 3d5e95fee..c82be2a60 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java b/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java index 450e052e0..fc43642cb 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java index db4e14a65..76a7bc1e3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2012, 2015, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17. July 2018 by Joerg Schaible, renamed from Concurrent15TypesTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.Map; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java index 3a9c678be..bba2e285a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java index 3a291d411..99d913004 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.text.DecimalFormat; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java index 8db636c75..757fafb84 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17. May 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java index 215a01ea8..672c734fc 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. March 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java index 8d8a5989a..f9d2a202a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java b/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java index dc3be4a36..b7d93327c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. October 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java b/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java index f50f7f9f6..5b17901c8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. July 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java b/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java index 7e8e20250..b12db0179 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java b/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java index 14ff8ddfa..227b53c4b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java +++ b/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014, 2016, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. June 2006 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java b/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java index 488d67458..47b2fd54d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java index 5d58dd20a..88ba116dc 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2012, 2014, 2016, 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. October 2003 by Joe Walnes, merged with Extended14TypesTest and Extended17TypesTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.awt.Color; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java b/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java index d69db8d30..8a21bde79 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.Externalizable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java b/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java index 5a12bb8a1..9c7e1d3f6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2013, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java index 685e64bd3..3c2bd2da3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java @@ -1,16 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible by merging IDCircularReferenceTest, - * IDDuplicateReferenceTest, IDNestedCircularReferenceTest and - * IDReplacedReferenceTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java index 598b3fb59..3ce3b471f 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014, 2015, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. July 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java index 2902c41a8..1990f61dc 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java index 4db3dc0ff..133934444 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. August 2011 Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java index 893ba70db..f8774a066 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. April 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java b/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java index 0a4e09e16..4d908c08f 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java index bcac20829..1e0511590 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 31. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; public class InnerClassesTest extends AbstractAcceptanceTest { diff --git a/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java index 56d7d7526..ceba6fc00 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import org.joda.time.DateTimeZone; diff --git a/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java b/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java index e0c6c8024..df7a55553 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2014, 2015, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 31. December 2014 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java index d05d4a667..fa6bed490 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. November 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/MapTest.java b/xstream/src/test/com/thoughtworks/acceptance/MapTest.java index b941fbc86..4b405091a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/MapTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/MapTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java b/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java index 1d389151b..8360fa3a2 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2018, 2019, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. December 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java b/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java index f9e6ccef9..565f8e905 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. September 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java b/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java index 5888e6033..1dc57dfb3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2012, 2013, 2014, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. June 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java index bf2000598..8fa524b96 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. November 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java index 13aa9e493..d218e9d2d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. October 2004 by James Strachan + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java b/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java index 3374d4e99..46c98e714 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java index 68053c274..fb4cf2932 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. April 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.lang.reflect.Constructor; diff --git a/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java index db31144c8..34469f5af 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java @@ -1,16 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible by merging - * RelativeSingleNodeXPathCircularReferenceTest and - * RelativeSingleNodeXPathDuplicateReferenceTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java index 662cca2e6..d53c3b621 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java @@ -1,16 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible by merging RelativeXPathCircularReferenceTest, - * RelativeXPathDuplicateReferenceTest, RelativeXPathNestedCircularReferenceTest and - * RelativeXPathReplacedReferenceTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java b/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java index 41aeb83e3..19ca796b6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2010, 2013, 2014, 2015, 2016, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java index d4e949151..a4c895bd1 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. December 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.beans.EventHandler; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java b/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java index 910473a86..ccc45966d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. February 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java b/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java index 43c2129db..b3c5ea393 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2010, 2012, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. June 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java b/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java index 7fa6dfd42..918e4611c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 10. April 2007 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java b/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java index dcab57a49..c4ed766ec 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import javax.swing.DefaultListModel; diff --git a/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java index cc12ec792..cad3d44fd 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. January 2017 by Matej Cimbora + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.time.Clock; diff --git a/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java b/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java index 1f72e8dc3..e4ac9fa07 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. May 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java b/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java index d6f9fa4c0..529ebba55 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2014, 2015, 2016, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java index bde26ef94..82c968325 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. July 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java index d610f58f5..adbbd44e9 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 27. June 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java index dce2de9d3..1dbf95e15 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. August 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.util.TreeMap; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl b/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl index 467d8adfb..ce52924dc 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl +++ b/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl @@ -1,14 +1,22 @@ + @@ -36,4 +44,4 @@ Created on 30. March 2006 by Joerg Schaible - \ No newline at end of file + diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java index 06e212b9c..d8997a3a4 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. April 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.io.ObjectStreamException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java index 34847145a..603e7f93e 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. September 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java index a139f4665..ef3c8c207 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2017, 2018, 2019, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 18. April 2006 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance; import java.text.DecimalFormatSymbols; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java index f613a14e0..51dd8eb39 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2013, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. November 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java index 900d5ef73..ece61f1f0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 16. September 2005 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java index 6d2b60e37..34016886a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. November 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java index a2685fe4a..eb6e0bf1a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2016, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. March 2006 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java index cc890de2d..632562496 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 30. July 2011 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java index df986e894..446d4119c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. December 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java index c182c82a7..a1937bd1b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. August 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java index 99e54742b..f2e1ebbe6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 23. November 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java index 1e359e21f..0562abba6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2011, 2012, 2013, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. January 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.annotations; import java.math.BigDecimal; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java index caa93e88a..9f732bbcf 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. April 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.util.List; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java index 26fe917f3..6a294db45 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; public class Hardware extends StandardObject { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java b/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java index b682ada33..e445194b7 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; public class OpenSourceSoftware extends Software { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java index 5a6eab036..38be07ef0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2008, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java b/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java index 5c12b332f..83c180290 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 05. July 2011 by Joerg Schaible, factored out of ExternalizableTest. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; public class OwnerOfExternalizable extends StandardObject { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java index b76fef5b8..2f3a61eb2 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. April 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java index 3edeb9c8d..670fbb91b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2008, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 22. October 2008 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java index c1121a243..3978df9da 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. April 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.lang.reflect.InvocationHandler; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java index 45deeae4b..c0a3bbd6e 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 26. September 2003 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java index dd895d9db..a40a65553 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. August 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java index 6f35592d6..185161f17 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; public class Software extends StandardObject { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java index 5d1837c60..0ed51e542 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. July 2011 by Joerg Schaible, factored out of ExternalizableTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.io.Externalizable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java b/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java index 0bbe5a623..0829190f0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. October 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java b/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java index 16e1df29d..3570a5cf2 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.objects; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java index cd2560223..76062398a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java index 030f594c8..d8216c1e9 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java index b47515421..e4697108c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import java.util.List; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java index a6e0dd607..6824ca2d3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java index c09f3bf3d..cf8876bd0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. October 2005 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java index 7c95f269e..00367c3c5 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java index 924ab1858..e8ddfb674 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; public class WithNamedList extends WithList { diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java index 148851efd..23ea227b0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java index 38c223570..bf6e1af3b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java index ac7dcb2d1..b418ff8b6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 19. December 2004 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java b/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java index 441f1d583..1bb578efb 100644 --- a/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2014, 2017, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 26. September 2003 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java index 256acf948..a8dec3bfd 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. November 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters; import com.thoughtworks.xstream.mapper.CannotResolveClassException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java index 648953cf6..a0a4e9fd1 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2012, 2014, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. February 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.basic; import java.text.ParseException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java index afcb93d58..cdb5a642c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. Mar 2020 by Zezeng Wang + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.converters.basic; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java index efd574df9..89a41458a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2010, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 3. August 2010 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.basic; import java.net.URI; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java index 7dc6e5db7..5717035e2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 25. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.basic; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java index 64110e067..49a698d90 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 07. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java index e875b3f43..a7b9d5721 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. April 2004 by James Strachan + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.Arrays; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java index 41fd68131..fcfa4775a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. March 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java index 2420bec0f..c32a71972 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. February 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.collections; import java.util.Properties; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java index b529a7def..4603136fe 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; enum BigEnum { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java index aded48152..e0d0c59fc 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 18. March 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java index ff5437497..ebcbeec32 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. October 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java index 4e6415082..0415abbfe 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import java.util.EnumMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java index eee599d16..d2949964e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. February 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java index 9f6218dc3..e984ac7d4 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import java.util.EnumSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java index d3762dde7..e69fb9fbd 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. March 2013 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java index 2d4de0bc0..62dbe4224 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. February 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; /** diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java index 54088d3ca..c5bde6082 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; enum PolymorphicEnum implements Fruit { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java index 2b691d1c3..c43cef1ef 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.enums; enum SimpleEnum { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java index 694a1af65..f0320c066 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23.06.2015 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.awt.datatransfer.DataFlavor; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java index 87b113489..b8708f1d9 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 28. July 2006 by Guilerme Silveira + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.nio.charset.Charset; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java index d15cbeb92..f572f3636 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 21. September 2007 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.converters.SingleValueConverter; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java index 18017e0cb..72669d43f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java index a6aa6ee11..ea2b2907c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. July 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.awt.Font; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java index 04b6056f0..f7a314536 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 14. May 2005 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java index 398c10ac2..c1243779b 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. November 2004 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.text.ParseException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java index 39291c3aa..d8e696024 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. October 2005 by Joerg Schaible, merged with ISO8601GregorianCalendarConverter17Test + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java index aa0416851..d1b7199e2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. October 2005 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.sql.Timestamp; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java index 9a7245137..aad6f0f96 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 16. February 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java index 0602542dd..c4ef9f1b1 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. December 2004 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java index e13927476..d8cde2462 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 20. September 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.beans.PropertyEditorSupport; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java index 6a909511d..e6cf48321 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 28. July 2006 by Guilerme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.regex.Pattern; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java index c825f78a8..b6aaaf27e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. May 2019 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java index e3228de33..a483c3975 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java index e24ea668c..e02156aeb 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java index 0b21eb5d4..6bfbe81a5 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2011, 2013, 2014, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. July 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.converters.extended; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java index ee97d9db9..09021d4e5 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. July 2006 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.extended; import java.util.Map; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java index 1715c8b3a..921140b1a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.util.Comparator; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java index b3940172d..3e36cd6a0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 12. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java index 6ea2ed96f..c082dffc6 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import org.jmock.Mock; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java index be9ee4eec..f905e7a42 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. July 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java index 399075412..c041ee206 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17. May 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java index 086e6abfe..47fad531c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes, merged with PureJavaReflectionProvider15Test + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java index c50c90275..d39907911 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2013, 2014, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java index 4fd8d574d..e1cffad3f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. July 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java index 73e4d7f11..8745d56e5 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 10. April 2007 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java index 49678ee0a..2592e69f4 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java @@ -1,10 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 08. January 2014 by Joerg Schaible, factored out from SunUnsafeReflectionProviderTest + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; public class SunLimitedUnsafeReflectionProviderTest extends AbstractReflectionProviderTest { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java index 791b2e3d6..3d4ae9b77 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. January 2014 by Joerg Schaible, renamed from Sun14RelfectrionProviderTest. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.converters.reflection; public class SunUnsafeReflectionProviderTest extends SunLimitedUnsafeReflectionProviderTest { diff --git a/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java b/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java index ee5b91892..d0278f262 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. March 2020 by Joerg Schaible, renamed from com.thoughtworks.xstream.core.Base64JavaUtilCodecTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java b/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java index 38902591a..9322d30fd 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 06. March 2004 by Mauro Talevi + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.BitSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java b/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java index 1c0dd922e..b1447fc68 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2012, 2013 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 23. July 2004 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java index 023868e5a..688d2a3f6 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java index e46721e9c..d736291ca 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. April 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java b/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java index 7b76929c8..b5daa75a5 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 25. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java b/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java index 64d64a947..17d0378d2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 10. April 2005 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java index 0e51ff330..6b31a1428 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java index c5df40909..b4f01812c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2017 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. August 2017 Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java index 1302bcc6f..e866aa1f4 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2010, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created 18.11.2010 by Joerg Schaible. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Arrays; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java index b30c24000..d35d6aa13 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2009, 2010, 2011, 2012, 2014, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. March 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.BitSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java index 43f09a41d..3bbf675fa 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java index 281419c0f..c48c18432 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. May 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java index 4dad684a0..826e207f5 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. February 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Iterator; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java index 9d536e203..e0760bd57 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005, 2006 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. February 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.util.Iterator; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java index cdcb50e97..34b438cfc 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. September 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java index 3722f328e..810ef427b 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 14. October 2006 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.text.ParseException; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java index f40d6a4ca..b61c9c6c3 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. July 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java index 84d64cca8..e565854cf 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2010, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. September 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.core.util; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java b/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java index 848ff150a..525b9bbc0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. April 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java index 71a734eae..1d0ecfed3 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 15. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java b/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java index 8a72afe74..e69487130 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2015, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. June 2006 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java b/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java index b50bf8c59..7415f1929 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. June 2006 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.binary; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java b/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java index 84161d19f..6cd67c73e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2015, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 04. June 2006 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.copy; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java index 7d5097a21..50cf5dc90 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2013, 2014, 2016, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. April 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java index 25d90df8c..2a3efc4bd 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2017, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 22. June 2006 by Mauro Talevi + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.awt.Color; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java index be0eeec74..90d01ee7c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2010, 2011, 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. September 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java index 86a588487..86389c1e2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2011, 2012, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. November 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.Writer; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java index 3c444486e..0d68ceb06 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2009, 2011, 2013, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 01. September 2009 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.json; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java index 29913835a..0101ddc9d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 7. March 2019 by John Bergqvist + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.naming; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java index 12415c66d..85b105f1d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import junit.framework.Test; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java index 324c1e776..598ebb736 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java index 8f759a57d..7e964ea6a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import java.io.Reader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java index 4de158e34..9763d9d23 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.path; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java index 28ac4fc4e..391b6142e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2008, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. October 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.ArrayDeque; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java index d31b608c9..010571738 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2012, 2013, 2015, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 21. March 2019 by Joerg Schaible, extracted from AbstractreaderTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.HashSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java index c443c2cea..fd461e0d6 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. February 2019 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java index 9dcc2a6ba..3c3b0cdae 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2009, 2011, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. November 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java index d73e24c13..49e6fefd5 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2012, 2013, 2015, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java index 45dc5f5ab..07da3e4e2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java index d62557b60..9ad370a88 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2015, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. September 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java index 771dc1f9b..4300b6cc1 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2011, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. November 2007 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.util.Arrays; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java index bfe3f27f4..255bf60ee 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java index 1b52f3625..d70a52d73 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2016, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java index be5c2e587..9ce4cd9ad 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.dom4j.Branch; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java index d23230d81..aa9d9a32d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java index 781976dc2..c73ffe2de 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2016, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java index 60c2a85dd..32593d9c9 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 05. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.parsers.DocumentBuilder; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java index e8073aeef..c1b51f521 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. June 2012 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java index aaa77de1a..a9b72c1c8 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2015, 2016, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. June 2012 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java index a710e8f27..fef720a45 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 24. June 2012 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.jdom2.Element; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java index 31ebd7f99..74a4147a1 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java index 29c8fb787..7add0a899 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2016, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java index f42bfa058..dfad5b175 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 09. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import org.jdom.Element; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java index 75857aa8b..060e6f60f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2016, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. September 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java index fe64c1c1a..180628a58 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2008, 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java index 2b984b0a6..0f3b44ffa 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2018, 2020 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. August 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java index 32f20886e..cdf696806 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2015, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. September 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java index 89cbf5695..3c1126505 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2008, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. September 2011 by Joerg Schaible, renamed from SjsxpStaxWriterTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import junit.framework.Test; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java index cb9e15dfc..1fd0eda96 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2015, 2017, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. September 2015 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java index f10cd1851..80df6ad84 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. July 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java index fc83e92db..95ba14b68 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2016, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. September 2004 by James Strachan + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java index 52fab509e..a7e6dd8d7 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2015, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. September 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java index 5bb2c2290..3c126ca88 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2007, 2009, 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 29. September 2011 by Joerg Schaible, renamed from WoodstoxStaxWriterTest + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLOutputFactory; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java index 9f84e8240..c29146982 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 02. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java index 4b5ba1c53..5744d2594 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 03. September 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import nu.xom.Element; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java index fefeb0c51..5a472e28d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2011, 2015, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 30. September 2011 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java index 5ba37ce53..0304af67f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004, 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2009, 2011, 2015, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 07. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java index d412fb730..1be8b9fb7 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 19. October 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.xml.xppdom.XppDom; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java index c5f8d6baa..0d7013d11 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2004 Joe Walnes. - * Copyright (C) 2006, 2007, 2015, 2016, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 08. March 2004 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java index 2be4e4747..cfee2674f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java @@ -1,12 +1,17 @@ /* - * Copyright (C) 2011, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 11. August 2011 by Joerg Schaible. + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.thoughtworks.xstream.io.xml.xppdom; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java index b3d6fa428..867b91c32 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2013, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 23. January 2005 by Joe Walnes + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.core.ClassLoaderReference; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java index 7a1191e4f..5f5a46371 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 09. April 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java index 4c8f64df1..46b1abeff 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007, 2011, 2013, 2016 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 16. February 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.util.Map; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java index 5ce9b206f..ee12f8c2a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java @@ -1,9 +1,19 @@ /* - * Copyright (C) 2014, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * Created on 09. January 2014 by Joerg Schaible + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.mapper; import java.net.URL; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java index f8d79cd7e..3048b9f6b 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2008, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 21. November 2008 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java index 14380dbc0..becda9121 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 17. June 2006 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java index 15d95d2fc..a964a7b4a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2009, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 06. July 2006 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java index 5a93fc468..b4a417c78 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 13. June 2006 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java index 38b896561..20d934ed2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2006 Joe Walnes. - * Copyright (C) 2007, 2008, 2018 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 28. June 2006 by Guilherme Silveira + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.persistence; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java b/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java index 7e0cbfd27..af4e840db 100644 --- a/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java +++ b/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 02. February 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.testutil; import junit.framework.Assert; diff --git a/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java b/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java index 77e077efe..70fd29b5e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java +++ b/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java @@ -1,13 +1,19 @@ /* - * Copyright (C) 2006, 2007, 2009, 2010, 2018, 2019 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. * - * Created on 14. March 2006 by Joerg Schaible + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.testutil; import java.io.FilePermission; diff --git a/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java b/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java index 0e21c4eb0..27fa99773 100644 --- a/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java +++ b/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java @@ -1,14 +1,19 @@ /* - * Copyright (C) 2005 Joe Walnes. - * Copyright (C) 2006, 2007 XStream Committers. - * All rights reserved. + * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. * - * The software in this package is published under the terms of the BSD - * style license a copy of which has been included with this distribution in - * the LICENSE.txt file. - * - * Created on 15. January 2005 by Joe Walnes + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0, which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * This Source Code may also be made available under the following Secondary + * Licenses when the conditions for such availability set forth in the + * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, + * version 2 with the GNU Classpath Exception, which is available at + * https://www.gnu.org/software/classpath/license.html. + * + * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ + package com.thoughtworks.xstream.testutil; import java.util.TimeZone; From 068439b5c27efaecfc91dcc6674f898efb2fb2d2 Mon Sep 17 00:00:00 2001 From: Steve Davidson Date: Mon, 26 Oct 2020 09:46:56 -0500 Subject: [PATCH 3/4] Revert "Updating to JDK 11" This reverts commit 56236a0d94836ecac957eecf1d69cd39e4bf637b. "mvn -Dcopyright.update=true org.glassfish.copyright:glassfish-copyright-maven-plugin:repair" Copyright licenses were incorrectly modified by glassfish-copyright-maven-plugin Signed-off-by: Steve Davidson --- README.md | 16 +--------- pom.xml | 18 ------------ settings-template.xml | 28 +++++++----------- xstream-benchmark/pom.xml | 18 ------------ .../xstream/tools/benchmark/Harness.java | 21 +++++--------- .../xstream/tools/benchmark/Metric.java | 21 +++++--------- .../xstream/tools/benchmark/Product.java | 21 +++++--------- .../xstream/tools/benchmark/Reporter.java | 21 +++++--------- .../xstream/tools/benchmark/Target.java | 21 +++++--------- .../metrics/CharacterCountMetric.java | 20 +++++-------- .../metrics/DeserializationSpeedMetric.java | 21 +++++--------- .../metrics/SerializationSpeedMetric.java | 21 +++++--------- .../tools/benchmark/metrics/SizeMetric.java | 21 +++++--------- .../tools/benchmark/model/A100Fields.java | 20 +++++-------- .../tools/benchmark/model/A100Parents.java | 20 +++++-------- .../benchmark/model/A50InnerClasses.java | 20 +++++-------- .../model/A50StaticInnerClasses.java | 20 +++++-------- .../xstream/tools/benchmark/model/Five.java | 22 +++++--------- .../tools/benchmark/model/FiveBean.java | 22 +++++--------- .../xstream/tools/benchmark/model/One.java | 22 +++++--------- .../tools/benchmark/model/OneBean.java | 22 +++++--------- .../benchmark/model/SerializableFive.java | 22 +++++--------- .../benchmark/model/SerializableOne.java | 22 +++++--------- .../xstream/tools/benchmark/package.html | 27 +++++++---------- .../products/JavaObjectSerialization.java | 21 +++++--------- .../benchmark/products/XStreamBEAStax.java | 20 +++++-------- .../benchmark/products/XStreamBinary.java | 21 +++++--------- .../benchmark/products/XStreamCompact.java | 21 +++++--------- .../tools/benchmark/products/XStreamDom.java | 21 +++++--------- .../benchmark/products/XStreamDom4J.java | 20 +++++-------- .../benchmark/products/XStreamDriver.java | 18 ++++-------- .../tools/benchmark/products/XStreamJDom.java | 20 +++++-------- .../benchmark/products/XStreamKXml2.java | 20 +++++-------- .../benchmark/products/XStreamKXml2DOM.java | 20 +++++-------- .../benchmark/products/XStreamSjsxp.java | 20 +++++-------- .../tools/benchmark/products/XStreamStax.java | 21 +++++--------- .../benchmark/products/XStreamWoodstox.java | 20 +++++-------- .../tools/benchmark/products/XStreamXom.java | 20 +++++-------- .../tools/benchmark/products/XStreamXpp.java | 21 +++++--------- .../tools/benchmark/products/XStreamXpp3.java | 20 +++++-------- .../benchmark/products/XStreamXpp3DOM.java | 20 +++++-------- .../benchmark/reporters/HtmlReporter.java | 21 +++++--------- .../benchmark/reporters/MultiReporter.java | 20 +++++-------- .../benchmark/reporters/TextReporter.java | 21 +++++--------- .../tools/benchmark/targets/BasicTarget.java | 20 +++++-------- .../benchmark/targets/ExtendedTarget.java | 20 +++++-------- .../tools/benchmark/targets/JTreeTarget.java | 21 +++++--------- .../benchmark/targets/JavaBeanTarget.java | 20 +++++-------- .../tools/benchmark/targets/ListTarget.java | 21 +++++--------- .../tools/benchmark/targets/Person.java | 21 +++++--------- .../benchmark/targets/ReflectionTarget.java | 20 +++++-------- .../benchmark/targets/SerializableTarget.java | 20 +++++-------- .../tools/benchmark/targets/StringTarget.java | 21 +++++--------- .../targets/UserDefinedClassTarget.java | 21 +++++--------- xstream-distribution/pom.xml | 18 ------------ .../src/assembly/assembly-bin.xml | 29 +++++++------------ .../src/assembly/assembly-src.xml | 27 +++++++---------- .../src/content/CVE-2013-7285.html | 28 +++++++----------- .../src/content/CVE-2016-3674.html | 28 +++++++----------- .../src/content/CVE-2017-7957.html | 26 ++++++----------- .../src/content/alias-tutorial.html | 27 +++++++---------- .../src/content/annotations-tutorial.html | 27 +++++++---------- .../src/content/architecture.html | 29 +++++++------------ .../src/content/benchmarks.html | 28 +++++++----------- xstream-distribution/src/content/changes.html | 27 +++++++---------- .../src/content/converter-tutorial.html | 29 +++++++------------ .../src/content/converters.html | 29 +++++++------------ .../src/content/download.html | 27 +++++++---------- xstream-distribution/src/content/faq.html | 27 +++++++---------- xstream-distribution/src/content/graphs.html | 27 +++++++---------- .../src/content/how-to-contribute.html | 27 +++++++---------- xstream-distribution/src/content/index.html | 27 +++++++---------- xstream-distribution/src/content/issues.html | 26 ++++++----------- .../src/content/json-tutorial.html | 26 ++++++----------- xstream-distribution/src/content/license.html | 27 +++++++---------- .../src/content/mailing-lists.html | 27 +++++++---------- .../src/content/manual-tweaking-output.html | 29 +++++++------------ xstream-distribution/src/content/news.html | 27 +++++++---------- .../src/content/objectstream.html | 29 +++++++------------ .../src/content/persistence-tutorial.html | 27 +++++++---------- .../src/content/references.html | 26 ++++++----------- .../src/content/repository.html | 27 +++++++---------- .../src/content/security.html | 26 ++++++----------- xstream-distribution/src/content/team.html | 25 ++++++---------- .../src/content/tutorial.html | 27 +++++++---------- .../src/content/versioning.html | 29 +++++++------------ xstream-distribution/src/content/website.xml | 27 +++++++---------- xstream-distribution/src/resources/style.css | 26 +++++++---------- xstream-distribution/src/templates/skin.html | 27 +++++++---------- xstream-distribution/src/xsite/xsite.xml | 29 +++++++------------ xstream-hibernate/pom.xml | 28 +++++++----------- ...ibernatePersistentCollectionConverter.java | 18 ++++-------- .../HibernatePersistentMapConverter.java | 18 ++++-------- ...HibernatePersistentSortedMapConverter.java | 18 ++++-------- ...HibernatePersistentSortedSetConverter.java | 18 ++++-------- .../converter/HibernateProxyConverter.java | 18 ++++-------- .../hibernate/mapper/HibernateMapper.java | 18 ++++-------- .../xstream/hibernate/package.html | 28 +++++++----------- .../xstream/hibernate/util/Hibernate.java | 16 ++-------- .../AbstractHibernateAcceptanceTest.java | 18 ++++-------- ...rnateCollectionsTypeCompatibilityTest.java | 17 ++++------- .../hibernate/HibernateReferenceTest.java | 17 ++++------- .../hibernate/reference/BaseDomainObject.java | 19 +++++------- .../hibernate/reference/Department.hbm.xml | 20 +------------ .../hibernate/reference/Department.java | 18 ++++-------- .../hibernate/reference/Division.hbm.xml | 20 +------------ .../hibernate/reference/Division.java | 18 ++++-------- .../hibernate/reference/Person.hbm.xml | 20 +------------ .../hibernate/reference/Person.java | 20 +++++-------- .../hibernate/reference/Site.hbm.xml | 20 +------------ .../acceptance/hibernate/reference/Site.java | 18 ++++-------- xstream-hibernate/src/test/hibernate.cfg.xml | 18 ------------ xstream-its/pom.xml | 18 ------------ .../src/test-resources/project.properties | 16 ---------- .../test/com/thoughtworks/xstream/OSGiIT.java | 18 ++++-------- xstream-jmh/pom.xml | 18 ------------ .../src/application/bin/xstream-jmh.sh | 19 ++++-------- xstream-jmh/src/assembly-app.xml | 26 ++++++----------- .../benchmark/jmh/Base64Benchmark.java | 18 ++++-------- .../benchmark/jmh/ConverterTypeBenchmark.java | 18 ++++-------- .../benchmark/jmh/NameCoderBenchmark.java | 18 ++++-------- .../benchmark/jmh/ParserBenchmark.java | 18 ++++-------- .../jmh/StringConverterBenchmark.java | 18 ++++-------- xstream/pom.xml | 18 ------------ .../xstream/InitializationException.java | 20 +++++-------- .../xstream/MarshallingStrategy.java | 21 +++++--------- .../com/thoughtworks/xstream/XStream.java | 19 +++++------- .../xstream/XStreamException.java | 18 ++++-------- .../com/thoughtworks/xstream/XStreamer.java | 18 ++++-------- .../xstream/annotations/XStreamAlias.java | 21 +++++--------- .../xstream/annotations/XStreamAliasType.java | 16 ++-------- .../annotations/XStreamAsAttribute.java | 20 +++++-------- .../xstream/annotations/XStreamConverter.java | 21 +++++--------- .../annotations/XStreamConverters.java | 21 +++++--------- .../xstream/annotations/XStreamImplicit.java | 20 +++++-------- .../xstream/annotations/XStreamInclude.java | 20 +++++-------- .../xstream/annotations/XStreamOmitField.java | 20 +++++-------- .../converters/ConversionException.java | 19 +++++------- .../xstream/converters/Converter.java | 21 +++++--------- .../xstream/converters/ConverterLookup.java | 21 +++++--------- .../xstream/converters/ConverterMatcher.java | 20 +++++-------- .../xstream/converters/ConverterRegistry.java | 20 +++++-------- .../xstream/converters/DataHolder.java | 21 +++++--------- .../xstream/converters/ErrorReporter.java | 18 ++++-------- .../xstream/converters/ErrorWriter.java | 21 +++++--------- .../converters/ErrorWritingException.java | 19 +++++------- .../converters/MarshallingContext.java | 21 +++++--------- .../converters/SingleValueConverter.java | 22 +++++--------- .../SingleValueConverterWrapper.java | 20 +++++-------- .../converters/UnmarshallingContext.java | 21 +++++--------- .../basic/AbstractSingleValueConverter.java | 20 +++++-------- .../converters/basic/BigDecimalConverter.java | 21 +++++--------- .../converters/basic/BigIntegerConverter.java | 21 +++++--------- .../converters/basic/BooleanConverter.java | 21 +++++--------- .../converters/basic/ByteConverter.java | 21 +++++--------- .../converters/basic/CharConverter.java | 21 +++++--------- .../converters/basic/DateConverter.java | 19 +++++------- .../converters/basic/DoubleConverter.java | 21 +++++--------- .../converters/basic/FloatConverter.java | 21 +++++--------- .../converters/basic/IntConverter.java | 21 +++++--------- .../converters/basic/LongConverter.java | 21 +++++--------- .../converters/basic/NullConverter.java | 19 +++++------- .../converters/basic/ShortConverter.java | 21 +++++--------- .../basic/StringBufferConverter.java | 21 +++++--------- .../basic/StringBuilderConverter.java | 20 +++++-------- .../converters/basic/StringConverter.java | 21 +++++--------- .../converters/basic/URIConverter.java | 20 +++++-------- .../converters/basic/URLConverter.java | 21 +++++--------- .../converters/basic/UUIDConverter.java | 20 +++++-------- .../xstream/converters/basic/package.html | 29 +++++++------------ .../AbstractCollectionConverter.java | 19 +++++------- .../collections/ArrayConverter.java | 21 +++++--------- .../collections/BitSetConverter.java | 21 +++++--------- .../collections/CharArrayConverter.java | 21 +++++--------- .../collections/CollectionConverter.java | 21 +++++--------- .../converters/collections/MapConverter.java | 19 +++++------- .../collections/PropertiesConverter.java | 19 +++++------- .../SingletonCollectionConverter.java | 18 ++++-------- .../collections/SingletonMapConverter.java | 18 ++++-------- .../collections/TreeMapConverter.java | 19 +++++------- .../collections/TreeSetConverter.java | 19 +++++------- .../converters/collections/package.html | 27 +++++++---------- .../converters/enums/EnumConverter.java | 20 +++++-------- .../converters/enums/EnumMapConverter.java | 18 +++++------- .../converters/enums/EnumSetConverter.java | 18 +++++------- .../enums/EnumSingleValueConverter.java | 18 ++++-------- .../enums/EnumToStringConverter.java | 18 ++++-------- .../ActivationDataFlavorConverter.java | 18 ++++-------- .../converters/extended/CharsetConverter.java | 20 +++++-------- .../converters/extended/ColorConverter.java | 19 +++++------- .../extended/CurrencyConverter.java | 21 +++++--------- .../extended/DurationConverter.java | 20 +++++-------- .../extended/DynamicProxyConverter.java | 19 +++++------- .../extended/EncodedByteArrayConverter.java | 19 +++++------- .../converters/extended/FileConverter.java | 21 +++++--------- .../converters/extended/FontConverter.java | 19 +++++------- .../extended/GregorianCalendarConverter.java | 19 +++++------- .../extended/ISO8601DateConverter.java | 21 +++++--------- .../ISO8601GregorianCalendarConverter.java | 19 +++++------- .../ISO8601SqlTimestampConverter.java | 21 +++++--------- .../extended/JavaClassConverter.java | 21 +++++--------- .../extended/JavaFieldConverter.java | 20 +++++-------- .../extended/JavaMethodConverter.java | 21 +++++--------- .../converters/extended/LocaleConverter.java | 21 +++++--------- .../extended/LookAndFeelConverter.java | 20 +++++-------- .../extended/NamedArrayConverter.java | 18 ++++-------- .../extended/NamedCollectionConverter.java | 18 ++++-------- .../extended/NamedMapConverter.java | 18 ++++-------- .../converters/extended/PathConverter.java | 18 ++++-------- .../PropertyEditorCapableConverter.java | 20 +++++-------- .../extended/RegexPatternConverter.java | 21 +++++--------- .../converters/extended/SqlDateConverter.java | 21 +++++--------- .../converters/extended/SqlTimeConverter.java | 21 +++++--------- .../extended/SqlTimestampConverter.java | 19 +++++------- .../extended/StackTraceElementConverter.java | 19 +++++------- .../extended/StackTraceElementFactory.java | 21 +++++--------- .../converters/extended/SubjectConverter.java | 20 +++++-------- .../extended/TextAttributeConverter.java | 20 +++++-------- .../extended/ThrowableConverter.java | 19 +++++------- .../extended/ToAttributedValueConverter.java | 19 +++++------- .../extended/ToStringConverter.java | 18 ++++-------- .../extended/UseAttributeForEnumMapper.java | 20 +++++-------- .../xstream/converters/extended/package.html | 27 +++++++---------- .../converters/javabean/BeanProperty.java | 21 +++++--------- .../converters/javabean/BeanProvider.java | 19 +++++------- .../javabean/ComparingPropertySorter.java | 20 +++++-------- .../javabean/JavaBeanConverter.java | 19 +++++------- .../converters/javabean/JavaBeanProvider.java | 20 +++++-------- .../javabean/NativePropertySorter.java | 20 +++++-------- .../javabean/PropertyDictionary.java | 19 +++++------- .../converters/javabean/PropertySorter.java | 20 +++++-------- ...edCharacterIteratorAttributeConverter.java | 18 ++++-------- .../AbstractReflectionConverter.java | 19 +++++------- .../reflection/CGLIBEnhancedConverter.java | 18 ++++-------- .../reflection/ExternalizableConverter.java | 19 +++++------- .../reflection/FieldDictionary.java | 19 +++++------- .../converters/reflection/FieldKey.java | 20 +++++-------- .../converters/reflection/FieldKeySorter.java | 20 +++++-------- .../reflection/ImmutableFieldKeySorter.java | 20 +++++-------- .../reflection/LambdaConverter.java | 16 ++-------- .../reflection/MissingFieldException.java | 18 ++++-------- .../reflection/NativeFieldKeySorter.java | 20 +++++-------- .../reflection/ObjectAccessException.java | 19 +++++------- .../PureJavaReflectionProvider.java | 21 +++++--------- .../reflection/ReflectionConverter.java | 21 +++++--------- .../reflection/ReflectionProvider.java | 21 +++++--------- .../reflection/ReflectionProviderWrapper.java | 20 +++++-------- .../SelfStreamingInstanceChecker.java | 20 +++++-------- .../reflection/SerializableConverter.java | 19 +++++------- .../SerializationMethodInvoker.java | 19 +++++------- .../reflection/SortableFieldKeySorter.java | 18 ++++-------- .../reflection/Sun14ReflectionProvider.java | 21 +++++--------- .../SunLimitedUnsafeReflectionProvider.java | 17 +++-------- .../SunUnsafeReflectionProvider.java | 19 +++++------- .../reflection/XStream12FieldKeySorter.java | 20 +++++-------- .../AbstractChronoLocalDateConverter.java | 18 ++++-------- .../converters/time/ChronologyConverter.java | 18 ++++-------- .../converters/time/DurationConverter.java | 18 ++++-------- .../converters/time/HijrahDateConverter.java | 18 ++++-------- .../converters/time/InstantConverter.java | 18 ++++-------- .../time/JapaneseDateConverter.java | 18 ++++-------- .../converters/time/JapaneseEraConverter.java | 18 ++++-------- .../converters/time/LocalDateConverter.java | 18 ++++-------- .../time/LocalDateTimeConverter.java | 18 ++++-------- .../converters/time/LocalTimeConverter.java | 18 ++++-------- .../converters/time/MinguoDateConverter.java | 18 ++++-------- .../converters/time/MonthDayConverter.java | 18 ++++-------- .../time/OffsetDateTimeConverter.java | 18 ++++-------- .../converters/time/OffsetTimeConverter.java | 18 ++++-------- .../converters/time/PeriodConverter.java | 18 ++++-------- .../converters/time/SystemClockConverter.java | 18 ++++-------- .../time/ThaiBuddhistDateConverter.java | 18 ++++-------- .../converters/time/ValueRangeConverter.java | 18 ++++-------- .../converters/time/WeekFieldsConverter.java | 18 ++++-------- .../converters/time/YearConverter.java | 18 ++++-------- .../converters/time/YearMonthConverter.java | 18 ++++-------- .../converters/time/ZoneIdConverter.java | 18 ++++-------- .../time/ZonedDateTimeConverter.java | 18 ++++-------- .../xstream/converters/time/package.html | 26 ++++++----------- .../core/AbstractReferenceMarshaller.java | 20 +++++-------- .../core/AbstractReferenceUnmarshaller.java | 18 ++++-------- .../core/AbstractTreeMarshallingStrategy.java | 20 +++++-------- .../xstream/core/Base64Codec.java | 18 ++++-------- .../thoughtworks/xstream/core/Caching.java | 20 +++++-------- .../xstream/core/ClassLoaderReference.java | 20 +++++-------- .../xstream/core/DefaultConverterLookup.java | 19 +++++------- .../com/thoughtworks/xstream/core/JVM.java | 19 +++++------- .../xstream/core/MapBackedDataHolder.java | 21 +++++--------- .../xstream/core/ReferenceByIdMarshaller.java | 21 +++++--------- .../ReferenceByIdMarshallingStrategy.java | 21 +++++--------- .../core/ReferenceByIdUnmarshaller.java | 21 +++++--------- .../core/ReferenceByXPathMarshaller.java | 21 +++++--------- .../ReferenceByXPathMarshallingStrategy.java | 21 +++++--------- .../core/ReferenceByXPathUnmarshaller.java | 21 +++++--------- .../core/ReferencingMarshallingContext.java | 18 ++++-------- .../xstream/core/SequenceGenerator.java | 21 +++++--------- .../xstream/core/StringCodec.java | 20 +++++-------- .../xstream/core/TreeMarshaller.java | 20 +++++-------- .../xstream/core/TreeMarshallingStrategy.java | 21 +++++--------- .../xstream/core/TreeUnmarshaller.java | 21 +++++--------- .../xstream/core/util/ArrayIterator.java | 18 ++++-------- .../xstream/core/util/Base64Encoder.java | 19 +++++------- .../xstream/core/util/Base64JAXBCodec.java | 18 ++++-------- .../core/util/Base64JavaUtilCodec.java | 18 ++++-------- .../core/util/ClassLoaderReference.java | 21 +++++--------- .../xstream/core/util/Cloneables.java | 18 ++++-------- .../core/util/CompositeClassLoader.java | 19 +++++------- .../core/util/CustomObjectInputStream.java | 19 +++++------- .../core/util/CustomObjectOutputStream.java | 19 +++++------- .../xstream/core/util/DefaultDriver.java | 18 ++++-------- .../core/util/DependencyInjectionFactory.java | 18 ++++-------- .../xstream/core/util/FastField.java | 20 +++++-------- .../xstream/core/util/FastStack.java | 21 +++++--------- .../xstream/core/util/Fields.java | 19 +++++------- .../core/util/HierarchicalStreams.java | 20 +++++-------- .../core/util/ISO8601JavaTimeConverter.java | 18 ++++-------- .../core/util/ISO8601JodaTimeConverter.java | 19 +++++------- .../xstream/core/util/ListWrappingQueue.java | 20 +++++-------- .../xstream/core/util/ObjectIdDictionary.java | 19 +++++------- .../xstream/core/util/OrderRetainingMap.java | 19 +++++------- .../thoughtworks/xstream/core/util/Pool.java | 20 +++++-------- .../xstream/core/util/PresortedMap.java | 16 ++-------- .../xstream/core/util/PresortedSet.java | 16 ++-------- .../xstream/core/util/Primitives.java | 20 +++++-------- .../xstream/core/util/PrioritizedList.java | 21 +++++--------- .../xstream/core/util/QuickWriter.java | 21 +++++--------- .../util/SelfStreamingInstanceChecker.java | 21 +++++--------- .../core/util/SerializationMembers.java | 19 +++++------- .../core/util/ThreadSafePropertyEditor.java | 18 ++++-------- .../core/util/ThreadSafeSimpleDateFormat.java | 21 +++++--------- .../xstream/core/util/TypedNull.java | 20 +++++-------- .../thoughtworks/xstream/core/util/Types.java | 16 ++-------- .../xstream/core/util/WeakCache.java | 20 +++++-------- .../core/util/XmlHeaderAwareReader.java | 19 +++++------- .../xstream/io/AbstractDriver.java | 20 +++++-------- .../xstream/io/AbstractReader.java | 18 ++++-------- .../xstream/io/AbstractWriter.java | 20 +++++-------- .../xstream/io/AttributeNameIterator.java | 21 +++++--------- .../io/ExtendedHierarchicalStreamReader.java | 18 ++++-------- .../io/ExtendedHierarchicalStreamWriter.java | 21 +++++--------- ...xtendedHierarchicalStreamWriterHelper.java | 21 +++++--------- .../xstream/io/HierarchicalStreamDriver.java | 21 +++++--------- .../xstream/io/HierarchicalStreamReader.java | 19 +++++------- .../xstream/io/HierarchicalStreamWriter.java | 19 +++++------- .../xstream/io/ReaderWrapper.java | 21 +++++--------- .../xstream/io/StatefulWriter.java | 21 +++++--------- .../xstream/io/StreamException.java | 21 +++++--------- .../xstream/io/WriterWrapper.java | 21 +++++--------- .../xstream/io/binary/BinaryStreamDriver.java | 18 ++++-------- .../xstream/io/binary/BinaryStreamReader.java | 21 +++++--------- .../xstream/io/binary/BinaryStreamWriter.java | 21 +++++--------- .../xstream/io/binary/ReaderDepthState.java | 21 +++++--------- .../thoughtworks/xstream/io/binary/Token.java | 21 +++++--------- .../io/copy/HierarchicalStreamCopier.java | 21 +++++--------- .../xstream/io/json/AbstractJsonWriter.java | 18 ++++-------- .../io/json/JettisonMappedXmlDriver.java | 18 ++++-------- .../xstream/io/json/JettisonStaxWriter.java | 18 ++++-------- .../io/json/JsonHierarchicalStreamDriver.java | 21 +++++--------- .../io/json/JsonHierarchicalStreamWriter.java | 21 +++++--------- .../xstream/io/json/JsonWriter.java | 21 +++++--------- .../xstream/io/naming/NameCoder.java | 18 ++++-------- .../xstream/io/naming/NameCoderWrapper.java | 18 ++++-------- .../xstream/io/naming/NoNameCoder.java | 18 ++++-------- .../xstream/io/naming/StaticNameCoder.java | 18 ++++-------- .../thoughtworks/xstream/io/path/Path.java | 21 +++++--------- .../xstream/io/path/PathTracker.java | 21 +++++--------- .../xstream/io/path/PathTrackingReader.java | 21 +++++--------- .../xstream/io/path/PathTrackingWriter.java | 21 +++++--------- .../thoughtworks/xstream/io/path/package.html | 27 +++++++---------- .../io/xml/AbstractDocumentReader.java | 19 +++++------- .../io/xml/AbstractDocumentWriter.java | 18 ++++-------- .../xstream/io/xml/AbstractPullReader.java | 19 +++++------- .../xstream/io/xml/AbstractXmlDriver.java | 21 +++++--------- .../xstream/io/xml/AbstractXmlReader.java | 21 +++++--------- .../xstream/io/xml/AbstractXmlWriter.java | 21 +++++--------- .../xstream/io/xml/AbstractXppDomDriver.java | 20 +++++-------- .../xstream/io/xml/AbstractXppDriver.java | 20 +++++-------- .../xstream/io/xml/BEAStaxDriver.java | 18 ++++-------- .../xstream/io/xml/CompactWriter.java | 21 +++++--------- .../xstream/io/xml/DocumentReader.java | 20 +++++-------- .../xstream/io/xml/DocumentWriter.java | 20 +++++-------- .../xstream/io/xml/Dom4JDriver.java | 21 +++++--------- .../xstream/io/xml/Dom4JReader.java | 21 +++++--------- .../xstream/io/xml/Dom4JWriter.java | 21 +++++--------- .../xstream/io/xml/Dom4JXmlWriter.java | 19 +++++------- .../xstream/io/xml/DomDriver.java | 19 +++++------- .../xstream/io/xml/DomReader.java | 21 +++++--------- .../xstream/io/xml/DomWriter.java | 21 +++++--------- .../xstream/io/xml/JDom2Driver.java | 20 +++++-------- .../xstream/io/xml/JDom2Reader.java | 20 +++++-------- .../xstream/io/xml/JDom2Writer.java | 20 +++++-------- .../xstream/io/xml/JDomDriver.java | 21 +++++--------- .../xstream/io/xml/JDomReader.java | 21 +++++--------- .../xstream/io/xml/JDomWriter.java | 21 +++++--------- .../xstream/io/xml/KXml2DomDriver.java | 20 +++++-------- .../xstream/io/xml/KXml2Driver.java | 20 +++++-------- .../xstream/io/xml/PrettyPrintWriter.java | 21 +++++--------- .../thoughtworks/xstream/io/xml/QNameMap.java | 21 +++++--------- .../xstream/io/xml/SaxWriter.java | 19 +++++------- .../xstream/io/xml/SimpleStaxDriver.java | 18 ++++-------- .../xstream/io/xml/SjsxpDriver.java | 20 +++++-------- .../xstream/io/xml/StandardStaxDriver.java | 18 ++++-------- .../xstream/io/xml/StaxDriver.java | 19 +++++------- .../xstream/io/xml/StaxReader.java | 21 +++++--------- .../xstream/io/xml/StaxWriter.java | 21 +++++--------- .../xstream/io/xml/TraxSource.java | 19 +++++------- .../xstream/io/xml/WstxDriver.java | 20 +++++-------- .../xstream/io/xml/XStream11NameCoder.java | 18 ++++-------- .../io/xml/XStream11XmlFriendlyReplacer.java | 21 +++++--------- .../xstream/io/xml/XmlFriendlyNameCoder.java | 19 +++++------- .../xstream/io/xml/XmlFriendlyReader.java | 20 +++++-------- .../xstream/io/xml/XmlFriendlyReplacer.java | 21 +++++--------- .../xstream/io/xml/XmlFriendlyWriter.java | 20 +++++-------- .../xstream/io/xml/XomDriver.java | 19 +++++------- .../xstream/io/xml/XomReader.java | 21 +++++--------- .../xstream/io/xml/XomWriter.java | 21 +++++--------- .../xstream/io/xml/Xpp3DomDriver.java | 20 +++++-------- .../xstream/io/xml/Xpp3Driver.java | 20 +++++-------- .../xstream/io/xml/XppDomDriver.java | 21 +++++--------- .../xstream/io/xml/XppDomReader.java | 21 +++++--------- .../xstream/io/xml/XppDomWriter.java | 21 +++++--------- .../xstream/io/xml/XppDriver.java | 19 +++++------- .../xstream/io/xml/XppReader.java | 21 +++++--------- .../xstream/io/xml/xppdom/Xpp3Dom.java | 21 +++++--------- .../xstream/io/xml/xppdom/Xpp3DomBuilder.java | 21 +++++--------- .../xstream/io/xml/xppdom/XppDom.java | 20 +++++-------- .../io/xml/xppdom/XppDomComparator.java | 20 +++++-------- .../xstream/io/xml/xppdom/XppFactory.java | 20 +++++-------- .../AbstractAttributeAliasingMapper.java | 18 ++++-------- .../mapper/AbstractXmlFriendlyMapper.java | 21 +++++--------- .../mapper/AnnotationConfiguration.java | 20 +++++-------- .../xstream/mapper/AnnotationMapper.java | 18 ++++-------- .../xstream/mapper/ArrayMapper.java | 21 +++++--------- .../mapper/AttributeAliasingMapper.java | 21 +++++--------- .../xstream/mapper/AttributeMapper.java | 21 +++++--------- .../xstream/mapper/CGLIBMapper.java | 20 +++++-------- .../xstream/mapper/CachingMapper.java | 19 +++++------- .../mapper/CannotResolveClassException.java | 19 +++++------- .../xstream/mapper/ClassAliasingMapper.java | 19 +++++------- .../mapper/DefaultImplementationsMapper.java | 21 +++++--------- .../xstream/mapper/DefaultMapper.java | 19 +++++------- .../xstream/mapper/DynamicProxyMapper.java | 21 +++++--------- .../xstream/mapper/ElementIgnoringMapper.java | 18 ++++-------- .../xstream/mapper/EnumMapper.java | 19 +++++------- .../xstream/mapper/FieldAliasingMapper.java | 19 +++++------- .../xstream/mapper/ImmutableTypesMapper.java | 19 +++++------- .../mapper/ImplicitCollectionMapper.java | 19 +++++------- .../xstream/mapper/LambdaMapper.java | 16 ++-------- .../xstream/mapper/LocalConversionMapper.java | 20 +++++-------- .../thoughtworks/xstream/mapper/Mapper.java | 19 +++++------- .../xstream/mapper/MapperWrapper.java | 19 +++++------- .../xstream/mapper/OuterClassMapper.java | 19 +++++------- .../xstream/mapper/PackageAliasingMapper.java | 20 +++++-------- .../xstream/mapper/SecurityMapper.java | 16 ++-------- .../mapper/SystemAttributeAliasingMapper.java | 18 ++++-------- .../mapper/XStream11XmlFriendlyMapper.java | 21 +++++--------- .../AbstractFilePersistenceStrategy.java | 18 ++++-------- .../persistence/FilePersistenceStrategy.java | 18 ++++-------- .../persistence/FileStreamStrategy.java | 21 +++++--------- .../persistence/PersistenceStrategy.java | 20 +++++-------- .../xstream/persistence/StreamStrategy.java | 21 +++++--------- .../xstream/persistence/XmlArrayList.java | 21 +++++--------- .../xstream/persistence/XmlMap.java | 21 +++++--------- .../xstream/persistence/XmlSet.java | 21 +++++--------- .../xstream/security/AnyTypePermission.java | 16 ++-------- .../xstream/security/ArrayTypePermission.java | 16 ++-------- .../security/CGLIBProxyTypePermission.java | 16 ++-------- .../security/ExplicitTypePermission.java | 16 ++-------- .../security/ForbiddenClassException.java | 16 ++-------- .../security/InterfaceTypePermission.java | 16 ++-------- .../xstream/security/NoPermission.java | 16 ++-------- .../xstream/security/NoTypePermission.java | 16 ++-------- .../xstream/security/NullPermission.java | 16 ++-------- .../security/PrimitiveTypePermission.java | 16 ++-------- .../xstream/security/ProxyTypePermission.java | 16 ++-------- .../security/RegExpTypePermission.java | 16 ++-------- .../security/TypeHierarchyPermission.java | 16 ++-------- .../xstream/security/TypePermission.java | 16 ++-------- .../security/WildcardTypePermission.java | 16 ++-------- xstream/src/test/$Package.java | 15 ++-------- .../AbsoluteSingleNodeXPathReferenceTest.java | 20 +++++-------- .../AbsoluteXPathReferenceTest.java | 20 +++++-------- .../acceptance/AbstractAcceptanceTest.java | 19 +++++------- .../acceptance/AbstractReferenceTest.java | 21 ++++++-------- .../thoughtworks/acceptance/AliasTest.java | 19 +++++------- .../thoughtworks/acceptance/ArraysTest.java | 21 +++++--------- .../acceptance/AttributeTest.java | 19 +++++------- .../acceptance/BasicTypesTest.java | 19 +++++------- .../BeanIDCircularReferenceTest.java | 18 ++++-------- .../acceptance/BooleanFieldsTest.java | 18 ++++-------- .../acceptance/BufferedImagesTest.java | 18 ++++-------- .../acceptance/CglibCompatibilityTest.java | 18 ++++-------- .../acceptance/ClassLoaderTest.java | 19 +++++------- .../acceptance/CollectionsTest.java | 19 +++++------- .../acceptance/ConcreteClassesTest.java | 19 +++++------- .../acceptance/ConcurrencyTest.java | 18 ++++-------- .../acceptance/ConcurrentTypesTest.java | 18 ++++-------- .../acceptance/CustomClassesTest.java | 19 +++++------- .../acceptance/CustomConverterTest.java | 18 ++++-------- .../acceptance/CustomFieldKeySorterTest.java | 18 ++++-------- .../acceptance/CustomMapperTest.java | 19 +++++------- .../acceptance/CustomSerializationTest.java | 19 +++++------- .../acceptance/DataHolderTest.java | 19 +++++------- .../acceptance/DefaultImplementationTest.java | 19 +++++------- .../acceptance/DynamicProxyTest.java | 19 +++++------- .../acceptance/EncodingTestSuite.java | 19 +++++------- .../thoughtworks/acceptance/ErrorTest.java | 19 +++++------- .../acceptance/ExtendedTypesTest.java | 19 +++++------- .../acceptance/ExternalizableTest.java | 19 +++++------- .../acceptance/FinalFieldsTest.java | 19 +++++------- .../acceptance/IDReferenceTest.java | 21 ++++++-------- .../acceptance/ImplicitArrayTest.java | 18 ++++-------- .../acceptance/ImplicitCollectionTest.java | 19 +++++------- .../acceptance/ImplicitMapTest.java | 18 ++++-------- .../thoughtworks/acceptance/ImplicitTest.java | 18 ++++-------- .../acceptance/InheritanceTest.java | 19 +++++------- .../acceptance/InnerClassesTest.java | 19 +++++------- .../acceptance/JodaTimeTypesTest.java | 18 ++++-------- .../thoughtworks/acceptance/LambdaTest.java | 18 ++++-------- .../acceptance/LocalConverterTest.java | 18 ++++-------- .../com/thoughtworks/acceptance/MapTest.java | 19 +++++------- .../MultipleObjectsInOneStreamTest.java | 19 +++++------- .../acceptance/NamedLocalElementsTest.java | 18 ++++-------- .../acceptance/OmitFieldsTest.java | 19 +++++------- .../acceptance/PersistenceTest.java | 18 ++++-------- .../QNameMappedConcreteClassesTest.java | 19 +++++------- .../acceptance/ReadResolveTest.java | 19 +++++------- .../acceptance/ReflectionClassesTest.java | 19 +++++------- .../RelativeSingleNodeXPathReferenceTest.java | 21 ++++++-------- .../RelativeXPathReferenceTest.java | 21 ++++++-------- .../acceptance/SecurityManagerTest.java | 18 ++++-------- .../acceptance/SecurityVulnerabilityTest.java | 18 ++++-------- .../SerializationCallbackOrderTest.java | 19 +++++------- .../SerializationNestedWriteObjectsTest.java | 18 ++++-------- .../acceptance/SortableFieldListTest.java | 18 ++++-------- .../thoughtworks/acceptance/SwingTest.java | 19 +++++------- .../acceptance/Time18TypesTest.java | 18 ++++-------- .../acceptance/TreeMapAndTreeSetTest.java | 19 +++++------- .../acceptance/WriteReplaceTest.java | 19 +++++------- .../acceptance/XStream11XmlFriendlyTest.java | 19 +++++------- .../XStream12CompatibilityTest.java | 18 ++++-------- .../XStream13CompatibilityTest.java | 18 ++++-------- .../com/thoughtworks/acceptance/XStreamer.xsl | 22 +++++--------- .../acceptance/XStreamerTest.java | 19 +++++------- .../acceptance/XmlFriendlyDollarOnlyTest.java | 18 ++++-------- .../acceptance/XmlFriendlyTest.java | 19 +++++------- .../acceptance/annotations/AliasTest.java | 18 ++++-------- .../annotations/AnnotationsTest.java | 19 +++++------- .../annotations/AttributesTest.java | 18 ++++-------- .../annotations/FieldConverterTest.java | 19 +++++------- .../annotations/ImplicitArrayTest.java | 20 +++++-------- .../annotations/ImplicitCollectionTest.java | 18 ++++-------- .../annotations/ImplicitMapTest.java | 18 ++++-------- .../acceptance/annotations/OmitFieldTest.java | 20 +++++-------- .../ParametrizedConverterTest.java | 18 ++++-------- .../acceptance/objects/Category.java | 18 ++++-------- .../acceptance/objects/Hardware.java | 19 +++++------- .../objects/OpenSourceSoftware.java | 19 +++++------- .../acceptance/objects/Original.java | 17 ++++------- .../objects/OwnerOfExternalizable.java | 21 +++++--------- .../acceptance/objects/Product.java | 18 ++++-------- .../acceptance/objects/Replaced.java | 19 +++++------- .../objects/SampleDynamicProxy.java | 19 +++++------- .../acceptance/objects/SampleLists.java | 21 +++++--------- .../acceptance/objects/SampleMaps.java | 18 ++++-------- .../acceptance/objects/Software.java | 19 +++++------- .../objects/SomethingExternalizable.java | 19 +++++------- .../acceptance/objects/StandardObject.java | 19 +++++------- .../acceptance/objects/StatusEnum.java | 19 +++++------- .../someobjects/FunnyConstructor.java | 19 +++++------- .../acceptance/someobjects/Handler.java | 21 +++++--------- .../someobjects/HandlerManager.java | 21 +++++--------- .../acceptance/someobjects/Protocol.java | 21 +++++--------- .../acceptance/someobjects/U.java | 19 +++++------- .../acceptance/someobjects/WithList.java | 19 +++++------- .../acceptance/someobjects/WithNamedList.java | 18 ++++-------- .../acceptance/someobjects/X.java | 21 +++++--------- .../acceptance/someobjects/Y.java | 21 +++++--------- .../acceptance/someobjects/Z.java | 21 +++++--------- .../com/thoughtworks/xstream/XStreamTest.java | 19 +++++------- .../converters/ConversionExceptionTest.java | 20 +++++-------- .../converters/basic/DateConverterTest.java | 19 +++++------- .../converters/basic/StringConverterTest.java | 17 ++++------- .../converters/basic/URIConverterTest.java | 18 ++++-------- .../converters/basic/URLConverterTest.java | 21 +++++--------- .../collections/BitSetConverterTest.java | 21 +++++--------- .../collections/ByteArrayConverterTest.java | 19 +++++------- .../collections/CharArrayConverterTest.java | 21 +++++--------- .../collections/PropertiesConverterTest.java | 19 +++++------- .../xstream/converters/enums/BigEnum.java | 21 +++++--------- .../converters/enums/EnumConverterTest.java | 19 +++++------- .../enums/EnumCustomConverterTest.java | 18 ++++-------- .../enums/EnumMapConverterTest.java | 19 +++++------- .../converters/enums/EnumMapperTest.java | 18 ++++-------- .../enums/EnumSetConverterTest.java | 19 +++++------- .../enums/EnumToStringConverterTest.java | 18 ++++-------- .../xstream/converters/enums/Fruit.java | 18 ++++-------- .../converters/enums/PolymorphicEnum.java | 19 +++++------- .../xstream/converters/enums/SimpleEnum.java | 21 +++++--------- .../ActivationDataFlavorConverterTest.java | 18 ++++-------- .../extended/CharsetConverterTest.java | 21 +++++--------- .../extended/DurationConverterTest.java | 20 +++++-------- .../EncodedByteArrayConverterTest.java | 19 +++++------- .../extended/FontConverterTest.java | 19 +++++------- .../GregorianCalendarConverterTest.java | 21 +++++--------- .../extended/ISO8601DateConverterTest.java | 19 +++++------- ...ISO8601GregorianCalendarConverterTest.java | 19 +++++------- .../ISO8601SqlTimestampConverterTest.java | 19 +++++------- .../extended/JavaClassConverterTest.java | 19 +++++------- .../extended/JavaMethodConverterTest.java | 19 +++++------- .../PropertyEditorCapableConverterTest.java | 18 ++++-------- .../extended/RegexPatternConverterTest.java | 19 +++++------- .../StackTraceElementConverter9Test.java | 18 ++++-------- .../StackTraceElementConverterTest.java | 19 +++++------- .../extended/ThrowableConverterTest.java | 19 +++++------- .../ToAttributedValueConverterTest.java | 17 ++++------- .../extended/ToStringConverterTest.java | 19 +++++------- .../javabean/JavaBeanConverterTest.java | 19 +++++------- .../javabean/PropertyDictionaryTest.java | 19 +++++------- .../AbstractReflectionProviderTest.java | 19 +++++------- .../reflection/FieldDictionaryTest.java | 19 +++++------- .../reflection/NativeFieldKeySorterTest.java | 18 ++++-------- .../PureJavaReflectionProviderTest.java | 19 +++++------- .../reflection/ReflectionConverterTest.java | 19 +++++------- .../reflection/SerializableConverterTest.java | 18 ++++-------- .../SortableFieldKeySorterTest.java | 18 ++++-------- ...unLimitedUnsafeReflectionProviderTest.java | 17 +++-------- .../SunUnsafeReflectionProviderTest.java | 19 +++++------- .../xstream/core/Base64CodecTest.java | 18 ++++-------- .../core/DefaultConverterLookupTest.java | 21 +++++--------- .../thoughtworks/xstream/core/JVMTest.java | 21 +++++--------- .../ReferenceByIDMarshallingStrategyTest.java | 18 ++++-------- ...ferenceByXPathMarshallingStrategyTest.java | 19 +++++------- .../xstream/core/TreeMarshallerTest.java | 19 +++++------- .../xstream/core/TreeUnmarshallerTest.java | 19 +++++------- .../xstream/core/util/Base64EncoderTest.java | 19 +++++------- .../core/util/Base64JAXBCodecTest.java | 18 ++++-------- .../xstream/core/util/CloneablesTest.java | 18 ++++-------- .../util/DependencyInjectionFactoryTest.java | 18 ++++-------- .../xstream/core/util/FastStackTest.java | 19 +++++------- .../core/util/ObjectIdDictionaryTest.java | 19 +++++------- .../core/util/OrderRetainingMapTest.java | 19 +++++------- .../core/util/PrioritizedListTest.java | 19 +++++------- .../xstream/core/util/QuickWriterTest.java | 18 ++++-------- .../util/ThreadSafeSimpleDateFormatTest.java | 20 +++++-------- .../xstream/core/util/WeakCacheTest.java | 18 ++++-------- .../core/util/XmlHeaderAwareReaderTest.java | 18 ++++-------- .../xstream/io/DriverEndToEndTestSuite.java | 19 +++++------- .../xstream/io/StatefulWriterTest.java | 18 ++++-------- .../xstream/io/binary/BinaryStreamTest.java | 19 +++++------- .../xstream/io/binary/TokenTest.java | 19 +++++------- .../io/copy/HierarchicalStreamCopierTest.java | 19 +++++------- .../io/json/JettisonMappedXmlDriverTest.java | 18 ++++-------- .../JsonHierarchicalStreamDriverTest.java | 19 +++++------- .../xstream/io/json/JsonWriterFormatTest.java | 18 ++++-------- .../json/JsonWriterModeDroppingRootTest.java | 18 ++++-------- .../xstream/io/json/JsonWriterModeTest.java | 18 ++++-------- .../io/naming/StaticNameCoderTest.java | 18 ++++-------- .../xstream/io/path/PathTest.java | 19 +++++------- .../xstream/io/path/PathTrackerTest.java | 19 +++++------- .../io/path/PathTrackingReaderTest.java | 19 +++++------- .../io/path/PathTrackingWriterTest.java | 19 +++++------- .../io/xml/AbstractDocumentWriterTest.java | 18 ++++-------- .../xstream/io/xml/AbstractReaderTest.java | 19 +++++------- .../io/xml/AbstractStaxReaderTest.java | 18 ++++-------- .../io/xml/AbstractStaxWriterTest.java | 18 ++++-------- .../xstream/io/xml/AbstractXMLReaderTest.java | 19 +++++------- .../xstream/io/xml/AbstractXMLWriterTest.java | 19 +++++------- .../xstream/io/xml/BEAStaxReaderTest.java | 18 ++++-------- .../xstream/io/xml/BEAStaxWriterTest.java | 18 ++++-------- .../xstream/io/xml/CompactWriterTest.java | 19 +++++------- .../xstream/io/xml/Dom4JReaderTest.java | 19 +++++------- .../xstream/io/xml/Dom4JWriterTest.java | 19 +++++------- .../xstream/io/xml/Dom4JXmlWriterTest.java | 19 +++++------- .../xstream/io/xml/DomReaderTest.java | 19 +++++------- .../xstream/io/xml/DomWriterTest.java | 19 +++++------- .../xstream/io/xml/JDom2AcceptanceTest.java | 18 ++++-------- .../xstream/io/xml/JDom2ReaderTest.java | 18 ++++-------- .../xstream/io/xml/JDom2WriterTest.java | 18 ++++-------- .../xstream/io/xml/JDomAcceptanceTest.java | 19 +++++------- .../xstream/io/xml/JDomReaderTest.java | 19 +++++------- .../xstream/io/xml/JDomWriterTest.java | 19 +++++------- .../xstream/io/xml/KXml2ReaderTest.java | 18 ++++-------- .../xstream/io/xml/PrettyPrintWriterTest.java | 19 +++++------- .../xstream/io/xml/SaxWriterTest.java | 19 +++++------- .../xstream/io/xml/SjsxpReaderTest.java | 18 ++++-------- .../xstream/io/xml/SjsxpWriterTest.java | 18 ++++-------- .../io/xml/StandardStaxReaderTest.java | 18 ++++-------- .../xstream/io/xml/StaxDriverTest.java | 18 ++++-------- .../xstream/io/xml/StaxReaderTest.java | 19 +++++------- .../xstream/io/xml/WstxReaderTest.java | 18 ++++-------- .../xstream/io/xml/WstxWriterTest.java | 18 ++++-------- .../xstream/io/xml/XomReaderTest.java | 19 +++++------- .../xstream/io/xml/XomWriterTest.java | 19 +++++------- .../xstream/io/xml/Xpp3ReaderTest.java | 18 ++++-------- .../xstream/io/xml/XppDomReaderTest.java | 19 +++++------- .../xstream/io/xml/XppDomWriterTest.java | 18 ++++-------- .../xstream/io/xml/XppReaderTest.java | 19 +++++------- .../io/xml/xppdom/XppDomComparatorTest.java | 17 ++++------- .../mapper/DefaultClassMapperTest.java | 19 +++++------- .../mapper/FieldAliasingMapperTest.java | 21 +++++--------- .../mapper/ImplicitCollectionMapperTest.java | 21 +++++--------- .../xstream/mapper/SecurityMapperTest.java | 16 ++-------- .../FilePersistenceStrategyTest.java | 18 ++++-------- .../persistence/FileStreamStrategyTest.java | 19 +++++------- .../xstream/persistence/XmlArrayListTest.java | 19 +++++------- .../xstream/persistence/XmlMapTest.java | 19 +++++------- .../xstream/persistence/XmlSetTest.java | 19 +++++------- .../xstream/testutil/CallLog.java | 21 +++++--------- .../testutil/DynamicSecurityManager.java | 18 ++++-------- .../xstream/testutil/TimeZoneChanger.java | 21 +++++--------- 711 files changed, 4928 insertions(+), 9137 deletions(-) diff --git a/README.md b/README.md index 11e04d051..aeb3044c6 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,4 @@ -[//]: # " Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. " -[//]: # " " -[//]: # " This program and the accompanying materials are made available under the " -[//]: # " terms of the Eclipse Public License v. 2.0, which is available at " -[//]: # " http://www.eclipse.org/legal/epl-2.0. " -[//]: # " " -[//]: # " This Source Code may also be made available under the following Secondary " -[//]: # " Licenses when the conditions for such availability set forth in the " -[//]: # " Eclipse Public License v. 2.0 are satisfied: GNU General Public License, " -[//]: # " version 2 with the GNU Classpath Exception, which is available at " -[//]: # " https://www.gnu.org/software/classpath/license.html. " -[//]: # " " -[//]: # " SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 " - -master: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=master)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=master)](https://coveralls.io/github/x-stream/xstream?branch=master) +master: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=master)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=master)](https://coveralls.io/github/x-stream/xstream?branch=master) v-1.4.x: [![Build Status](https://travis-ci.org/x-stream/xstream.svg?branch=v-1.4.x)](https://travis-ci.org/x-stream/xstream) [![Coverage Status](https://coveralls.io/repos/github/x-stream/xstream/badge.svg?branch=v-1.4.x)](https://coveralls.io/github/x-stream/xstream?branch=v-1.4.x) - - - - diff --git a/pom.xml b/pom.xml index 882ae4757..a33e6d17b 100644 --- a/pom.xml +++ b/pom.xml @@ -1,21 +1,3 @@ - - - + diff --git a/xstream-benchmark/pom.xml b/xstream-benchmark/pom.xml index c33139432..f04edda9b 100644 --- a/xstream-benchmark/pom.xml +++ b/xstream-benchmark/pom.xml @@ -1,21 +1,3 @@ - - - + Copyright (C) 2006 Joe Walnes. + Copyright (C) 2006, 2007 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 15. July 2006 by Joe Walnes + --> A simple harness for running benchmarks. See Harness diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java index 4f08223bf..9e00f5d79 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/JavaObjectSerialization.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.tools.benchmark.Product; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java index 9beeabea2..bf3b5449a 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBEAStax.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.BEAStaxDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java index a6b953ff2..9b96ed57b 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamBinary.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.tools.benchmark.Product; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java index 1777b282b..9b0f9f730 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamCompact.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.tools.benchmark.Product; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java index 4d1a6bff6..6b196f9df 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.DomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java index 18ea93b45..791744227 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDom4J.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.HierarchicalStreamWriter; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java index 93bcc0986..f8805eb9d 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19.02.2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.XStream; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java index ffb986e27..8e278ec25 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamJDom.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.JDomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java index 5b51c1551..5d3cd1ffc 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.KXml2Driver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java index b96860cb9..adeaf653f 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamKXml2DOM.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 05. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.KXml2DomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java index 8a297d33f..1a54ebde7 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamSjsxp.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.SjsxpDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java index d70c87089..b51f51197 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamStax.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.StaxDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java index 067542cf0..32afaab11 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamWoodstox.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.WstxDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java index 0e6d81ddb..661300d4c 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXom.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.XomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java index f57498d3b..9150a395e 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.XppDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java index 8ea1d7b0f..fba75741a 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.Xpp3Driver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java index 86e3f1ae4..676567e2e 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/products/XStreamXpp3DOM.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 05. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.products; import com.thoughtworks.xstream.io.xml.Xpp3DomDriver; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java index 894693d68..55b102e4e 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/HtmlReporter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.reporters; import com.thoughtworks.xstream.tools.benchmark.Reporter; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java index 13f923eb6..b6fc23277 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/MultiReporter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 14. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.reporters; import com.thoughtworks.xstream.tools.benchmark.Metric; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java index 06cb81218..5819fa23d 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/reporters/TextReporter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.reporters; import com.thoughtworks.xstream.tools.benchmark.Metric; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java index 4ca584d2b..a4abb5b55 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/BasicTarget.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. January 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java index 6da1e62c7..f493f4d4a 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ExtendedTarget.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. January 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java index 5766d1363..c6611dd2d 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JTreeTarget.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java index 732168e7e..39a870f26 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/JavaBeanTarget.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 05. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java index d8825bce0..217c806de 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ListTarget.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java index f0b439851..4198adab6 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/Person.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.targets; import java.util.Date; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java index 92faa55ae..dcb58f532 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/ReflectionTarget.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. January 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java index 36e02b807..24c2b2a8b 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/SerializableTarget.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2011, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. January 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java index 8c359db51..b9e2386fd 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/StringTarget.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java index 9a44dd6b0..c318a3b53 100644 --- a/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java +++ b/xstream-benchmark/src/java/com/thoughtworks/xstream/tools/benchmark/targets/UserDefinedClassTarget.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.tools.benchmark.targets; import com.thoughtworks.xstream.tools.benchmark.Target; diff --git a/xstream-distribution/pom.xml b/xstream-distribution/pom.xml index 13c46daa8..286591442 100644 --- a/xstream-distribution/pom.xml +++ b/xstream-distribution/pom.xml @@ -1,21 +1,3 @@ - - - + Copyright (C) 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2011 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 15. October 2006 by Mauro Talevi + --> bin @@ -47,4 +40,4 @@ lib/xstream-hibernate - +
\ No newline at end of file diff --git a/xstream-distribution/src/assembly/assembly-src.xml b/xstream-distribution/src/assembly/assembly-src.xml index 5e2c551bb..b843d6f34 100644 --- a/xstream-distribution/src/assembly/assembly-src.xml +++ b/xstream-distribution/src/assembly/assembly-src.xml @@ -1,21 +1,14 @@ - + Copyright (C) 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2011, 2012 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 15. October 2006 by Mauro Talevi + --> src diff --git a/xstream-distribution/src/content/CVE-2013-7285.html b/xstream-distribution/src/content/CVE-2013-7285.html index ff96ca8e6..22fa82233 100644 --- a/xstream-distribution/src/content/CVE-2013-7285.html +++ b/xstream-distribution/src/content/CVE-2013-7285.html @@ -1,22 +1,14 @@ - + Copyright (C) 2017, 2018, 2019 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 25. April 2017 by Joerg Schaible + --> CVE-2013-7285 @@ -91,4 +83,4 @@

Credits

The vulnerability was discovered and reported by Pierre Francis Ernst of IBM Canada.

- + \ No newline at end of file diff --git a/xstream-distribution/src/content/CVE-2016-3674.html b/xstream-distribution/src/content/CVE-2016-3674.html index e99822977..f29dccad0 100644 --- a/xstream-distribution/src/content/CVE-2016-3674.html +++ b/xstream-distribution/src/content/CVE-2016-3674.html @@ -1,22 +1,14 @@ - + Copyright (C) 2017, 2018 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 3. May 2017 by Joerg Schaible + --> CVE-2016-3674 @@ -94,4 +86,4 @@

Credits

The vulnerability was discovered and reported by Alexander Klink.

- + \ No newline at end of file diff --git a/xstream-distribution/src/content/CVE-2017-7957.html b/xstream-distribution/src/content/CVE-2017-7957.html index da7d185d9..bcb660ee1 100644 --- a/xstream-distribution/src/content/CVE-2017-7957.html +++ b/xstream-distribution/src/content/CVE-2017-7957.html @@ -1,22 +1,14 @@ - + Copyright (C) 2017, 2020 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 25. April 2017 by Joerg Schaible + --> CVE-2017-7957 diff --git a/xstream-distribution/src/content/alias-tutorial.html b/xstream-distribution/src/content/alias-tutorial.html index f2437c88e..0bc94404e 100644 --- a/xstream-distribution/src/content/alias-tutorial.html +++ b/xstream-distribution/src/content/alias-tutorial.html @@ -1,22 +1,15 @@ - + Copyright (C) 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2008, 2011 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 24. March 2006 by Guilherme Silveira + --> Alias Tutorial diff --git a/xstream-distribution/src/content/annotations-tutorial.html b/xstream-distribution/src/content/annotations-tutorial.html index 22d294026..934a56ffd 100644 --- a/xstream-distribution/src/content/annotations-tutorial.html +++ b/xstream-distribution/src/content/annotations-tutorial.html @@ -1,22 +1,15 @@ - + Copyright (C) 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2011, 2017 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 28. July 2006 by Guilherme Silveira + --> Annotations Tutorial diff --git a/xstream-distribution/src/content/architecture.html b/xstream-distribution/src/content/architecture.html index f8f133ab1..bdf8b6884 100644 --- a/xstream-distribution/src/content/architecture.html +++ b/xstream-distribution/src/content/architecture.html @@ -1,22 +1,15 @@ - + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes + --> Architecture Overview @@ -140,4 +133,4 @@

XStream facade

- + \ No newline at end of file diff --git a/xstream-distribution/src/content/benchmarks.html b/xstream-distribution/src/content/benchmarks.html index 5a083d6ad..06754a086 100644 --- a/xstream-distribution/src/content/benchmarks.html +++ b/xstream-distribution/src/content/benchmarks.html @@ -1,22 +1,14 @@ - + Copyright (C) 2015, 2016, 2017, 2018 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 10. December 2015 by Joerg Schaible + --> Benchmarks @@ -107,4 +100,4 @@

References

you do!

- + \ No newline at end of file diff --git a/xstream-distribution/src/content/persistence-tutorial.html b/xstream-distribution/src/content/persistence-tutorial.html index 2f7587c9a..3519df9f8 100644 --- a/xstream-distribution/src/content/persistence-tutorial.html +++ b/xstream-distribution/src/content/persistence-tutorial.html @@ -1,22 +1,15 @@ - + Copyright (C) 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2008 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 28. July 2006 by Guilherme Silveira + --> Persistence API Tutorial diff --git a/xstream-distribution/src/content/references.html b/xstream-distribution/src/content/references.html index cb264c0c0..293d634f9 100644 --- a/xstream-distribution/src/content/references.html +++ b/xstream-distribution/src/content/references.html @@ -1,22 +1,14 @@ - + Copyright (C) 2006, 2007, 2008, 2009, 2011, 2015, 2020 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 17. November 2006 by Joerg Schaible + --> References diff --git a/xstream-distribution/src/content/repository.html b/xstream-distribution/src/content/repository.html index 018059037..e301d9149 100644 --- a/xstream-distribution/src/content/repository.html +++ b/xstream-distribution/src/content/repository.html @@ -1,22 +1,15 @@ - + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2010, 2011, 2015 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes + --> Source Repository diff --git a/xstream-distribution/src/content/security.html b/xstream-distribution/src/content/security.html index b88819f0c..eb6f459ae 100644 --- a/xstream-distribution/src/content/security.html +++ b/xstream-distribution/src/content/security.html @@ -1,22 +1,14 @@ - + Copyright (C) 2014, 2015, 2017, 2019 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 09. January 2014 by Joerg Schaible + --> Security Aspects diff --git a/xstream-distribution/src/content/team.html b/xstream-distribution/src/content/team.html index 416567e9c..2d0912ef9 100644 --- a/xstream-distribution/src/content/team.html +++ b/xstream-distribution/src/content/team.html @@ -1,22 +1,15 @@ - Development Team diff --git a/xstream-distribution/src/content/tutorial.html b/xstream-distribution/src/content/tutorial.html index 932a891dd..f5a1ca519 100644 --- a/xstream-distribution/src/content/tutorial.html +++ b/xstream-distribution/src/content/tutorial.html @@ -1,22 +1,15 @@ - + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2011, 2012, 2018 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes + --> Two Minute Tutorial diff --git a/xstream-distribution/src/content/versioning.html b/xstream-distribution/src/content/versioning.html index 6cbea1f52..5feab90ba 100644 --- a/xstream-distribution/src/content/versioning.html +++ b/xstream-distribution/src/content/versioning.html @@ -1,22 +1,15 @@ - + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes + --> About Versioning @@ -107,4 +100,4 @@

Versioning and Deprecation

- + \ No newline at end of file diff --git a/xstream-distribution/src/content/website.xml b/xstream-distribution/src/content/website.xml index 531087003..1ea251f5f 100644 --- a/xstream-distribution/src/content/website.xml +++ b/xstream-distribution/src/content/website.xml @@ -1,21 +1,14 @@ - + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2010, 2011, 2014, 2015, 2016 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes + -->
Software diff --git a/xstream-distribution/src/resources/style.css b/xstream-distribution/src/resources/style.css index 634b54880..7d6e7fd03 100644 --- a/xstream-distribution/src/resources/style.css +++ b/xstream-distribution/src/resources/style.css @@ -1,18 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 - */ + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes +*/ /*--------------------------------------------------------------------------- * Two- and three-column layout @@ -413,4 +409,4 @@ ul, ol { .Meta a:link { color: #C0C0C0; } .Meta a:visited { color: #C0C0C0; } .Meta a:active { color: red; } -.Meta a:hover { color: red; } +.Meta a:hover { color: red; } \ No newline at end of file diff --git a/xstream-distribution/src/templates/skin.html b/xstream-distribution/src/templates/skin.html index b3bf0064d..d2dc8e277 100644 --- a/xstream-distribution/src/templates/skin.html +++ b/xstream-distribution/src/templates/skin.html @@ -1,23 +1,16 @@ - + Copyright (C) 2005, 2006 Joe Walnes. + Copyright (C) 2006, 2007, 2008 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 29. January 2005 by Joe Walnes + --> XStream - ${title} diff --git a/xstream-distribution/src/xsite/xsite.xml b/xstream-distribution/src/xsite/xsite.xml index d9c704522..c9f36e38e 100644 --- a/xstream-distribution/src/xsite/xsite.xml +++ b/xstream-distribution/src/xsite/xsite.xml @@ -1,21 +1,14 @@ - + Copyright (C) 2006, 2007, 2008, 2010 XSite committers. + Copyright (C) 2011, 2015 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 28. September 2011 by Joerg Schaible, copied from XSite project + --> @@ -69,4 +62,4 @@ code-coverage/ - + \ No newline at end of file diff --git a/xstream-hibernate/pom.xml b/xstream-hibernate/pom.xml index a3275e4bb..5ab258973 100644 --- a/xstream-hibernate/pom.xml +++ b/xstream-hibernate/pom.xml @@ -1,22 +1,14 @@ - - + 4.0.0 com.thoughtworks.xstream diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java index 7e498596f..7057e8f4e 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentCollectionConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. April 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java index 46f790afd..84460bd65 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentMapConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. April 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java index acd545634..dbdba98b2 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedMapConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. April 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java index c05d7a1cc..7d3c38fa8 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernatePersistentSortedSetConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. April 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.hibernate.converter; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java index 7ffdcb56a..20a055152 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/converter/HibernateProxyConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. January 2007 by Konstantin Pribluda */ - package com.thoughtworks.xstream.hibernate.converter; import org.hibernate.proxy.HibernateProxy; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java index bb9c08168..d5d25d10d 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/mapper/HibernateMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2011, 2012, 2013, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. January 2007 by Konstantin Pribluda */ - package com.thoughtworks.xstream.hibernate.mapper; import java.util.ArrayList; diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html index 72e0bc02a..d7742835d 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/package.html @@ -1,21 +1,13 @@ - + Copyright (C) 2011, 2013 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 11. August 2011 by Joerg Schaible + -->

Support of Hibernate enhanced collections and proxied types and Hibernate's collection proxies from the Envers add-on. To drop the internals of Hibernate @@ -32,4 +24,4 @@ xstream.registerConverter(new HibernatePersistentSortedMapConverter(xstream.getMapper())); xstream.registerConverter(new HibernatePersistentSortedSetConverter(xstream.getMapper()));

- + \ No newline at end of file diff --git a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java index 9f9dd7867..566b82eda 100644 --- a/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java +++ b/xstream-hibernate/src/java/com/thoughtworks/xstream/hibernate/util/Hibernate.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2012, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08.06.2012 by Joerg Schaible */ - package com.thoughtworks.xstream.hibernate.util; import org.hibernate.proxy.HibernateProxy; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java b/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java index 0ce0b37f2..0c11d6567 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/AbstractHibernateAcceptanceTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 21. April 2011 by Joerg Schaible */ - package acceptance.hibernate; import org.hibernate.SessionFactory; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java b/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java index 3b295d8f0..8f2d5e56a 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/HibernateCollectionsTypeCompatibilityTest.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. October 2011 by Joerg Schaible */ package acceptance.hibernate; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java b/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java index a9b49f3c8..9d6d9b32d 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/HibernateReferenceTest.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. March 2011 by Jaime Metcher */ package acceptance.hibernate; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java b/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java index c8626e8f4..ba667a65a 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java +++ b/xstream-hibernate/src/test/acceptance/hibernate/reference/BaseDomainObject.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 25. March 2011 by Jaime Metcher */ package acceptance.hibernate.reference; diff --git a/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml b/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml index 1914cd7b5..cee1a5e1b 100644 --- a/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml +++ b/xstream-hibernate/src/test/acceptance/hibernate/reference/Department.hbm.xml @@ -1,23 +1,5 @@ - "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> - "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> - "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> - "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> - "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> - diff --git a/xstream-its/src/test-resources/project.properties b/xstream-its/src/test-resources/project.properties index b3134cd47..afba2c572 100644 --- a/xstream-its/src/test-resources/project.properties +++ b/xstream-its/src/test-resources/project.properties @@ -1,17 +1 @@ -# -# Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. -# -# This program and the accompanying materials are made available under the -# terms of the Eclipse Public License v. 2.0, which is available at -# http://www.eclipse.org/legal/epl-2.0. -# -# This Source Code may also be made available under the following Secondary -# Licenses when the conditions for such availability set forth in the -# Eclipse Public License v. 2.0 are satisfied: GNU General Public License, -# version 2 with the GNU Classpath Exception, which is available at -# https://www.gnu.org/software/classpath/license.html. -# -# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 -# - project.version=${project.version} diff --git a/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java b/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java index 4f5dc73ef..758204866 100644 --- a/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java +++ b/xstream-its/src/test/com/thoughtworks/xstream/OSGiIT.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. August 2019 by Joerg Schaible */ - package com.thoughtworks.xstream; import static java.lang.String.format; diff --git a/xstream-jmh/pom.xml b/xstream-jmh/pom.xml index 3b88818fa..d6e86e21f 100644 --- a/xstream-jmh/pom.xml +++ b/xstream-jmh/pom.xml @@ -1,21 +1,3 @@ - - - + Copyright (C) 2015 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 28. October 2015 by Joerg Schaible + --> app diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java index 2c51c3f07..a4a68c5e6 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/Base64Benchmark.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. July 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.benchmark.jmh; import java.nio.charset.StandardCharsets; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java index 3b7dbe790..bae415f34 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ConverterTypeBenchmark.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20.11.2015 by Joerg Schaible */ - package com.thoughtworks.xstream.benchmark.jmh; import java.math.BigInteger; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java index 4dd639257..31d160396 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/NameCoderBenchmark.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 16. December 2015 by Joerg Schaible, renamed from XmlFriendlyBenchmark */ - package com.thoughtworks.xstream.benchmark.jmh; import java.util.concurrent.ConcurrentHashMap; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java index 15b46f051..e19efda7a 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/ParserBenchmark.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. October 2015 by Joerg Schaible */ - package com.thoughtworks.xstream.benchmark.jmh; import java.io.ByteArrayInputStream; diff --git a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java index e393e21eb..118d1c9e8 100644 --- a/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java +++ b/xstream-jmh/src/java/com/thoughtworks/xstream/benchmark/jmh/StringConverterBenchmark.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08.11.2015 by Joerg Schaible */ - package com.thoughtworks.xstream.benchmark.jmh; import java.io.StringWriter; diff --git a/xstream/pom.xml b/xstream/pom.xml index 24f2537ef..eb960f2b6 100644 --- a/xstream/pom.xml +++ b/xstream/pom.xml @@ -1,21 +1,3 @@ - - - + Copyright (C) 2004 Joe Walnes. + Copyright (C) 2006, 2007 XStream committers. + All rights reserved. + + The software in this package is published under the terms of the BSD + style license a copy of which has been included with this distribution in + the LICENSE.txt file. + + Created on 10. May 2004 by Joe Walnes + -->

Converters for common basic types in Java. These include primitives (int, boolean, etc), wrapper objects (Integer, Boolean, etc), @@ -26,4 +19,4 @@

All of the basic converters will convert the item into a single String, with no nested elements.

- + \ No newline at end of file diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java index a610bd665..4c26e92b5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/AbstractCollectionConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java index 969eff837..2822b660c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/ArrayConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. October 2003 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java index 658915de0..77e542908 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/BitSetConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.util.BitSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java index bd0ee3cff..aed401ae1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CharArrayConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.xstream.converters.Converter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java index 732c0642e..bd120b905 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/CollectionConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. October 2003 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java index 5a66c76bf..e537e67ec 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/MapConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java index e9bbd43ee..e76a4672d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/PropertiesConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. February 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java index 618f1f578..e53388360 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonCollectionConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. October 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.collections; import java.util.Collection; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java index 05487946b..7e6b611ae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/SingletonMapConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. October 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.collections; import java.util.Collections; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java index 1a23bf5cd..c6807d7e4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeMapConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java index 3e6b9ac02..2e15815d4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/TreeSetConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html b/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html index a533475cb..9d59acddf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/converters/collections/package.html @@ -1,21 +1,14 @@ - + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007 XStream committers. + * All rights reserved. + * + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. May 2004 by Joe Walnes + -->

Converters for collection objects that write their items as nested elements, such as arrays, Lists, Sets and Maps.

diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java index b48881bc4..431e320c7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumConverter.java @@ -1,17 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 18. March 2005 by Joe Walnes */ package com.thoughtworks.xstream.converters.enums; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java index f4e99f467..b2af15c30 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumMapConverter.java @@ -1,17 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. April 2005 by Joe Walnes */ package com.thoughtworks.xstream.converters.enums; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java index 919fa352b..ef13a1786 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSetConverter.java @@ -1,17 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. April 2005 by Joe Walnes */ package com.thoughtworks.xstream.converters.enums; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java index 011f9c3bd..4526c906e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumSingleValueConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2010, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. February 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.enums; import com.thoughtworks.xstream.converters.basic.AbstractSingleValueConverter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java index 01236fd16..c6a7a431e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/enums/EnumToStringConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. March 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.enums; import java.util.EnumMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java index 8c5fd2c21..a83134b60 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 21.06.2015 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import javax.activation.ActivationDataFlavor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java index f3869a630..4f6e2ab14 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CharsetConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. April 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.nio.charset.Charset; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java index 5d5f85cf3..4e033d26a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ColorConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. October 2003 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.awt.Color; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java index 1f801d7c7..2ec55b83b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/CurrencyConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.util.Currency; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java index 8521d648f..02858ba24 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DurationConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 21.09.2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import javax.xml.datatype.DatatypeConfigurationException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java index 1634fd95f..425469491 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/DynamicProxyConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2013, 2014, 2015, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java index 05f283b92..3f1d92dfc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2014, 2015, 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java index 18fe0f0dc..78397f6c1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FileConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 13. January 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java index 935000d76..86a73c36d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/FontConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.awt.Font; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java index 238b7aaa3..c9c951e98 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.util.GregorianCalendar; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java index 7ec1e1823..0c4ea00bf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601DateConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. November 2004 by Mauro Talevi */ - package com.thoughtworks.xstream.converters.extended; import java.util.Calendar; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java index d05d5fe90..8061a7d07 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2016, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. October 2005 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.InvocationTargetException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java index 09d7418de..b4cbdc9ec 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. October 2005 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.sql.Timestamp; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java index 6f42da695..5b565c4f4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaClassConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java index 272bab3b4..f02fdf87c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaFieldConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 17. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java index 1528f38b3..7253fcff4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/JavaMethodConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java index 01611a864..299f38c2a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LocaleConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.util.Locale; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java index cbda2c7ba..a082de7b9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/LookAndFeelConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 08.12.2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.io.NotSerializableException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java index 9726ba892..4ee81e599 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedArrayConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. December 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java index a83b39759..86bffe4d3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedCollectionConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. September 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.util.Collection; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java index 9e653bf8c..0dce2e8d6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/NamedMapConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. September 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.util.Map; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java index 1b4722149..0d0540bde 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PathConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2016, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 7. February 2016 by Aaron Johnson */ - package com.thoughtworks.xstream.converters.extended; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java index f13eaa3c6..358dac7df 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 20.09.2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.beans.PropertyEditor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java index df36e9ebb..22fcaf517 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/RegexPatternConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 31. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.util.regex.Pattern; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java index 2acc1888d..baee30edd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlDateConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.sql.Date; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java index 3315b7b7c..f3dc8d7c3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimeConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.sql.Time; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java index 90f1d7d34..96252670d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SqlTimestampConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2012, 2014, 2016, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. October 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.sql.Timestamp; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java index ac9cce6d2..364d4fad3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018, 2019, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java index 14de4ee6b..1422a19f5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/StackTraceElementFactory.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java index ab6bd686c..594decd17 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/SubjectConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 12. January 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.security.Principal; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java index 0c7fa2303..828d1c047 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/TextAttributeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 25. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.awt.font.TextAttribute; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java index d080d4a2b..bf3b6def0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ThrowableConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java index 7024cc369..02f617550 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverter.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. July 2011 by Joerg Schaible */ package com.thoughtworks.xstream.converters.extended; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java index 403da21ea..25e0976d4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/ToStringConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2014, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. July 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java b/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java index ee685a6ad..fcc8464e2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/UseAttributeForEnumMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 25. September 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.converters.SingleValueConverter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html b/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html index 82da1e5fd..10e58dfa6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/converters/extended/package.html @@ -1,21 +1,14 @@ - + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007 XStream committers. + * All rights reserved. + * + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. May 2004 by Joe Walnes + -->

Extra converters that may not be enabled in XStream by default.

diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java index 804c7d2e9..dff4c408f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProperty.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 12. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.javabean; import java.lang.reflect.InvocationTargetException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java index 2cecdb805..c24d78483 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/BeanProvider.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java index e5a104eaa..82fd5c6ea 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/ComparingPropertySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java index ad87766c6..5c972db1a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.javabean; import java.util.HashSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java index 3eb6905c2..5111a9b10 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/JavaBeanProvider.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.javabean; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java index 7e778f2d7..244bc7a31 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/NativePropertySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java index 03b0af5dc..0ccaf9a95 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertyDictionary.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2016, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.javabean; import java.beans.BeanInfo; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java index 4a49c83e5..1946f3264 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/javabean/PropertySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java index 2e492bcaf..30b54088c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractAttributedCharacterIteratorAttributeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2013, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. February 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java index c7c544793..7b4ef2163 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/AbstractReflectionConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java index eb4a2110d..a0f3c5425 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/CGLIBEnhancedConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. April 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java index 975508911..43b7722a6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ExternalizableConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.io.Externalizable; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java index be328cad4..239a687c1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldDictionary.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java index 8612e53fc..b18703daa 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKey.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. April 2007 by Guilherme Silveira */ - package com.thoughtworks.xstream.converters.reflection; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java index fb3734295..5434eee90 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/FieldKeySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. April 2007 by Guilherme Silveira */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java index 0ee5a9274..e01ecee8a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ImmutableFieldKeySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. April 2007 by Guilherme Silveira */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java index d6b2d9388..d0656c62d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/LambdaConverter.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015 XStream Committer. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. January 2015 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.io.Serializable; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java index 14a885ea0..a50b3ca11 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/MissingFieldException.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. October 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java index 6311b2eae..544af247a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 17.05.2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java index 38286de6b..e2a5a430f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ObjectAccessException.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.xstream.converters.ErrorWritingException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java index 902f01824..be4f66ad7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.io.ByteArrayInputStream; @@ -75,7 +70,7 @@ public Object newInstance(final Class type) { try { for (final Constructor constructor : type.getDeclaredConstructors()) { if (constructor.getParameterTypes().length == 0) { - if (!constructor.canAccess(null)) { + if (!constructor.isAccessible()) { constructor.setAccessible(true); } return constructor.newInstance(new Object[0]); diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java index 030f686f1..eb7a3219b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.xstream.mapper.Mapper; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java index 94a51268d..9958b3c16 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProvider.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java index c84433fc5..bd3e4f852 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/ReflectionProviderWrapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 13. April 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java index 6b39c104b..64322f86b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SelfStreamingInstanceChecker.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. April 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.xstream.converters.Converter; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java index 9bec8e18d..81a4e35b7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializableConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 21. December 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java index d552ec3cd..d9ee57413 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SerializationMethodInvoker.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.io.ObjectInputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java index 00f08d36c..9bf93f21c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2009, 2011, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 10. April 2007 by Guilherme Silveira */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java index 48e7b2a1e..9bab5a9ad 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/Sun14ReflectionProvider.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java index f4b503a6e..44455df24 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProvider.java @@ -1,19 +1,10 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2013, 2014, 2016, 2017, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible, factored out from SunUnsafeReflectionProvider */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java index 9b583bbb7..0221e024f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProvider.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible, renamed from Sun14ReflectionProvider */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java index 7b96bd795..14a6d255e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/XStream12FieldKeySorter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 19.09.2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java index e945bfd95..40f5bf45a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/AbstractChronoLocalDateConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.DateTimeException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java index be5f18fef..11c25b646 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ChronologyConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.DateTimeException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java index 66e6d8d79..e1454c338 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/DurationConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.Duration; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java index fe280bccb..3dc00a711 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/HijrahDateConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 21. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java index eadf7b53b..24bccac2c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/InstantConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.Instant; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java index 6a3ba924e..3429a51e5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseDateConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java index 671205987..6f4b9dfdd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/JapaneseEraConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.chrono.JapaneseEra; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java index 8c48769fd..c6285e881 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. January 2017 by Matej Cimbora */ - package com.thoughtworks.xstream.converters.time; import java.time.LocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java index f02a4f0e7..06d417474 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalDateTimeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. January 2017 by Matej Cimbora */ - package com.thoughtworks.xstream.converters.time; import java.time.LocalDateTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java index 8aaa365a5..fde20d4d7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/LocalTimeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. January 2017 by Matej Cimbora */ - package com.thoughtworks.xstream.converters.time; import java.time.LocalTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java index 2c5285a19..2413f6316 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/MinguoDateConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java index 007951078..bc38f7a1b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/MonthDayConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.MonthDay; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java index f2ba143b2..707437e59 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetDateTimeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. January 2017 by Matej Cimbora */ - package com.thoughtworks.xstream.converters.time; import java.time.OffsetDateTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java index d06743af4..fab0cd03e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/OffsetTimeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.OffsetTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java index 9f2591de6..33736c7d0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/PeriodConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.Period; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java index 4c8348bff..9ea9a05f0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/SystemClockConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. March 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.Clock; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java index 0d349cef4..2380ca9e0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ThaiBuddhistDateConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.chrono.ChronoLocalDate; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java index 79e84df88..369b380ef 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ValueRangeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.temporal.ValueRange; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java index c51abef3c..664bdcfef 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/WeekFieldsConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.DayOfWeek; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java index 94f02d0f8..79e5d0a76 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.Year; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java index 57f2b9059..ae9a665ae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/YearMonthConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.YearMonth; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java index e671a154a..ccfd402f9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZoneIdConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 8. February 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.time; import java.time.DateTimeException; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java index 8a4000ae9..b3ff8745c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/ZonedDateTimeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. January 2017 by Matej Cimbora */ - package com.thoughtworks.xstream.converters.time; import java.time.ZonedDateTime; diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html b/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html index 922236d54..97be04997 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/converters/time/package.html @@ -1,21 +1,13 @@ - + * Copyright (C) 2017 XStream committers. + * All rights reserved. + * + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 12. February 2017 by Joerg Schaible + -->

Extra converters for the java.time package.

diff --git a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java index 5b2cf051f..5408a4f30 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceMarshaller.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2014, 2015, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. March 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java index 13b571573..3f5f668ab 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/AbstractReferenceUnmarshaller.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. March 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java index 96bbca379..f08dc0ab2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/AbstractTreeMarshallingStrategy.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 26.09.2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.MarshallingStrategy; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java b/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java index 8c9ae71a9..5135ee0cd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/Base64Codec.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. March 2020 by Joerg Schaible, renamed from com.thoughtworks.xstream.core.Base64JavaUtilCodec */ - package com.thoughtworks.xstream.core; import java.util.Base64; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/Caching.java b/xstream/src/java/com/thoughtworks/xstream/core/Caching.java index 42169dfd5..ef329da50 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/Caching.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/Caching.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 19. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.core; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java b/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java index 0e9101046..d6701eca9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ClassLoaderReference.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 26. June 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.core.util.CompositeClassLoader; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java b/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java index a1ab66909..0e34bd576 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/DefaultConverterLookup.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016, 2017, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/JVM.java b/xstream/src/java/com/thoughtworks/xstream/core/JVM.java index dc8a7927b..9e7f6bb62 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/JVM.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/JVM.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java b/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java index d1b14378e..aa4eaba7b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/MapBackedDataHolder.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. October 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import java.util.Collections; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java index dec73aeff..12305e20b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshaller.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java index 14cf505d2..f6a6428c7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdMarshallingStrategy.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java index 38b6eb894..d88b18acc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByIdUnmarshaller.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java index 85775cc22..fda71050b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshaller.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java index 70c68a2ee..132dbca5e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategy.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java index ff765efe5..be449a8bb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferenceByXPathUnmarshaller.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java b/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java index 748316a7e..730b476c3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/ReferencingMarshallingContext.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.MarshallingContext; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java b/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java index 236d4abae..6c078647f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/SequenceGenerator.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; public class SequenceGenerator implements ReferenceByIdMarshaller.IDGenerator { diff --git a/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java b/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java index 36de5603a..4721ddc69 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/StringCodec.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. August 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.core; /** @@ -41,4 +35,4 @@ public interface StringCodec { * @since 1.4.11 */ String encode(byte[] data); -} +} \ No newline at end of file diff --git a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java index 42a46ec1b..682796db5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshaller.java @@ -1,19 +1,15 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2018 + * XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java index a6df8a156..231ef2572 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/TreeMarshallingStrategy.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java b/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java index 4c2aa00d3..a9ee45b36 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/TreeUnmarshaller.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java index cb1864e3a..5f0c13641 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ArrayIterator.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29.07.2011 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java index 6910b2322..f59e2875d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64Encoder.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.io.ByteArrayOutputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java index a42fa130f..0688ad79f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JAXBCodec.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. August 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import javax.xml.bind.DatatypeConverter; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java index ee79b6025..7d1cd77cc 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Base64JavaUtilCodec.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. August 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.util.Base64; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java index a17506aca..8ed391fb8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ClassLoaderReference.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2005 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java index 7997eae7a..41b3a372e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Cloneables.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2010, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.lang.reflect.Array; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java b/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java index 3653cfb04..644422cbd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/CompositeClassLoader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2017, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 16. November 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.lang.ref.Reference; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java index 4cd3267af..edd8b8144 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectInputStream.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java index 9844d96e0..f3f346afe 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/CustomObjectOutputStream.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java b/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java index 80789f2bc..2ea6b9bab 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/DefaultDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. March 2019 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import com.thoughtworks.xstream.io.HierarchicalStreamDriver; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java b/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java index 362331295..7a3415b5e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/DependencyInjectionFactory.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. March 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.lang.reflect.Constructor; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java b/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java index 9a3a979a9..25810f10f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/FastField.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2010, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. October 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; public final class FastField { @@ -66,4 +60,4 @@ public int hashCode() { public String toString() { return (declaringClass == null ? "" : declaringClass + ".") + name; } -} +} \ No newline at end of file diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java b/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java index dae6ff3bd..b613a6db2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/FastStack.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java index f6543a43d..334efc4bd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Fields.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2016, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java b/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java index 6afc43fb3..e97400f20 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/HierarchicalStreams.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 09. October 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java index 077f0bb50..d4cb7d8d2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JavaTimeConverter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. May 2017 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.time.Instant; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java index 87ea11da5..8e3563ee5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ISO8601JodaTimeConverter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2016, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. May 2017 by Joerg Schaible, copied from ISO8601GregorianCalendarConverter */ - package com.thoughtworks.xstream.core.util; import java.util.Calendar; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java index 3a4d681c0..88f076e18 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ListWrappingQueue.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. Mai 2020 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.util.Collection; @@ -129,4 +123,4 @@ public E element() { public E peek() { return this.list.get(0); } -} +} \ No newline at end of file diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java index aa1029641..e116994f6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ObjectIdDictionary.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.lang.ref.ReferenceQueue; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java b/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java index 2866e9b5b..46a60b8ba 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/OrderRetainingMap.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java index 9c844bad5..614290f2a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Pool.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. May 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java index 29e111d43..f22678a13 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedMap.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2010, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12.10.2010 by Joerg Schaible, extracted from TreeMapConverter. */ - package com.thoughtworks.xstream.core.util; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java index bfee389ee..fa53cc66a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/PresortedSet.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2010, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12.10.2010 by Joerg Schaible, extracted from TreeSetConverter. */ - package com.thoughtworks.xstream.core.util; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java index 8494bd382..5bb94223a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Primitives.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2006, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2007, 2011, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 11. October 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java b/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java index c479a7001..3694cfbe1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/PrioritizedList.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java b/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java index ece161d9d..cb6572883 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/QuickWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.io.Closeable; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java b/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java index f1c4ecce5..c0254b1ad 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/SelfStreamingInstanceChecker.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. March 2013 by Joerg Schaible, moved from package + * com.thoughtworks.xstream.converters.reflection. */ - package com.thoughtworks.xstream.core.util; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java b/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java index affc87b08..69e51c83a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/SerializationMembers.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2014, 2015, 2016, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. February 2015 by Joerg Schaible, copied from c.t.x.converters.reflection.SerializationMemberInvoker. */ - package com.thoughtworks.xstream.core.util; import java.io.ObjectInputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java index 82776f4fa..77b63cf58 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafePropertyEditor.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2008, 2014, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.beans.PropertyEditor; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java index 301dc2a9d..0ae5d10a1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormat.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2012, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.text.DateFormat; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java b/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java index 8bf9f4b22..09d5c598a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/TypedNull.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. March 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java b/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java index 72a3985ad..5168be7a3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/Types.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. January 2015 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.util.regex.Pattern; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java b/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java index 4d8a61949..780cbcf75 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/WeakCache.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2013, 2014, 2015, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 12. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.lang.ref.Reference; diff --git a/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java b/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java index ca5031366..2a92d9820 100644 --- a/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/core/util/XmlHeaderAwareReader.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2010, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 13. September 2007 by Joerg Schaible. */ package com.thoughtworks.xstream.core.util; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java index ea44ff0a2..18b588306 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AbstractDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java b/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java index de81bedda..b7a437ac7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AbstractReader.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 16. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java index 147468a14..6d703200c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AbstractWriter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 17. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io; import com.thoughtworks.xstream.core.util.Cloneables; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java b/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java index e1d96237c..7c2e15327 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/AttributeNameIterator.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java index c54a1d5c9..8587bc1d3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamReader.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. October 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java index 291775e00..7645bde3e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java index 5f1d89767..cbed09143 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ExtendedHierarchicalStreamWriterHelper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java index 9a180edaf..bc5c6860e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java index ac6386cbc..55118ce6b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java index 0a12c23a4..27a174cbf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/HierarchicalStreamWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java b/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java index 669f09d27..dbcfe8b16 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/ReaderWrapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.io; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java index 6d9f792f5..9ec1d4f0d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/StatefulWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.io; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java b/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java index d97952c59..86535c707 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/StreamException.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java b/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java index 9d749b612..985d13af7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/WriterWrapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.io; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java index 8b0b12aaf..be7ab85e0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. October 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io.binary; import java.io.InputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java index 9049fc8fc..3260994f2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.binary; import java.io.DataInputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java index e9fbff2ba..4cc226fcb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/BinaryStreamWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.binary; import java.io.DataOutputStream; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java index c399e0dd5..e34f6a7c7 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/ReaderDepthState.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.binary; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java b/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java index 7fde45113..93a899aaf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/binary/Token.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.binary; import java.io.DataInput; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java b/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java index befd6ea05..3bb9f157d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopier.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.copy; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java index 7ce2d0af8..0135086ea 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/AbstractJsonWriter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.Externalizable; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java index ea4c3d2ce..0afa35c30 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2008, 2009, 2010, 2011, 2013, 2014, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. March 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java index dd8094eaa..3149b343e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JettisonStaxWriter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2008, 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2009, 2010, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17.04.2008 by Joerg Schaible. */ - package com.thoughtworks.xstream.io.json; import java.util.ArrayDeque; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java index 968721713..186e007fb 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2014, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.json; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java index c6f2cde01..860360ea0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.json; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java index 5ed9e321b..0b5cf7977 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/json/JsonWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 28. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java index 7c908c25f..c383bb0c3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoder.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.naming; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java index b6ed0f727..7ff4b52df 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/NameCoderWrapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.naming; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java index e2be44c9f..5d2560f68 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/NoNameCoder.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.naming; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java index a2f43337d..9a3256c57 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/naming/StaticNameCoder.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2015, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.naming; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java b/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java index f5237074b..0d5d86813 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/Path.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2013, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java index e7991edb5..5e7223d1e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTracker.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java index 0eafa69b6..09abf5eb6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import com.thoughtworks.xstream.converters.ErrorWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java index 93a2388ad..331f34390 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/PathTrackingWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import com.thoughtworks.xstream.io.AbstractWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/path/package.html b/xstream/src/java/com/thoughtworks/xstream/io/path/package.html index f773f3eb9..86d4a4b0c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/path/package.html +++ b/xstream/src/java/com/thoughtworks/xstream/io/path/package.html @@ -1,21 +1,14 @@ - + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007 XStream committers. + * All rights reserved. + * + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. April 2004 by Joe Walnes + --> diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java index 21e978a2d..240421248 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.converters.ErrorWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java index 91edb3864..c01af9b4e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractDocumentWriter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 18. October 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java index 928733eae..5f8dfc16e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractPullReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.core.util.FastStack; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java index 3c5ae624b..5907ba1f4 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 28. May 2005 by Mauro Talevi */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.AbstractDriver; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java index 25bdf0179..e6a7e113a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.AbstractReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java index 911f6120b..2ab440705 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXmlWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 04. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.AbstractWriter; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java index 55d324244..309e8466d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDomDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java index bbcbd3c2d..a5d53603d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/AbstractXppDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java index d199b9132..600bb2fe9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/BEAStaxDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java index f3903b518..8da552c1c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/CompactWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java index ae915213d..174720506 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentReader.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 18. October 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java index 65b60a900..5339ec11d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DocumentWriter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 18. October 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java index 1edbb5d57..e3c50459a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java index 02186344f..a54729050 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java index 453e104ca..f4262cc0d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.dom4j.Branch; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java index 3a0f79831..e0a7f3ff6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Dom4JXmlWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java index 05aa385be..bbd9ad6d8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java index fdd9b9878..daff7e4d9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java index 608efd69e..caf77dde1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/DomWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.w3c.dom.Document; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java index adeb8c1a0..578f534bd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Driver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. June 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java index e90cacf7a..deac9b6bd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Reader.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. June 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java index d4e7d85ca..3ee151865 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDom2Writer.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 24. June 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import org.jdom2.DefaultJDOMFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java index 90638c733..6deba9f08 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java index 7692480ca..d3c5d2057 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.util.List; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java index d87264c46..0e027f42f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/JDomWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.jdom.DefaultJDOMFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java index d5709ff2a..75af9ebda 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2DomDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import org.kxml2.io.KXmlParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java index 0ad243d56..3604857d9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/KXml2Driver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import org.kxml2.io.KXmlParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java index 1052f04aa..5d6f752fd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/PrettyPrintWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.Writer; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java index 51f8e2cda..e2bfb6bd8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/QNameMap.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 01. October 2004 by James Strachan */ - package com.thoughtworks.xstream.io.xml; import java.util.Collections; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java index eb3b57cbf..37df52caf 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/SaxWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java index 24bf0d9fb..7ee4b9210 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/SimpleStaxDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. March 2019 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java index e9c9927bf..b7d2b5d83 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/SjsxpDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java index c2aba1784..9f75a4e5f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StandardStaxDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 27. July 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java index e0e817c00..f3e9263aa 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2014, 2015, 2019, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. September 2004 by James Strachan */ - package com.thoughtworks.xstream.io.xml; import java.io.Closeable; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java index 6bdfc7b81..ee1059994 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. September 2004 by James Strachan */ - package com.thoughtworks.xstream.io.xml; import javax.xml.namespace.QName; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java index 6592276c7..38ac8de8e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/StaxWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. September 2004 by James Strachan */ - package com.thoughtworks.xstream.io.xml; import javax.xml.namespace.QName; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java index db5976aea..13c1ab560 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/TraxSource.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java index ce966c83e..5d55bb598 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/WstxDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java index 6f4ff463c..236aeeb54 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11NameCoder.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. August 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java index fbda08ff0..8d989bf50 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XStream11XmlFriendlyReplacer.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. April 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java index 1d755e517..2df54639b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyNameCoder.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. August 2009 by Joerg Schaible, copied from XmlFriendlyReplacer. */ - package com.thoughtworks.xstream.io.xml; import java.util.BitSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java index 63fecda83..b65183c4a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReader.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 26. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java index 54236f61e..148c43415 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyReplacer.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 17. April 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java index bdb0f5ab1..83e36dd6f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XmlFriendlyWriter.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 26. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java index ff88fc217..e79e97060 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. April 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java index b9337635b..e2b40e692 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java index cfd478234..061205279 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XomWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java index 4990a9082..385f50074 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3DomDriver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import org.xmlpull.mxp1.MXParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java index e48d41761..795a1ef17 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/Xpp3Driver.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 29. April 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import org.xmlpull.mxp1.MXParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java index 738145d27..38dc450ec 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.xmlpull.v1.XmlPullParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java index a9e3566fd..5c969baf8 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java index d2c6c238a..3f05ec663 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDomWriter.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.naming.NameCoder; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java index 79288bfd8..b68f5bc5d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppDriver.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.xmlpull.v1.XmlPullParser; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java index cd7947417..f1f2da8b2 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/XppReader.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 08. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java index 66f80c850..606eecab9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3Dom.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml.xppdom; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java index 886c1f6c7..2059ae885 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/Xpp3DomBuilder.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml.xppdom; import java.io.Reader; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java index 561ba7d1c..c75ceb6dd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDom.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 02. May 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml.xppdom; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java index f9f065377..0ee33f5e0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparator.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 11. August 2011 by Joerg Schaible. */ - package com.thoughtworks.xstream.io.xml.xppdom; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java index 334aa8dbd..5b307f765 100644 --- a/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java +++ b/xstream/src/java/com/thoughtworks/xstream/io/xml/xppdom/XppFactory.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 11. August 2011 by Joerg Schaible, code from XppDom. */ - package com.thoughtworks.xstream.io.xml.xppdom; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java index c4fa5e414..de6811527 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractAttributeAliasingMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. October 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java index 750f5e20a..8a7435476 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AbstractXmlFriendlyMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. May 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java index 05c343774..e15c8b272 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationConfiguration.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. November 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java index 50c428eb3..1eff98895 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AnnotationMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. November 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java index 5cf406ebf..d66851c9d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ArrayMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.core.util.Primitives; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java index 32111d384..648784576 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeAliasingMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 27. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java index c803f92c5..65b90b0b0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/AttributeMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 20. February 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.mapper; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java index d5b84cc59..78f89e6e0 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/CGLIBMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 08. April 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import net.sf.cglib.proxy.Enhancer; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java index b776eec7a..46add3008 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/CachingMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.concurrent.ConcurrentHashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java b/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java index 50c159ef7..057165a3f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/CannotResolveClassException.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java index eebbe8329..4559c3d55 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ClassAliasingMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java index 0aac732fe..15e3c2c85 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultImplementationsMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java index 14c34e90d..f50a7268f 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/DefaultMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.converters.Converter; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java index 5cdbade3e..4e93128a5 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/DynamicProxyMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.lang.reflect.Proxy; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java index 52f45f83a..310baa529 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ElementIgnoringMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2016 by Joerg Schaible, factored out from FieldAliasingMapper. */ - package com.thoughtworks.xstream.mapper; import java.util.HashSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java index 85f252256..c51936575 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/EnumMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. March 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.EnumSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java index 57cf3de0c..110f16b68 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/FieldAliasingMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java index 425ca8f7c..1f7ddbdba 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ImmutableTypesMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.HashSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java index 2ba487dac..329eefec3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/ImplicitCollectionMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2012, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 16. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java index 9d63c0e57..421162061 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/LambdaMapper.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. January 2015 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.io.Serializable; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java index 8720577d8..456331366 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/LocalConversionMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. November 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.util.HashMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java index 2d32b139b..aeacf07e3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/Mapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.io.Serializable; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java index de687efe9..b83ff9913 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/MapperWrapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2015, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.lang.reflect.Method; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java index de90957ea..a64dd5dcd 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/OuterClassMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 31. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.lang.reflect.Field; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java index 3900d6eb9..7b36022ab 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/PackageAliasingMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 10. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.io.IOException; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java index e5773d911..f0e92937d 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/SecurityMapper.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.util.ArrayList; diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java index d89eb94b3..685926fb6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/SystemAttributeAliasingMapper.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. October 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java b/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java index 19a27fb4b..dd8957e4c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java +++ b/xstream/src/java/com/thoughtworks/xstream/mapper/XStream11XmlFriendlyMapper.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. May 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.mapper; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java index aa2920b12..37128da84 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/AbstractFilePersistenceStrategy.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 18. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java index ae915d106..2d0db951e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/FilePersistenceStrategy.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014, 2015, 2016, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java index 124b3e8d9..a40785914 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/FileStreamStrategy.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 13. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java index c0c949731..e1ffe99e9 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/PersistenceStrategy.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 20. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.persistence; import java.util.Iterator; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java b/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java index 71e8074cd..1ca781e6a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/StreamStrategy.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 13. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java index d2f8e3ad9..96b793f19 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlArrayList.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2014, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. July 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.util.AbstractList; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java index 73bb254a9..2248b2f76 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlMap.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 13. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.util.AbstractMap; diff --git a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java index 678356a47..e03f1556b 100644 --- a/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java +++ b/xstream/src/java/com/thoughtworks/xstream/persistence/XmlSet.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 28. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.util.AbstractSet; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java index ad522b4e2..13c18673c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/AnyTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java index c6dd784fd..ec263f345 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ArrayTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java index 9b995628f..0acc6d83c 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/CGLIBProxyTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import net.sf.cglib.proxy.Proxy; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java index b35d29754..b688066ae 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ExplicitTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014, 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import java.util.Arrays; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java b/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java index 7d4121fab..23c938777 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ForbiddenClassException.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java index fa014bb7a..2951ac658 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/InterfaceTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 27. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java b/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java index c2e43faae..df7fabe2e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/NoPermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java index 059a5cc31..dca2766b6 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/NoTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java b/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java index 3d2a7738c..942cf3e70 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/NullPermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import com.thoughtworks.xstream.mapper.Mapper; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java index 1fcd18e8e..b6e530419 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/PrimitiveTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import com.thoughtworks.xstream.core.util.Primitives; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java index 5a71ef644..aebe1054a 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/ProxyTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import java.lang.reflect.Proxy; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java index 22a98b1b3..9a669661e 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/RegExpTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; import java.util.regex.Pattern; diff --git a/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java b/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java index 6d1c9a546..18ed3aae3 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/TypeHierarchyPermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java index 0e6817991..2187650fe 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/TypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java b/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java index 8032f86f7..9bbf56c67 100644 --- a/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java +++ b/xstream/src/java/com/thoughtworks/xstream/security/WildcardTypePermission.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.security; /** diff --git a/xstream/src/test/$Package.java b/xstream/src/test/$Package.java index 7bed6c17f..4a4b9f0e2 100644 --- a/xstream/src/test/$Package.java +++ b/xstream/src/test/$Package.java @@ -1,17 +1,8 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2013 by Joerg Schaible */ /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java index c3cba415a..dfa90c0a8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteSingleNodeXPathReferenceTest.java @@ -1,19 +1,15 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible by merging + * AbsolutSingleNodeXPathCircularReferenceTest, AbsolutSingleNodeXPathDuplicateReferenceTest + * and AbsolutSingleNodeXPathReplacedReferenceTest. */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java index 082be9b75..485c4573e 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbsoluteXPathReferenceTest.java @@ -1,19 +1,15 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible by merging AbsolutXPathCircularReferenceTest, + * AbsolutXPathDuplicateReferenceTest, AbsolutXPathNestedCircularReferenceTest and + * AbsolutXPathReplacedReferenceTest. */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java index 5f1759ef6..632fddc01 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbstractAcceptanceTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014, 2015, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java index fcda55eca..73acd9bc3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AbstractReferenceTest.java @@ -1,19 +1,16 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible by merging AbstractCircularReferenceTest, + * AbstractDuplicateReferenceTest, AbstractNestedCircularReferenceTest and + * AbstractReplacedReferenceTest. */ - package com.thoughtworks.acceptance; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java b/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java index 4362e6e73..44dd006f9 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AliasTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2018, 2019, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java b/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java index 2f66034e1..c15b1d76a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ArraysTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 03. October 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java b/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java index edf51e6ad..263bd197f 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/AttributeTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. February 2006 by Mauro Talevi */ - package com.thoughtworks.acceptance; import java.text.DateFormat; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java index 5ac21c927..7258db71f 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BasicTypesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2013, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes, merged with Basic15TypesTest */ - package com.thoughtworks.acceptance; import java.math.BigDecimal; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java index 4a983da1c..cb031677d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BeanIDCircularReferenceTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. November 2008 by Joerg Schaible */ - package com.thoughtworks.acceptance; import com.thoughtworks.xstream.converters.ConverterLookup; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java b/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java index 39d7150a8..71d3f2f61 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BooleanFieldsTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. October 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java b/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java index c1255b93c..472662954 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/BufferedImagesTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 28. October 2008 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.awt.Color; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java index e889383eb..6d2cb9101 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CglibCompatibilityTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2010, 2013, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. April 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java b/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java index 1d68e202c..b67b6cc5e 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ClassLoaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java b/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java index 6bf961222..65e38d4c0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CollectionsTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. October 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java index c82be2a60..3d5e95fee 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ConcreteClassesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java b/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java index fc43642cb..450e052e0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ConcurrencyTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. March 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java index 76a7bc1e3..db4e14a65 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ConcurrentTypesTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2012, 2015, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. July 2018 by Joerg Schaible, renamed from Concurrent15TypesTest */ - package com.thoughtworks.acceptance; import java.util.Map; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java index bba2e285a..3a9c678be 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomClassesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java index 99d913004..3a291d411 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. March 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.text.DecimalFormat; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java index 757fafb84..8db636c75 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomFieldKeySorterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. May 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java index 672c734fc..215a01ea8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomMapperTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. March 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java b/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java index f9d2a202a..8d8a5989a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/CustomSerializationTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. August 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java b/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java index b7d93327c..dc3be4a36 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/DataHolderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. October 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java b/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java index 5b17901c8..f50f7f9f6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/DefaultImplementationTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. July 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java b/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java index b12db0179..7e8e20250 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/DynamicProxyTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java b/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java index 227b53c4b..14ff8ddfa 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java +++ b/xstream/src/test/com/thoughtworks/acceptance/EncodingTestSuite.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014, 2016, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. June 2006 by Guilherme Silveira */ - package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java b/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java index 47b2fd54d..488d67458 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ErrorTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2013, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. May 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import com.thoughtworks.xstream.converters.ConversionException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java index 88ba116dc..5d58dd20a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ExtendedTypesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2012, 2014, 2016, 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. October 2003 by Joe Walnes, merged with Extended14TypesTest and Extended17TypesTest */ - package com.thoughtworks.acceptance; import java.awt.Color; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java b/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java index 8a21bde79..d69db8d30 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ExternalizableTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. August 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.Externalizable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java b/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java index 9c7e1d3f6..5a12bb8a1 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/FinalFieldsTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2013, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. May 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java index 3c2bd2da3..685e64bd3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/IDReferenceTest.java @@ -1,19 +1,16 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible by merging IDCircularReferenceTest, + * IDDuplicateReferenceTest, IDNestedCircularReferenceTest and + * IDReplacedReferenceTest. */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java index 3ce3b471f..598b3fb59 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitArrayTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2013, 2014, 2015, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. July 2011 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java index 1990f61dc..2902c41a8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitCollectionTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. August 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java index 133934444..4db3dc0ff 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitMapTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2012, 2013, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. August 2011 Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java b/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java index f8774a066..893ba70db 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ImplicitTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. April 2013 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java b/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java index 4d908c08f..0a4e09e16 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/InheritanceTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java index 1e0511590..bcac20829 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/InnerClassesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 31. January 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; public class InnerClassesTest extends AbstractAcceptanceTest { diff --git a/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java index ceba6fc00..56d7d7526 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/JodaTimeTypesTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. October 2008 by Joerg Schaible */ - package com.thoughtworks.acceptance; import org.joda.time.DateTimeZone; diff --git a/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java b/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java index df7a55553..e0c6c8024 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/LambdaTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014, 2015, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 31. December 2014 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java index fa6bed490..d05d4a667 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/LocalConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. November 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/MapTest.java b/xstream/src/test/com/thoughtworks/acceptance/MapTest.java index 4b405091a..b941fbc86 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/MapTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/MapTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java b/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java index 8360fa3a2..1d389151b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/MultipleObjectsInOneStreamTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2018, 2019, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. December 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java b/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java index 565f8e905..f9e6ccef9 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/NamedLocalElementsTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. September 2013 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java b/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java index 1dc57dfb3..5888e6033 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/OmitFieldsTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2012, 2013, 2014, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. June 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java index 8fa524b96..bf2000598 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/PersistenceTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. November 2008 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java index d218e9d2d..13aa9e493 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/QNameMappedConcreteClassesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. October 2004 by James Strachan */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java b/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java index 46c98e714..3374d4e99 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ReadResolveTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. May 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java b/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java index fb4cf2932..68053c274 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/ReflectionClassesTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. April 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.lang.reflect.Constructor; diff --git a/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java index 34469f5af..db31144c8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/RelativeSingleNodeXPathReferenceTest.java @@ -1,19 +1,16 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible by merging + * RelativeSingleNodeXPathCircularReferenceTest and + * RelativeSingleNodeXPathDuplicateReferenceTest. */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java b/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java index d53c3b621..662cca2e6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/RelativeXPathReferenceTest.java @@ -1,19 +1,16 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible by merging RelativeXPathCircularReferenceTest, + * RelativeXPathDuplicateReferenceTest, RelativeXPathNestedCircularReferenceTest and + * RelativeXPathReplacedReferenceTest. */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java b/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java index 19ca796b6..41aeb83e3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SecurityManagerTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2010, 2013, 2014, 2015, 2016, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. March 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java index a4c895bd1..d4e949151 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. December 2013 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.beans.EventHandler; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java b/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java index ccc45966d..910473a86 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SerializationCallbackOrderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. February 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java b/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java index b3c5ea393..43c2129db 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SerializationNestedWriteObjectsTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2010, 2012, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. June 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java b/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java index 918e4611c..7fa6dfd42 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SortableFieldListTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 10. April 2007 by Guilherme Silveira */ - package com.thoughtworks.acceptance; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java b/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java index c4ed766ec..dcab57a49 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SwingTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. April 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import javax.swing.DefaultListModel; diff --git a/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java b/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java index cad3d44fd..cc12ec792 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/Time18TypesTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. January 2017 by Matej Cimbora */ - package com.thoughtworks.acceptance; import java.time.Clock; diff --git a/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java b/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java index e4ac9fa07..1f72e8dc3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/TreeMapAndTreeSetTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. May 2005 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java b/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java index 529ebba55..d6f9fa4c0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/WriteReplaceTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2014, 2015, 2016, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. August 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java index 82c968325..bde26ef94 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStream11XmlFriendlyTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. July 2004 by Joe Walnes */ - package com.thoughtworks.acceptance; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java index adbbd44e9..d610f58f5 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStream12CompatibilityTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 27. June 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java index 1dbf95e15..dce2de9d3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStream13CompatibilityTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. August 2011 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.util.TreeMap; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl b/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl index ce52924dc..467d8adfb 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl +++ b/xstream/src/test/com/thoughtworks/acceptance/XStreamer.xsl @@ -1,22 +1,14 @@ - @@ -44,4 +36,4 @@ - + \ No newline at end of file diff --git a/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java b/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java index d8997a3a4..06e212b9c 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XStreamerTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. April 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance; import java.io.ObjectStreamException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java index 603e7f93e..34847145a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyDollarOnlyTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. September 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java index ef3c8c207..a139f4665 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/XmlFriendlyTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2017, 2018, 2019, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 18. April 2006 by Mauro Talevi */ - package com.thoughtworks.acceptance; import java.text.DecimalFormatSymbols; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java index 51dd8eb39..f613a14e0 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/AliasTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2013, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. November 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java index ece61f1f0..900d5ef73 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/AnnotationsTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 16. September 2005 by Mauro Talevi */ - package com.thoughtworks.acceptance.annotations; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java index 34016886a..6d2b60e37 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/AttributesTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. November 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java index eb6e0bf1a..a2685fe4a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/FieldConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2016, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. March 2006 by Mauro Talevi */ - package com.thoughtworks.acceptance.annotations; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java index 632562496..cc890de2d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitArrayTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 30. July 2011 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java index 446d4119c..df986e894 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitCollectionTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. December 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java index a1937bd1b..c182c82a7 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ImplicitMapTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. August 2011 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java index f2e1ebbe6..99e54742b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/OmitFieldTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 23. November 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java b/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java index 0562abba6..1e359e21f 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/annotations/ParametrizedConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2011, 2012, 2013, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. January 2008 by Joerg Schaible */ - package com.thoughtworks.acceptance.annotations; import java.math.BigDecimal; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java index 9f732bbcf..caa93e88a 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Category.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. April 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance.objects; import java.util.List; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java index 6a294db45..26fe917f3 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Hardware.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; public class Hardware extends StandardObject { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java b/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java index e445194b7..b682ada33 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/OpenSourceSoftware.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; public class OpenSourceSoftware extends Software { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java index 38be07ef0..5a6eab036 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Original.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. October 2008 by Joerg Schaible */ /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java b/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java index 83c180290..5c12b332f 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/OwnerOfExternalizable.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 05. July 2011 by Joerg Schaible, factored out of ExternalizableTest. */ - package com.thoughtworks.acceptance.objects; public class OwnerOfExternalizable extends StandardObject { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java index 2f3a61eb2..b76fef5b8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Product.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. April 2007 by Joerg Schaible */ - package com.thoughtworks.acceptance.objects; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java index 670fbb91b..3edeb9c8d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Replaced.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 22. October 2008 by Joerg Schaible */ /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java index 3978df9da..c1121a243 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleDynamicProxy.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. April 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; import java.lang.reflect.InvocationHandler; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java index c0a3bbd6e..45deeae4b 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleLists.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java index a40a65553..dd895d9db 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SampleMaps.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. August 2011 by Joerg Schaible */ - package com.thoughtworks.acceptance.objects; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java b/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java index 185161f17..6f35592d6 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/Software.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; public class Software extends StandardObject { diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java b/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java index 0ed51e542..5d1837c60 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/SomethingExternalizable.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. July 2011 by Joerg Schaible, factored out of ExternalizableTest. */ - package com.thoughtworks.acceptance.objects; import java.io.Externalizable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java b/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java index 0829190f0..0bbe5a623 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/StandardObject.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. October 2003 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java b/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java index 3570a5cf2..16e1df29d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java +++ b/xstream/src/test/com/thoughtworks/acceptance/objects/StatusEnum.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. May 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.objects; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java index 76062398a..cd2560223 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/FunnyConstructor.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java index d8216c1e9..030f594c8 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Handler.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java index e4697108c..b47515421 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/HandlerManager.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; import java.util.List; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java index 6824ca2d3..a6e0dd607 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Protocol.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; /** diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java index cf8876bd0..c09f3bf3d 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/U.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. October 2005 by Mauro Talevi */ - package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java index 00367c3c5..7c95f269e 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithList.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java index e8ddfb674..924ab1858 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/WithNamedList.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. March 2006 by Joerg Schaible */ - package com.thoughtworks.acceptance.someobjects; public class WithNamedList extends WithList { diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java index 23ea227b0..148851efd 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/X.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java index bf6e1af3b..38c223570 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Y.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java index b418ff8b6..ac7dcb2d1 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java +++ b/xstream/src/test/com/thoughtworks/acceptance/someobjects/Z.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 19. December 2004 by Mauro Talevi */ - package com.thoughtworks.acceptance.someobjects; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java b/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java index 1bb578efb..441f1d583 100644 --- a/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/XStreamTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2003, 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2014, 2017, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 26. September 2003 by Joe Walnes */ - package com.thoughtworks.xstream; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java index a8dec3bfd..256acf948 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/ConversionExceptionTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. November 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.converters; import com.thoughtworks.xstream.mapper.CannotResolveClassException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java index a0a4e9fd1..648953cf6 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/DateConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2012, 2014, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. February 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.basic; import java.text.ParseException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java index cdb5a642c..afcb93d58 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/StringConverterTest.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. Mar 2020 by Zezeng Wang */ package com.thoughtworks.xstream.converters.basic; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java index 89a41458a..efd574df9 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URIConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2010, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 3. August 2010 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.basic; import java.net.URI; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java index 5717035e2..7dc6e5db7 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/basic/URLConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 25. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.basic; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java index 49a698d90..64110e067 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/BitSetConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java index a7b9d5721..e875b3f43 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/ByteArrayConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. April 2004 by James Strachan */ - package com.thoughtworks.xstream.converters.collections; import java.util.Arrays; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java index fcfa4775a..41fd68131 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/CharArrayConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java index c32a71972..2420bec0f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/collections/PropertiesConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. February 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.collections; import java.util.Properties; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java index 4603136fe..b529a7def 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/BigEnum.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.enums; enum BigEnum { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java index e0d0c59fc..aded48152 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 18. March 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.enums; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java index ebcbeec32..ff5437497 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumCustomConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. October 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.enums; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java index 0415abbfe..4e6415082 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.enums; import java.util.EnumMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java index d2949964e..eee599d16 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumMapperTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. February 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.enums; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java index e984ac7d4..9f6218dc3 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumSetConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.enums; import java.util.EnumSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java index e69fb9fbd..d3762dde7 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/EnumToStringConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. March 2013 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.enums; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java index 62dbe4224..2d4de0bc0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/Fruit.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. February 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.enums; /** diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java index c5bde6082..54088d3ca 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/PolymorphicEnum.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.enums; enum PolymorphicEnum implements Fruit { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java b/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java index c43cef1ef..2b691d1c3 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/enums/SimpleEnum.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.enums; enum SimpleEnum { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java index f0320c066..694a1af65 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ActivationDataFlavorConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23.06.2015 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.awt.datatransfer.DataFlavor; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java index b8708f1d9..87b113489 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/CharsetConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 28. July 2006 by Guilerme Silveira */ - package com.thoughtworks.xstream.converters.extended; import java.nio.charset.Charset; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java index f572f3636..d15cbeb92 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/DurationConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 21. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.converters.SingleValueConverter; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java index 72669d43f..18017e0cb 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/EncodedByteArrayConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java index ea2b2907c..a6aa6ee11 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/FontConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.awt.Font; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java index f7a314536..04b6056f0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/GregorianCalendarConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 14. May 2005 by Mauro Talevi */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.xstream.XStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java index c1243779b..398c10ac2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601DateConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. November 2004 by Mauro Talevi */ - package com.thoughtworks.xstream.converters.extended; import java.text.ParseException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java index d8e696024..39291c3aa 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601GregorianCalendarConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. October 2005 by Joerg Schaible, merged with ISO8601GregorianCalendarConverter17Test */ - package com.thoughtworks.xstream.converters.extended; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java index d1b7199e2..aa0416851 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ISO8601SqlTimestampConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. October 2005 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.sql.Timestamp; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java index aad6f0f96..9a7245137 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaClassConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 16. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java index c4ef9f1b1..0602542dd 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/JavaMethodConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. December 2004 by Mauro Talevi */ - package com.thoughtworks.xstream.converters.extended; import java.lang.reflect.Constructor; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java index d8cde2462..e13927476 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/PropertyEditorCapableConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 20. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import java.beans.PropertyEditorSupport; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java index e6cf48321..6a909511d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/RegexPatternConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 28. July 2006 by Guilerme Silveira */ - package com.thoughtworks.xstream.converters.extended; import java.util.regex.Pattern; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java index b6aaaf27e..c825f78a8 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverter9Test.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. May 2019 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java index a483c3975..e3228de33 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/StackTraceElementConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java index e02156aeb..e24ea668c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ThrowableConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java index 6bfbe81a5..0b21eb5d4 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToAttributedValueConverterTest.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2013, 2014, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. July 2011 by Joerg Schaible */ package com.thoughtworks.xstream.converters.extended; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java index 09021d4e5..ee97d9db9 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/extended/ToStringConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. July 2006 by Joe Walnes */ - package com.thoughtworks.xstream.converters.extended; import java.util.Map; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java index 921140b1a..1715c8b3a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/JavaBeanConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.javabean; import java.util.Comparator; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java index 3e36cd6a0..b3940172d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/javabean/PropertyDictionaryTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 12. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.converters.javabean; import java.beans.PropertyDescriptor; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java index c082dffc6..6ea2ed96f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/AbstractReflectionProviderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import org.jmock.Mock; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java index f905e7a42..be9ee4eec 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/FieldDictionaryTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java index c041ee206..399075412 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/NativeFieldKeySorterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. May 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java index 47fad531c..086e6abfe 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProviderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes, merged with PureJavaReflectionProvider15Test */ - package com.thoughtworks.xstream.converters.reflection; import java.io.Serializable; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java index d39907911..c50c90275 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/ReflectionConverterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2013, 2014, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.converters.reflection; import com.thoughtworks.acceptance.objects.StandardObject; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java index e1cffad3f..4fd8d574d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SerializableConverterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. July 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.converters.reflection; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java index 8745d56e5..73e4d7f11 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SortableFieldKeySorterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 10. April 2007 by Guilherme Silveira */ - package com.thoughtworks.xstream.converters.reflection; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java index 2592e69f4..49678ee0a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunLimitedUnsafeReflectionProviderTest.java @@ -1,19 +1,10 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible, factored out from SunUnsafeReflectionProviderTest */ - package com.thoughtworks.xstream.converters.reflection; public class SunLimitedUnsafeReflectionProviderTest extends AbstractReflectionProviderTest { diff --git a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java index 3d4ae9b77..791b2e3d6 100644 --- a/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/converters/reflection/SunUnsafeReflectionProviderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. January 2014 by Joerg Schaible, renamed from Sun14RelfectrionProviderTest. */ - package com.thoughtworks.xstream.converters.reflection; public class SunUnsafeReflectionProviderTest extends SunLimitedUnsafeReflectionProviderTest { diff --git a/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java b/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java index d0278f262..ee5b91892 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/Base64CodecTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. March 2020 by Joerg Schaible, renamed from com.thoughtworks.xstream.core.Base64JavaUtilCodecTest */ - package com.thoughtworks.xstream.core; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java b/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java index 9322d30fd..38902591a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/DefaultConverterLookupTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 06. March 2004 by Mauro Talevi */ - package com.thoughtworks.xstream.core; import java.util.BitSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java b/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java index b1447fc68..1c0dd922e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/JVMTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2012, 2013 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 23. July 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java index 688d2a3f6..023868e5a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByIDMarshallingStrategyTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.core; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java index d736291ca..e46721e9c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/ReferenceByXPathMarshallingStrategyTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. April 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import java.lang.reflect.Field; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java b/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java index b5daa75a5..7b76929c8 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/TreeMarshallerTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 25. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java b/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java index 17d0378d2..64d64a947 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/TreeUnmarshallerTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 10. April 2005 by Mauro Talevi */ - package com.thoughtworks.xstream.core; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java index 6b31a1428..0e51ff330 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64EncoderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java index b4f01812c..c5df40909 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/Base64JAXBCodecTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2017 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. August 2017 Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java index e866aa1f4..1302bcc6f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/CloneablesTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2010, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created 18.11.2010 by Joerg Schaible. */ - package com.thoughtworks.xstream.core.util; import java.util.Arrays; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java index d35d6aa13..b30c24000 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/DependencyInjectionFactoryTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2009, 2010, 2011, 2012, 2014, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. March 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.util.BitSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java index 3bbf675fa..43f09a41d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/FastStackTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java index c48c18432..281419c0f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/ObjectIdDictionaryTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2010, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. May 2004 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java index 826e207f5..4dad684a0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/OrderRetainingMapTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.util.Iterator; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java index e0760bd57..9d536e203 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/PrioritizedListTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005, 2006 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.core.util; import java.util.Iterator; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java index 34b438cfc..cdcb50e97 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/QuickWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. September 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java index 810ef427b..3722f328e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/ThreadSafeSimpleDateFormatTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2014 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 14. October 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.text.ParseException; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java index b61c9c6c3..f40d6a4ca 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/WeakCacheTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. July 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java index e565854cf..84d64cca8 100644 --- a/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/core/util/XmlHeaderAwareReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2010, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. September 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.core.util; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java b/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java index 525b9bbc0..848ff150a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/DriverEndToEndTestSuite.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2013, 2014, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.io; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java index 1d0ecfed3..71a734eae 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/StatefulWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 15. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.io; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java b/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java index e69487130..8a72afe74 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/binary/BinaryStreamTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2015, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.binary; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java b/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java index 7415f1929..b50bf8c59 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/binary/TokenTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.binary; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java b/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java index 6cd67c73e..84161d19f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/copy/HierarchicalStreamCopierTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2015, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 04. June 2006 by Joe Walnes */ - package com.thoughtworks.xstream.io.copy; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java index 50cf5dc90..7d5097a21 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JettisonMappedXmlDriverTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2013, 2014, 2016, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. April 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java index 2a3efc4bd..25d90df8c 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonHierarchicalStreamDriverTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2017, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 22. June 2006 by Mauro Talevi */ - package com.thoughtworks.xstream.io.json; import java.awt.Color; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java index 90d01ee7c..be0eeec74 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterFormatTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2010, 2011, 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. September 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java index 86389c1e2..86a588487 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeDroppingRootTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2011, 2012, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.Writer; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java index 0d68ceb06..3c444486e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/json/JsonWriterModeTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2009, 2011, 2013, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 01. September 2009 by Joerg Schaible */ - package com.thoughtworks.xstream.io.json; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java index 0101ddc9d..29913835a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/naming/StaticNameCoderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 7. March 2019 by John Bergqvist */ - package com.thoughtworks.xstream.io.naming; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java index 85b105f1d..12415c66d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import junit.framework.Test; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java index 598ebb736..324c1e776 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackerTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import junit.framework.TestCase; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java index 7e964ea6a..8f759a57d 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import java.io.Reader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java index 9763d9d23..4de158e34 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/path/PathTrackingWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.path; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java index 391b6142e..28ac4fc4e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractDocumentWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2008, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. October 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.util.ArrayDeque; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java index 010571738..d31b608c9 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2012, 2013, 2015, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 21. March 2019 by Joerg Schaible, extracted from AbstractreaderTest */ - package com.thoughtworks.xstream.io.xml; import java.util.HashSet; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java index fd461e0d6..c443c2cea 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. February 2019 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java index 3c3b0cdae..9dcc2a6ba 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractStaxWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2009, 2011, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. November 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java index 49e6fefd5..d73e24c13 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2012, 2013, 2015, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java index 07da3e4e2..45dc5f5ab 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/AbstractXMLWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java index 9ad370a88..d62557b60 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2015, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. September 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java index 4300b6cc1..771dc1f9b 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/BEAStaxWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2011, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. November 2007 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.util.Arrays; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java index 255bf60ee..bfe3f27f4 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/CompactWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java index d70a52d73..1b52f3625 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2016, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java index 9ce4cd9ad..be5c2e587 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.dom4j.Branch; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java index aa9d9a32d..d23230d81 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Dom4JXmlWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java index c73ffe2de..781976dc2 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2016, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.ByteArrayInputStream; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java index 32593d9c9..60c2a85dd 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/DomWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 05. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import javax.xml.parsers.DocumentBuilder; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java index c1b51f521..e8073aeef 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2AcceptanceTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. June 2012 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java index a9b72c1c8..aaa77de1a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2ReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2015, 2016, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. June 2012 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java index fef720a45..a710e8f27 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDom2WriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 24. June 2012 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import org.jdom2.Element; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java index 74a4147a1..31ebd7f99 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomAcceptanceTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java index 7add0a899..29c8fb787 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2016, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java index dfad5b175..f42bfa058 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/JDomWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import org.jdom.Element; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java index 060e6f60f..75857aa8b 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/KXml2ReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2016, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. September 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java index 180628a58..fe64c1c1a 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/PrettyPrintWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2008, 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringWriter; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java index 0f3b44ffa..2b984b0a6 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/SaxWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2018, 2020 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. August 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.IOException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java index cdf696806..32f20886e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2015, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. September 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java index 3c1126505..89cbf5695 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/SjsxpWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2008, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. September 2011 by Joerg Schaible, renamed from SjsxpStaxWriterTest */ - package com.thoughtworks.xstream.io.xml; import junit.framework.Test; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java index 1fd0eda96..cb9e15dfc 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/StandardStaxReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2015, 2017, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. September 2015 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.HierarchicalStreamReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java index 80df6ad84..f10cd1851 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxDriverTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. July 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLInputFactory; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java index 95ba14b68..fc83e92db 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/StaxReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2016, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. September 2004 by James Strachan */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java index a7e6dd8d7..52fab509e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2015, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. September 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.XStreamException; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java index 3c126ca88..5bb2c2290 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/WstxWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2007, 2009, 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 29. September 2011 by Joerg Schaible, renamed from WoodstoxStaxWriterTest */ - package com.thoughtworks.xstream.io.xml; import javax.xml.stream.XMLOutputFactory; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java index c29146982..9f84e8240 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 02. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java index 5744d2594..4b5ba1c53 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XomWriterTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 03. September 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import nu.xom.Element; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java index 5a472e28d..fefeb0c51 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/Xpp3ReaderTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2015, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 30. September 2011 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java index 0304af67f..5ba37ce53 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004, 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2009, 2011, 2015, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 07. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java index 1be8b9fb7..d412fb730 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppDomWriterTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 19. October 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.io.xml; import com.thoughtworks.xstream.io.xml.xppdom.XppDom; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java index 0d7013d11..c5f8d6baa 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/XppReaderTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2004 Joe Walnes. + * Copyright (C) 2006, 2007, 2015, 2016, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 08. March 2004 by Joe Walnes */ - package com.thoughtworks.xstream.io.xml; import java.io.StringReader; diff --git a/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java b/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java index cfee2674f..2be4e4747 100644 --- a/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/io/xml/xppdom/XppDomComparatorTest.java @@ -1,17 +1,12 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2011, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 11. August 2011 by Joerg Schaible. */ package com.thoughtworks.xstream.io.xml.xppdom; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java index 867b91c32..b3d6fa428 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/DefaultClassMapperTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2013, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 23. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import com.thoughtworks.xstream.core.ClassLoaderReference; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java index 5f5a46371..7a1191e4f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/FieldAliasingMapperTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 09. April 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import com.thoughtworks.acceptance.AbstractAcceptanceTest; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java index 46b1abeff..4c8f64df1 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/ImplicitCollectionMapperTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007, 2011, 2013, 2016 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 16. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.mapper; import java.util.Map; diff --git a/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java b/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java index ee12f8c2a..5ce9b206f 100644 --- a/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/mapper/SecurityMapperTest.java @@ -1,19 +1,9 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2014, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 09. January 2014 by Joerg Schaible */ - package com.thoughtworks.xstream.mapper; import java.net.URL; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java index 3048b9f6b..f8d79cd7e 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/FilePersistenceStrategyTest.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2008, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 21. November 2008 by Joerg Schaible */ - package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java index becda9121..14380dbc0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/FileStreamStrategyTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 17. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.io.File; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java index a964a7b4a..15d95d2fc 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlArrayListTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2009, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 06. July 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.util.ArrayList; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java index b4a417c78..5a93fc468 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlMapTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 13. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java index 20d934ed2..38b896561 100644 --- a/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java +++ b/xstream/src/test/com/thoughtworks/xstream/persistence/XmlSetTest.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006 Joe Walnes. + * Copyright (C) 2007, 2008, 2018 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 28. June 2006 by Guilherme Silveira */ - package com.thoughtworks.xstream.persistence; import java.util.HashMap; diff --git a/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java b/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java index af4e840db..7e0cbfd27 100644 --- a/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java +++ b/xstream/src/test/com/thoughtworks/xstream/testutil/CallLog.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 02. February 2005 by Joe Walnes */ - package com.thoughtworks.xstream.testutil; import junit.framework.Assert; diff --git a/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java b/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java index 70fd29b5e..77e077efe 100644 --- a/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java +++ b/xstream/src/test/com/thoughtworks/xstream/testutil/DynamicSecurityManager.java @@ -1,19 +1,13 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2006, 2007, 2009, 2010, 2018, 2019 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * Created on 14. March 2006 by Joerg Schaible */ - package com.thoughtworks.xstream.testutil; import java.io.FilePermission; diff --git a/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java b/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java index 27fa99773..0e21c4eb0 100644 --- a/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java +++ b/xstream/src/test/com/thoughtworks/xstream/testutil/TimeZoneChanger.java @@ -1,19 +1,14 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (C) 2005 Joe Walnes. + * Copyright (C) 2006, 2007 XStream Committers. + * All rights reserved. * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v. 2.0, which is available at - * http://www.eclipse.org/legal/epl-2.0. - * - * This Source Code may also be made available under the following Secondary - * Licenses when the conditions for such availability set forth in the - * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, - * version 2 with the GNU Classpath Exception, which is available at - * https://www.gnu.org/software/classpath/license.html. - * - * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 + * The software in this package is published under the terms of the BSD + * style license a copy of which has been included with this distribution in + * the LICENSE.txt file. + * + * Created on 15. January 2005 by Joe Walnes */ - package com.thoughtworks.xstream.testutil; import java.util.TimeZone; From f1f507ff4217897a336e1dc5943877c1a2bf10f9 Mon Sep 17 00:00:00 2001 From: Honor Systems Updater Jenkins Date: Mon, 26 Oct 2020 10:09:04 -0500 Subject: [PATCH 4/4] Updating to JDK 11 https://github.com/x-stream/xstream/issues/211 Automatic updates https://jenkins.updater.j2eeguys.com/ Signed-off-by: Honor Systems Updater Jenkins --- .../converters/reflection/PureJavaReflectionProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java index be4f66ad7..6cfe698c1 100644 --- a/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java +++ b/xstream/src/java/com/thoughtworks/xstream/converters/reflection/PureJavaReflectionProvider.java @@ -70,7 +70,7 @@ public Object newInstance(final Class type) { try { for (final Constructor constructor : type.getDeclaredConstructors()) { if (constructor.getParameterTypes().length == 0) { - if (!constructor.isAccessible()) { + if (!constructor.canAccess(null)) { constructor.setAccessible(true); } return constructor.newInstance(new Object[0]);