From ff88cb2531d414330dd53457a40057885bacda87 Mon Sep 17 00:00:00 2001 From: Maksim Bogatyrev Date: Thu, 26 Mar 2026 15:09:36 +0300 Subject: [PATCH 1/3] #2111 added support quantization config + some tests --- .../ru/rt/restream/reindexer/Reindexer.java | 12 -- .../restream/reindexer/annotations/Hnsw.java | 36 ++++ .../restream/reindexer/vector/HnswConfig.java | 43 ++++ .../reindexer/vector/HnswConfigs.java | 27 +++ ...iltinHnswQuantizationConfigUpdateTest.java | 23 ++ ...protoHnswQuantizationConfigUpdateTest.java | 23 ++ .../HnswQuantizationConfigUpdateTest.java | 198 ++++++++++++++++++ ...ReindexAnnotationScannerHnswIndexTest.java | 25 +++ 8 files changed, 375 insertions(+), 12 deletions(-) create mode 100644 src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java create mode 100644 src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java create mode 100644 src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java diff --git a/src/main/java/ru/rt/restream/reindexer/Reindexer.java b/src/main/java/ru/rt/restream/reindexer/Reindexer.java index 6213d53..0de3798 100644 --- a/src/main/java/ru/rt/restream/reindexer/Reindexer.java +++ b/src/main/java/ru/rt/restream/reindexer/Reindexer.java @@ -282,28 +282,16 @@ public Query query(String namespaceName, Class clazz) { return new Query<>(this, namespace, null); } - /** - * ONLY FOR TEST PURPOSES! - */ - @Deprecated public void addIndex(String namespaceName, ReindexerIndex index) { IndexDefinition indexDefinition = IndexDefinition.fromIndex(index); binding.addIndex(namespaceName, indexDefinition); } - /** - * ONLY FOR TEST PURPOSES! - */ - @Deprecated public void updateIndex(String namespaceName, ReindexerIndex index) { IndexDefinition indexDefinition = IndexDefinition.fromIndex(index); binding.updateIndex(namespaceName, indexDefinition); } - /** - * ONLY FOR TEST PURPOSES! - */ - @Deprecated public void dropIndex(String namespaceName, String indexName) { binding.dropIndex(namespaceName, indexName); } diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java b/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java index 82d9b74..4b21e39 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java @@ -79,4 +79,40 @@ */ boolean multithreading() default false; + /** + * Optional quantization configuration for HNSW index. + * + *

When {@code quantizationConfig.quantizationType} is empty, the whole block is ignored. + * + *

Currently supported type: {@code scalar_quantization_8_bit}. + */ + QuantizationConfig quantizationConfig() default @QuantizationConfig; + + /** + * Nested annotation representing {@code quantization_config} block. + */ + @interface QuantizationConfig { + /** + * Quantization type. + * + *

Currently supported: {@code scalar_quantization_8_bit}. + */ + String quantizationType() default ""; + + /** + * Quantile for scalar quantization. + */ + float quantile() default -1.0f; + + /** + * Sample size for estimating quantile(s). + */ + int sampleSize() default 20_000; + + /** + * Minimal number of points in the index required to enable quantization. + */ + int quantizationThreshold() default 100_000; + } + } diff --git a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java index 591fce8..9de53dd 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java @@ -63,4 +63,47 @@ public class HnswConfig implements IndexConfig { * Enable multithreading insert mode. */ private int multithreading; + + /** + * Optional quantization configuration for HNSW index. + * + *

+ * When this value is {@code null} the {@code quantization_config} block is not + * serialized. + */ + private QuantizationConfig quantizationConfig; + + @Setter + @Getter + @EqualsAndHashCode + @NoArgsConstructor(access = AccessLevel.PACKAGE) + public static class QuantizationConfig { + /** + * Quantization type. + * + *

+ * Currently supported: {@code scalar_quantization_8_bit}. + */ + private String quantizationType; + + /** + * Quantile for scalar quantization. + * + *

+ * If this field is {@code null}, quantile is expected to be computed + * automatically + * by Reindexer. + */ + private Float quantile; + + /** + * Sample size for estimating quantile(s). + */ + private int sampleSize; + + /** + * Minimal number of samples/points required to enable quantization. + */ + private int quantizationThreshold; + } } diff --git a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java index 1c8a10d..f0cdaf7 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java @@ -30,6 +30,11 @@ public class HnswConfigs { new IllegalArgumentException("HNSW index should have 'm' parameter in range [2, 128]"); public static final IllegalArgumentException EF_CONSTRUCTION_NOT_IN_RANGE_EX = new IllegalArgumentException("HNSW index should have 'efConstruction' parameter in range [4, 1024]"); + public static final IllegalArgumentException QUANTIZATION_TYPE_NOT_SUPPORTED_EX = + new IllegalArgumentException("Only 'scalar_quantization_8_bit' is supported for HNSW quantization_config."); + public static final IllegalArgumentException QUANTILE_OUT_OF_RANGE_EX = + new IllegalArgumentException("Quantile for scalar quantization must be in range [0.95, 1.0]."); + private static final float QUANTILE_UNSET = -1.0f; public static HnswConfig of(Hnsw annotation) { if (annotation.metric() == null) { @@ -52,6 +57,28 @@ public static HnswConfig of(Hnsw annotation) { config.setM(annotation.m()); config.setEfConstruction(annotation.efConstruction()); config.setMultithreading(annotation.multithreading() ? 1 : 0); + + String quantizationType = annotation.quantizationConfig().quantizationType(); + float quantile = annotation.quantizationConfig().quantile(); + int sampleSize = annotation.quantizationConfig().sampleSize(); + int quantizationThreshold = annotation.quantizationConfig().quantizationThreshold(); + + if (quantizationType != null && !quantizationType.isEmpty()) { + if (!"scalar_quantization_8_bit".equals(quantizationType)) { + throw QUANTIZATION_TYPE_NOT_SUPPORTED_EX; + } + HnswConfig.QuantizationConfig quantizationConfig = new HnswConfig.QuantizationConfig(); + quantizationConfig.setQuantizationType(quantizationType); + if (quantile != QUANTILE_UNSET) { + if (quantile < 0.95f || quantile > 1.0f) { + throw QUANTILE_OUT_OF_RANGE_EX; + } + quantizationConfig.setQuantile(quantile); + } + quantizationConfig.setSampleSize(sampleSize); + quantizationConfig.setQuantizationThreshold(quantizationThreshold); + config.setQuantizationConfig(quantizationConfig); + } return config; } diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java new file mode 100644 index 0000000..a6e4031 --- /dev/null +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java @@ -0,0 +1,23 @@ +/* + * Copyright 2020 Restream + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package ru.rt.restream.reindexer.connector; + +import ru.rt.restream.category.BuiltinTest; + +@BuiltinTest +public class BuiltinHnswQuantizationConfigUpdateTest extends HnswQuantizationConfigUpdateTest { +} + diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java new file mode 100644 index 0000000..eeb07db --- /dev/null +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java @@ -0,0 +1,23 @@ +/* + * Copyright 2020 Restream + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package ru.rt.restream.reindexer.connector; + +import ru.rt.restream.category.CprotoTest; + +@CprotoTest +public class CprotoHnswQuantizationConfigUpdateTest extends HnswQuantizationConfigUpdateTest { +} + diff --git a/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java b/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java new file mode 100644 index 0000000..def5679 --- /dev/null +++ b/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java @@ -0,0 +1,198 @@ +/* + * Copyright 2020 Restream + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package ru.rt.restream.reindexer.connector; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.junit.jupiter.api.Test; +import ru.rt.restream.reindexer.CollateMode; +import ru.rt.restream.reindexer.FieldType; +import ru.rt.restream.reindexer.IndexType; +import ru.rt.restream.reindexer.Namespace; +import ru.rt.restream.reindexer.NamespaceOptions; +import ru.rt.restream.reindexer.ReindexerIndex; +import ru.rt.restream.reindexer.annotations.Hnsw; +import ru.rt.restream.reindexer.annotations.Json; +import ru.rt.restream.reindexer.annotations.Metric; +import ru.rt.restream.reindexer.annotations.Reindex; +import ru.rt.restream.reindexer.db.DbBaseTest; +import ru.rt.restream.reindexer.vector.HnswConfig; + +import java.lang.reflect.Constructor; +import java.util.Collections; +import java.util.Iterator; +import java.util.List; + +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.nullValue; +import static org.junit.jupiter.api.Assertions.assertEquals; + +abstract class HnswQuantizationConfigUpdateTest extends DbBaseTest { + private final String namespaceName = "hnsw_quantization_config_update"; + private final String vectorIndexName = "vector"; + + @Test + void testChangeQuantizationConfig() { + db.openNamespace(namespaceName, NamespaceOptions.defaultOptions(), VectorItem.class); + + NamespaceDescriptionResponse before = getNamespaceDescription(namespaceName); + IndexResponse vectorIndexBefore = getIndexByName(before.getIndexes(), vectorIndexName); + QuantizationConfigResponse quantBefore = vectorIndexBefore.getConfig().getQuantizationConfig(); + + assertThat(quantBefore.getQuantizationType(), is("scalar_quantization_8_bit")); + assertThat(quantBefore.getSampleSize(), is(20_000)); + assertThat(quantBefore.getQuantizationThreshold(), is(100_000)); + assertThat(quantBefore.getQuantile(), nullValue()); + + ReindexerIndex updIndex = createHnswIndexForUpdate(vectorIndexName); + HnswConfig hnswConfig = createHnswConfigForUpdate(); + updIndex.setConfig(hnswConfig); + db.updateIndex(namespaceName, updIndex); + + NamespaceDescriptionResponse after = getNamespaceDescription(namespaceName); + IndexResponse vectorIndexAfter = getIndexByName(after.getIndexes(), vectorIndexName); + QuantizationConfigResponse quantAfter = vectorIndexAfter.getConfig().getQuantizationConfig(); + + assertThat(quantAfter.getQuantizationType(), is("scalar_quantization_8_bit")); + assertEquals(0.987f, quantAfter.getQuantile(), 1e-6f); + assertThat(quantAfter.getSampleSize(), is(12340)); + assertThat(quantAfter.getQuantizationThreshold(), is(43210)); + } + + private NamespaceDescriptionResponse getNamespaceDescription(String nsName) { + Namespace serviceNamespace = db.openNamespace("#namespaces", + NamespaceOptions.defaultOptions(), NamespaceDescriptionResponse.class); + String query = String.format("select * from #namespaces where name = '%s'", nsName); + Iterator iterator = serviceNamespace.execSql(query); + if (!iterator.hasNext()) { + throw new AssertionError("Namespace is not found: " + nsName); + } + return iterator.next(); + } + + private IndexResponse getIndexByName(List indexes, String indexName) { + return indexes.stream() + .filter(i -> indexName.equals(i.getName())) + .findFirst() + .orElseThrow(() -> new AssertionError("Index is not found: " + indexName)); + } + + private ReindexerIndex createHnswIndexForUpdate(String indexName) { + // index update requires the same structural info (index type + field type + + // json path) + return ReindexerIndex.builder() + .name(indexName) + .jsonPaths(Collections.singletonList(indexName)) + .indexType(IndexType.HNSW) + .fieldType(FieldType.FLOAT_VECTOR) + .collateMode(CollateMode.NONE) + .build(); + } + + private HnswConfig createHnswConfigForUpdate() { + HnswConfig config = newHnswConfig(); + config.setMetric("cosine"); + config.setDimension(1024); + config.setStartSize(1000); + config.setM(20); + config.setEfConstruction(150); + config.setMultithreading(0); + + HnswConfig.QuantizationConfig quantConfig = newQuantizationConfig(); + quantConfig.setQuantizationType("scalar_quantization_8_bit"); + quantConfig.setQuantile(0.987f); + quantConfig.setSampleSize(12340); + quantConfig.setQuantizationThreshold(43210); + config.setQuantizationConfig(quantConfig); + return config; + } + + private static HnswConfig newHnswConfig() { + try { + Constructor ctor = HnswConfig.class.getDeclaredConstructor(); + ctor.setAccessible(true); + return ctor.newInstance(); + } catch (ReflectiveOperationException e) { + throw new RuntimeException(e); + } + } + + private static HnswConfig.QuantizationConfig newQuantizationConfig() { + try { + Constructor ctor = HnswConfig.QuantizationConfig.class + .getDeclaredConstructor(); + ctor.setAccessible(true); + return ctor.newInstance(); + } catch (ReflectiveOperationException e) { + throw new RuntimeException(e); + } + } + + @Getter + @Setter + public static class NamespaceDescriptionResponse { + private String name; + private List indexes; + } + + @Getter + @Setter + public static class IndexResponse { + private String name; + + @Json("config") + private IndexConfigResponse config; + } + + @Getter + @Setter + public static class IndexConfigResponse { + @Json("quantization_config") + private QuantizationConfigResponse quantizationConfig; + } + + @Getter + @Setter + public static class QuantizationConfigResponse { + @Json("quantization_type") + private String quantizationType; + + @Json("quantile") + private Float quantile; + + @Json("sample_size") + private Integer sampleSize; + + @Json("quantization_threshold") + private Integer quantizationThreshold; + } + + @Getter + @Setter + @NoArgsConstructor + @AllArgsConstructor + public static class VectorItem { + @Reindex(name = "id", isPrimaryKey = true) + private Integer id; + + @Reindex(name = "vector") + @Hnsw(metric = Metric.COSINE, dimension = 1024, quantizationConfig = @Hnsw.QuantizationConfig(quantizationType = "scalar_quantization_8_bit")) + private float[] vector; + } +} diff --git a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java index 3e81396..d34e714 100644 --- a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java +++ b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java @@ -62,6 +62,7 @@ public void testConfigDefaultValues_isOk() { assertThat(vector.getHnswConfig().getM(), is(16)); assertThat(vector.getHnswConfig().getEfConstruction(), is(200)); assertThat(vector.getHnswConfig().getMultithreading(), is(0)); + assertThat(vector.getHnswConfig().getQuantizationConfig(), nullValue()); } @Test @@ -84,6 +85,7 @@ public void testConfigExplicitlySetValues_isOk() { assertThat(vector.getHnswConfig().getM(), is(5)); assertThat(vector.getHnswConfig().getEfConstruction(), is(4)); assertThat(vector.getHnswConfig().getMultithreading(), is(1)); + assertThat(vector.getHnswConfig().getQuantizationConfig(), nullValue()); } @Test @@ -154,6 +156,21 @@ static class ItemWithAllConfigValues { private float[] vector; } + @Test + public void testConfigScalarQuantization8Bit_isOk() { + List indexes = scanner.parseIndexes(ItemWithScalarQuantization8BitConfig.class); + ReindexerIndex vector = getIndexByName(indexes, "hnsw_vector"); + + assertThat(vector.getHnswConfig(), notNullValue()); + assertThat(vector.getHnswConfig().getQuantizationConfig(), notNullValue()); + + assertThat(vector.getHnswConfig().getQuantizationConfig().getQuantizationType(), + is("scalar_quantization_8_bit")); + assertThat(vector.getHnswConfig().getQuantizationConfig().getQuantile(), is(0.987f)); + assertThat(vector.getHnswConfig().getQuantizationConfig().getSampleSize(), is(3000)); + assertThat(vector.getHnswConfig().getQuantizationConfig().getQuantizationThreshold(), is(5000)); + } + static class ItemWithNotHnswIndex { @Reindex(name = "id", isPrimaryKey = true) private Integer id; @@ -199,4 +216,12 @@ static class ItemWithoutHnswAnnotation { private float[] vector; } + static class ItemWithScalarQuantization8BitConfig { + @Reindex(name = "id", isPrimaryKey = true) + private Integer id; + + @Reindex(name = "hnsw_vector", type = HNSW) + @Hnsw(metric = Metric.COSINE, dimension = 1024, quantizationConfig = @Hnsw.QuantizationConfig(quantizationType = "scalar_quantization_8_bit", quantile = 0.987f, sampleSize = 3000, quantizationThreshold = 5000)) + private float[] vector; + } } From 9b405a2dfce39c64f21b9d1126a6221cf0fd33f4 Mon Sep 17 00:00:00 2001 From: Maksim Bogatyrev Date: Wed, 8 Apr 2026 12:21:34 +0300 Subject: [PATCH 2/3] #2111 fix by PR comments --- .../java/ru/rt/restream/reindexer/annotations/Hnsw.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java b/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java index 4b21e39..eb418d9 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java @@ -100,17 +100,17 @@ String quantizationType() default ""; /** - * Quantile for scalar quantization. + * Quantile for scalar quantization. Must be in range [0.95, 1.0] */ float quantile() default -1.0f; /** - * Sample size for estimating quantile(s). + * Sample size for estimating quantile(s). Must be in range [1, UINT64_MAX] */ int sampleSize() default 20_000; /** - * Minimal number of points in the index required to enable quantization. + * Minimal number of points in the index required to enable quantization. Must be in range [1, UINT64_MAX] */ int quantizationThreshold() default 100_000; } From 30177a4aff3939bb98ab38ecefc0c8f1475ab3a7 Mon Sep 17 00:00:00 2001 From: Maksim Bogatyrev Date: Wed, 8 Jul 2026 10:48:30 +0300 Subject: [PATCH 3/3] Fix Copyright 2020 -> Copyright 2020-present --- builtin-adapter/BuiltinAdapter.cpp | 2 +- builtin-adapter/BuiltinAdapter.h | 2 +- header.txt | 2 +- src/main/java/ru/rt/restream/reindexer/AggregationResult.java | 2 +- src/main/java/ru/rt/restream/reindexer/CollateMode.java | 2 +- src/main/java/ru/rt/restream/reindexer/EnumType.java | 2 +- src/main/java/ru/rt/restream/reindexer/FieldType.java | 2 +- src/main/java/ru/rt/restream/reindexer/IndexType.java | 2 +- src/main/java/ru/rt/restream/reindexer/Namespace.java | 2 +- src/main/java/ru/rt/restream/reindexer/NamespaceOptions.java | 2 +- src/main/java/ru/rt/restream/reindexer/Query.java | 2 +- src/main/java/ru/rt/restream/reindexer/QueryLogBuilder.java | 2 +- src/main/java/ru/rt/restream/reindexer/QueryResultIterator.java | 2 +- .../java/ru/rt/restream/reindexer/QueryResultJsonIterator.java | 2 +- src/main/java/ru/rt/restream/reindexer/ReindexScanner.java | 2 +- src/main/java/ru/rt/restream/reindexer/Reindexer.java | 2 +- .../java/ru/rt/restream/reindexer/ReindexerConfiguration.java | 2 +- src/main/java/ru/rt/restream/reindexer/ReindexerIndex.java | 2 +- src/main/java/ru/rt/restream/reindexer/ReindexerNamespace.java | 2 +- src/main/java/ru/rt/restream/reindexer/ReindexerResponse.java | 2 +- src/main/java/ru/rt/restream/reindexer/ResultIterator.java | 2 +- src/main/java/ru/rt/restream/reindexer/TimeUnit.java | 2 +- src/main/java/ru/rt/restream/reindexer/Transaction.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Convert.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/Enumerated.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/FullText.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Ivf.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Json.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Metric.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Reindex.java | 2 +- .../reindexer/annotations/ReindexAnnotationScanner.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/Serial.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/Transient.java | 2 +- src/main/java/ru/rt/restream/reindexer/annotations/VecBf.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/package-info.java | 2 +- src/main/java/ru/rt/restream/reindexer/binding/Binding.java | 2 +- src/main/java/ru/rt/restream/reindexer/binding/Consts.java | 2 +- src/main/java/ru/rt/restream/reindexer/binding/QueryResult.java | 2 +- .../ru/rt/restream/reindexer/binding/QueryResultReader.java | 2 +- .../java/ru/rt/restream/reindexer/binding/RequestContext.java | 2 +- .../ru/rt/restream/reindexer/binding/TransactionContext.java | 2 +- .../java/ru/rt/restream/reindexer/binding/builtin/Builtin.java | 2 +- .../rt/restream/reindexer/binding/builtin/BuiltinAdapter.java | 2 +- .../reindexer/binding/builtin/BuiltinRequestContext.java | 2 +- .../reindexer/binding/builtin/BuiltinTransactionContext.java | 2 +- .../ru/rt/restream/reindexer/binding/builtin/package-info.java | 2 +- .../reindexer/binding/builtin/server/BuiltinServer.java | 2 +- .../restream/reindexer/binding/builtin/server/package-info.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/ByteBuffer.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/Connection.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/ConnectionPool.java | 2 +- .../java/ru/rt/restream/reindexer/binding/cproto/Cproto.java | 2 +- .../restream/reindexer/binding/cproto/CprotoRequestContext.java | 2 +- .../reindexer/binding/cproto/CprotoTransactionContext.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/DataSource.java | 2 +- .../reindexer/binding/cproto/DataSourceConfiguration.java | 2 +- .../rt/restream/reindexer/binding/cproto/DataSourceFactory.java | 2 +- .../reindexer/binding/cproto/DataSourceFactoryStrategy.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/ItemReader.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/ItemSerializer.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/ItemWriter.java | 2 +- .../restream/reindexer/binding/cproto/PhysicalConnection.java | 2 +- .../restream/reindexer/binding/cproto/PhysicalDataSource.java | 2 +- .../reindexer/binding/cproto/cjson/CJsonItemWriter.java | 2 +- .../rt/restream/reindexer/binding/cproto/cjson/CjsonArray.java | 2 +- .../restream/reindexer/binding/cproto/cjson/CjsonElement.java | 2 +- .../reindexer/binding/cproto/cjson/CjsonItemReader.java | 2 +- .../reindexer/binding/cproto/cjson/CjsonItemSerializer.java | 2 +- .../rt/restream/reindexer/binding/cproto/cjson/CjsonNull.java | 2 +- .../rt/restream/reindexer/binding/cproto/cjson/CjsonObject.java | 2 +- .../restream/reindexer/binding/cproto/cjson/CjsonPrimitive.java | 2 +- .../rt/restream/reindexer/binding/cproto/cjson/CtagMatcher.java | 2 +- .../restream/reindexer/binding/cproto/cjson/PayloadField.java | 2 +- .../rt/restream/reindexer/binding/cproto/cjson/PayloadType.java | 2 +- .../reindexer/binding/cproto/cjson/encdec/CarrayTag.java | 2 +- .../reindexer/binding/cproto/cjson/encdec/CjsonDecoder.java | 2 +- .../reindexer/binding/cproto/cjson/encdec/CjsonEncoder.java | 2 +- .../rt/restream/reindexer/binding/cproto/cjson/encdec/Ctag.java | 2 +- .../reindexer/binding/cproto/cjson/encdec/package-info.java | 2 +- .../restream/reindexer/binding/cproto/cjson/package-info.java | 2 +- .../reindexer/binding/cproto/json/JsonItemSerializer.java | 2 +- .../rt/restream/reindexer/binding/cproto/json/package-info.java | 2 +- .../ru/rt/restream/reindexer/binding/cproto/package-info.java | 2 +- .../restream/reindexer/binding/cproto/util/ConnectionUtils.java | 2 +- .../rt/restream/reindexer/binding/cproto/util/package-info.java | 2 +- .../rt/restream/reindexer/binding/definition/IndexConfig.java | 2 +- .../restream/reindexer/binding/definition/IndexDefinition.java | 2 +- .../reindexer/binding/definition/NamespaceDefinition.java | 2 +- .../java/ru/rt/restream/reindexer/binding/definition/Nodes.java | 2 +- .../rt/restream/reindexer/binding/definition/package-info.java | 2 +- .../java/ru/rt/restream/reindexer/binding/package-info.java | 2 +- .../java/ru/rt/restream/reindexer/convert/FieldConverter.java | 2 +- .../rt/restream/reindexer/convert/FieldConverterRegistry.java | 2 +- .../reindexer/convert/FieldConverterRegistryFactory.java | 2 +- .../java/ru/rt/restream/reindexer/convert/package-info.java | 2 +- .../ru/rt/restream/reindexer/convert/util/ConversionUtils.java | 2 +- .../ru/rt/restream/reindexer/convert/util/ResolvableType.java | 2 +- .../restream/reindexer/exceptions/IndexConflictException.java | 2 +- .../restream/reindexer/exceptions/InvalidProtocolException.java | 2 +- .../ru/rt/restream/reindexer/exceptions/NetworkException.java | 2 +- .../ru/rt/restream/reindexer/exceptions/ReindexerException.java | 2 +- .../reindexer/exceptions/ReindexerExceptionFactory.java | 2 +- .../reindexer/exceptions/StateInvalidatedException.java | 2 +- .../restream/reindexer/exceptions/UnimplementedException.java | 2 +- .../java/ru/rt/restream/reindexer/exceptions/package-info.java | 2 +- .../java/ru/rt/restream/reindexer/expression/Expression.java | 2 +- .../ru/rt/restream/reindexer/expression/FieldExpression.java | 2 +- .../restream/reindexer/expression/FlatArrayLengthFunction.java | 2 +- .../ru/rt/restream/reindexer/expression/FunctionExpression.java | 2 +- .../ru/rt/restream/reindexer/expression/LiteralExpression.java | 2 +- .../java/ru/rt/restream/reindexer/expression/NowFunction.java | 2 +- .../java/ru/rt/restream/reindexer/expression/SetExpression.java | 2 +- .../ru/rt/restream/reindexer/expression/StringExpression.java | 2 +- .../ru/rt/restream/reindexer/expression/SubQueryExpression.java | 2 +- .../ru/rt/restream/reindexer/expression/WhereExpression.java | 2 +- .../java/ru/rt/restream/reindexer/expression/package-info.java | 2 +- .../java/ru/rt/restream/reindexer/fulltext/FullTextConfig.java | 2 +- src/main/java/ru/rt/restream/reindexer/fulltext/Synonym.java | 2 +- src/main/java/ru/rt/restream/reindexer/package-info.java | 2 +- .../java/ru/rt/restream/reindexer/util/BeanPropertyUtils.java | 2 +- .../java/ru/rt/restream/reindexer/util/CollectionUtils.java | 2 +- src/main/java/ru/rt/restream/reindexer/util/JsonSerializer.java | 2 +- src/main/java/ru/rt/restream/reindexer/util/NativeUtils.java | 2 +- src/main/java/ru/rt/restream/reindexer/util/Pair.java | 2 +- src/main/java/ru/rt/restream/reindexer/util/package-info.java | 2 +- src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java | 2 +- src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java | 2 +- src/main/java/ru/rt/restream/reindexer/vector/IvfConfig.java | 2 +- src/main/java/ru/rt/restream/reindexer/vector/IvfConfigs.java | 2 +- src/main/java/ru/rt/restream/reindexer/vector/VecBfConfig.java | 2 +- src/main/java/ru/rt/restream/reindexer/vector/VecBfConfigs.java | 2 +- .../rt/restream/reindexer/vector/params/BaseKnnSearchParam.java | 2 +- .../rt/restream/reindexer/vector/params/IndexBfSearchParam.java | 2 +- .../restream/reindexer/vector/params/IndexHnswSearchParam.java | 2 +- .../restream/reindexer/vector/params/IndexIvfSearchParam.java | 2 +- .../java/ru/rt/restream/reindexer/vector/params/KnnParams.java | 2 +- .../ru/rt/restream/reindexer/vector/params/KnnSearchParam.java | 2 +- src/test/java/ru/rt/restream/category/BuiltinTest.java | 2 +- src/test/java/ru/rt/restream/category/CprotoTest.java | 2 +- src/test/java/ru/rt/restream/reindexer/TimeUnitTest.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/FullTextTest.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/JsonTest.java | 2 +- .../java/ru/rt/restream/reindexer/annotations/ReindexTest.java | 2 +- .../ru/rt/restream/reindexer/connector/AggregationTest.java | 2 +- .../rt/restream/reindexer/connector/BuiltinAggregationTest.java | 2 +- .../restream/reindexer/connector/BuiltinFloatVectorBfTest.java | 2 +- .../reindexer/connector/BuiltinFloatVectorHnswTest.java | 2 +- .../restream/reindexer/connector/BuiltinFloatVectorIvfTest.java | 2 +- .../restream/reindexer/connector/BuiltinFullTextRankTest.java | 2 +- .../connector/BuiltinHnswQuantizationConfigUpdateTest.java | 2 +- .../restream/reindexer/connector/BuiltinIndexOperationTest.java | 2 +- .../ru/rt/restream/reindexer/connector/BuiltinJoinTest.java | 2 +- .../ru/rt/restream/reindexer/connector/BuiltinMergeTest.java | 2 +- .../rt/restream/reindexer/connector/BuiltinReindexerTest.java | 2 +- .../ru/rt/restream/reindexer/connector/BuiltinSubQueryTest.java | 2 +- .../rt/restream/reindexer/connector/BuiltinVectorRankTest.java | 2 +- .../rt/restream/reindexer/connector/CprotoAggregationTest.java | 2 +- .../restream/reindexer/connector/CprotoFloatVectorBfTest.java | 2 +- .../restream/reindexer/connector/CprotoFloatVectorHnswTest.java | 2 +- .../restream/reindexer/connector/CprotoFloatVectorIvfTest.java | 2 +- .../rt/restream/reindexer/connector/CprotoFullTextRankTest.java | 2 +- .../connector/CprotoHnswQuantizationConfigUpdateTest.java | 2 +- .../restream/reindexer/connector/CprotoIndexOperationTest.java | 2 +- .../java/ru/rt/restream/reindexer/connector/CprotoJoinTest.java | 2 +- .../ru/rt/restream/reindexer/connector/CprotoMergeTest.java | 2 +- .../ru/rt/restream/reindexer/connector/CprotoReindexerTest.java | 2 +- .../ru/rt/restream/reindexer/connector/CprotoSubQueryTest.java | 2 +- .../rt/restream/reindexer/connector/CprotoVectorRankTest.java | 2 +- .../rt/restream/reindexer/connector/CprotosReindexerTest.java | 2 +- .../ru/rt/restream/reindexer/connector/FloatVectorBfTest.java | 2 +- .../ru/rt/restream/reindexer/connector/FloatVectorHnswTest.java | 2 +- .../ru/rt/restream/reindexer/connector/FloatVectorIvfTest.java | 2 +- .../ru/rt/restream/reindexer/connector/FullTextRankTest.java | 2 +- .../reindexer/connector/HnswQuantizationConfigUpdateTest.java | 2 +- .../ru/rt/restream/reindexer/connector/IndexOperationTest.java | 2 +- src/test/java/ru/rt/restream/reindexer/connector/JoinTest.java | 2 +- src/test/java/ru/rt/restream/reindexer/connector/MergeTest.java | 2 +- .../java/ru/rt/restream/reindexer/connector/ReindexerTest.java | 2 +- .../java/ru/rt/restream/reindexer/connector/SubQueryTest.java | 2 +- .../java/ru/rt/restream/reindexer/connector/VectorRankTest.java | 2 +- .../reindexer/convert/FieldConverterRegistryFactoryTest.java | 2 +- .../rt/restream/reindexer/convert/util/ConversionUtilsTest.java | 2 +- src/test/java/ru/rt/restream/reindexer/db/ClearDbReindexer.java | 2 +- src/test/java/ru/rt/restream/reindexer/db/DbBaseTest.java | 2 +- src/test/java/ru/rt/restream/reindexer/db/DbCloseExtension.java | 2 +- src/test/java/ru/rt/restream/reindexer/db/DbLocator.java | 2 +- .../reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java | 2 +- .../fast/ReindexAnnotationScannerIsAppendableIndexTest.java | 2 +- .../reindexer/fast/ReindexAnnotationScannerIvfIndexTest.java | 2 +- .../reindexer/fast/ReindexAnnotationScannerVecBfIndexTest.java | 2 +- .../java/ru/rt/restream/reindexer/util/CollectionUtilsTest.java | 2 +- src/test/java/ru/rt/restream/util/ReindexerUtils.java | 2 +- 193 files changed, 193 insertions(+), 193 deletions(-) diff --git a/builtin-adapter/BuiltinAdapter.cpp b/builtin-adapter/BuiltinAdapter.cpp index 4bcd914..1b677a0 100644 --- a/builtin-adapter/BuiltinAdapter.cpp +++ b/builtin-adapter/BuiltinAdapter.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/builtin-adapter/BuiltinAdapter.h b/builtin-adapter/BuiltinAdapter.h index b60ec97..c5151d0 100644 --- a/builtin-adapter/BuiltinAdapter.h +++ b/builtin-adapter/BuiltinAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/header.txt b/header.txt index 53a7a4f..c5c6aac 100644 --- a/header.txt +++ b/header.txt @@ -1,4 +1,4 @@ -Copyright 2020 Restream +Copyright 2020-present Restream Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/AggregationResult.java b/src/main/java/ru/rt/restream/reindexer/AggregationResult.java index 14d7fef..d10af00 100644 --- a/src/main/java/ru/rt/restream/reindexer/AggregationResult.java +++ b/src/main/java/ru/rt/restream/reindexer/AggregationResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/CollateMode.java b/src/main/java/ru/rt/restream/reindexer/CollateMode.java index 7d2f718..3cb8e96 100644 --- a/src/main/java/ru/rt/restream/reindexer/CollateMode.java +++ b/src/main/java/ru/rt/restream/reindexer/CollateMode.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/EnumType.java b/src/main/java/ru/rt/restream/reindexer/EnumType.java index 8650e10..d4dde25 100644 --- a/src/main/java/ru/rt/restream/reindexer/EnumType.java +++ b/src/main/java/ru/rt/restream/reindexer/EnumType.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/FieldType.java b/src/main/java/ru/rt/restream/reindexer/FieldType.java index 1371cae..a60f4d4 100644 --- a/src/main/java/ru/rt/restream/reindexer/FieldType.java +++ b/src/main/java/ru/rt/restream/reindexer/FieldType.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/IndexType.java b/src/main/java/ru/rt/restream/reindexer/IndexType.java index c5bf59b..d89966c 100644 --- a/src/main/java/ru/rt/restream/reindexer/IndexType.java +++ b/src/main/java/ru/rt/restream/reindexer/IndexType.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/Namespace.java b/src/main/java/ru/rt/restream/reindexer/Namespace.java index dcb5679..ecbb316 100644 --- a/src/main/java/ru/rt/restream/reindexer/Namespace.java +++ b/src/main/java/ru/rt/restream/reindexer/Namespace.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/NamespaceOptions.java b/src/main/java/ru/rt/restream/reindexer/NamespaceOptions.java index 1a74d9f..57be018 100644 --- a/src/main/java/ru/rt/restream/reindexer/NamespaceOptions.java +++ b/src/main/java/ru/rt/restream/reindexer/NamespaceOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/Query.java b/src/main/java/ru/rt/restream/reindexer/Query.java index 45fdabe..b9071ca 100644 --- a/src/main/java/ru/rt/restream/reindexer/Query.java +++ b/src/main/java/ru/rt/restream/reindexer/Query.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/QueryLogBuilder.java b/src/main/java/ru/rt/restream/reindexer/QueryLogBuilder.java index 5ebabdd..0b48bfb 100644 --- a/src/main/java/ru/rt/restream/reindexer/QueryLogBuilder.java +++ b/src/main/java/ru/rt/restream/reindexer/QueryLogBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/QueryResultIterator.java b/src/main/java/ru/rt/restream/reindexer/QueryResultIterator.java index 41eb100..b9a4fc6 100644 --- a/src/main/java/ru/rt/restream/reindexer/QueryResultIterator.java +++ b/src/main/java/ru/rt/restream/reindexer/QueryResultIterator.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/QueryResultJsonIterator.java b/src/main/java/ru/rt/restream/reindexer/QueryResultJsonIterator.java index 7e713de..e1aeafb 100644 --- a/src/main/java/ru/rt/restream/reindexer/QueryResultJsonIterator.java +++ b/src/main/java/ru/rt/restream/reindexer/QueryResultJsonIterator.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/ReindexScanner.java b/src/main/java/ru/rt/restream/reindexer/ReindexScanner.java index 801f99b..ea5b8ae 100644 --- a/src/main/java/ru/rt/restream/reindexer/ReindexScanner.java +++ b/src/main/java/ru/rt/restream/reindexer/ReindexScanner.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/Reindexer.java b/src/main/java/ru/rt/restream/reindexer/Reindexer.java index 0de3798..7a09fe0 100644 --- a/src/main/java/ru/rt/restream/reindexer/Reindexer.java +++ b/src/main/java/ru/rt/restream/reindexer/Reindexer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/ReindexerConfiguration.java b/src/main/java/ru/rt/restream/reindexer/ReindexerConfiguration.java index fe9b225..f5d9068 100644 --- a/src/main/java/ru/rt/restream/reindexer/ReindexerConfiguration.java +++ b/src/main/java/ru/rt/restream/reindexer/ReindexerConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/ReindexerIndex.java b/src/main/java/ru/rt/restream/reindexer/ReindexerIndex.java index 8bca44f..a36a6c1 100644 --- a/src/main/java/ru/rt/restream/reindexer/ReindexerIndex.java +++ b/src/main/java/ru/rt/restream/reindexer/ReindexerIndex.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/ReindexerNamespace.java b/src/main/java/ru/rt/restream/reindexer/ReindexerNamespace.java index 08fe8c0..eea962a 100644 --- a/src/main/java/ru/rt/restream/reindexer/ReindexerNamespace.java +++ b/src/main/java/ru/rt/restream/reindexer/ReindexerNamespace.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/ReindexerResponse.java b/src/main/java/ru/rt/restream/reindexer/ReindexerResponse.java index 3cbd15f..20f1913 100644 --- a/src/main/java/ru/rt/restream/reindexer/ReindexerResponse.java +++ b/src/main/java/ru/rt/restream/reindexer/ReindexerResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/ResultIterator.java b/src/main/java/ru/rt/restream/reindexer/ResultIterator.java index a455bca..5532a6d 100644 --- a/src/main/java/ru/rt/restream/reindexer/ResultIterator.java +++ b/src/main/java/ru/rt/restream/reindexer/ResultIterator.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/TimeUnit.java b/src/main/java/ru/rt/restream/reindexer/TimeUnit.java index 93eee62..c917fbd 100644 --- a/src/main/java/ru/rt/restream/reindexer/TimeUnit.java +++ b/src/main/java/ru/rt/restream/reindexer/TimeUnit.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/Transaction.java b/src/main/java/ru/rt/restream/reindexer/Transaction.java index 469144a..9c01778 100644 --- a/src/main/java/ru/rt/restream/reindexer/Transaction.java +++ b/src/main/java/ru/rt/restream/reindexer/Transaction.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Convert.java b/src/main/java/ru/rt/restream/reindexer/annotations/Convert.java index 97963ce..d591d4e 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Convert.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Convert.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Enumerated.java b/src/main/java/ru/rt/restream/reindexer/annotations/Enumerated.java index 41f8ad8..c06baec 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Enumerated.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Enumerated.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/FullText.java b/src/main/java/ru/rt/restream/reindexer/annotations/FullText.java index 72fd406..d60d3a3 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/FullText.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/FullText.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java b/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java index eb418d9..1c9f4a1 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Hnsw.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Ivf.java b/src/main/java/ru/rt/restream/reindexer/annotations/Ivf.java index a031c71..01359a4 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Ivf.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Ivf.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Json.java b/src/main/java/ru/rt/restream/reindexer/annotations/Json.java index 7eac855..c3b96d8 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Json.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Json.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Metric.java b/src/main/java/ru/rt/restream/reindexer/annotations/Metric.java index b8c2628..e8bc60a 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Metric.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Metric.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Reindex.java b/src/main/java/ru/rt/restream/reindexer/annotations/Reindex.java index 4bfb0d8..d110290 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Reindex.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Reindex.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/ReindexAnnotationScanner.java b/src/main/java/ru/rt/restream/reindexer/annotations/ReindexAnnotationScanner.java index 25b2e2a..3141a7f 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/ReindexAnnotationScanner.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/ReindexAnnotationScanner.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Serial.java b/src/main/java/ru/rt/restream/reindexer/annotations/Serial.java index 8ac5ecf..c4386bb 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Serial.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Serial.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/Transient.java b/src/main/java/ru/rt/restream/reindexer/annotations/Transient.java index 4bd329d..70a4587 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/Transient.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/Transient.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/VecBf.java b/src/main/java/ru/rt/restream/reindexer/annotations/VecBf.java index a586fe3..aa8a854 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/VecBf.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/VecBf.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/annotations/package-info.java b/src/main/java/ru/rt/restream/reindexer/annotations/package-info.java index 267de44..af2fc39 100644 --- a/src/main/java/ru/rt/restream/reindexer/annotations/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/annotations/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/Binding.java b/src/main/java/ru/rt/restream/reindexer/binding/Binding.java index e33f7a5..9784847 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/Binding.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/Binding.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/Consts.java b/src/main/java/ru/rt/restream/reindexer/binding/Consts.java index 56044f6..f17b2e9 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/Consts.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/Consts.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/QueryResult.java b/src/main/java/ru/rt/restream/reindexer/binding/QueryResult.java index 5ff24fe..596e27a 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/QueryResult.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/QueryResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/QueryResultReader.java b/src/main/java/ru/rt/restream/reindexer/binding/QueryResultReader.java index 0b32b0f..f1fbb3d 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/QueryResultReader.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/QueryResultReader.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/RequestContext.java b/src/main/java/ru/rt/restream/reindexer/binding/RequestContext.java index 29660fd..e5a54b3 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/RequestContext.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/RequestContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/TransactionContext.java b/src/main/java/ru/rt/restream/reindexer/binding/TransactionContext.java index 7242734..ccf9f41 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/TransactionContext.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/TransactionContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/Builtin.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/Builtin.java index 2165523..3cd039b 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/Builtin.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/Builtin.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinAdapter.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinAdapter.java index 6aa9534..a76ee6f 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinAdapter.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinRequestContext.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinRequestContext.java index 49bc196..cd94225 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinRequestContext.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinRequestContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinTransactionContext.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinTransactionContext.java index fe3a9d9..c924314 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinTransactionContext.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/BuiltinTransactionContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/package-info.java index b2c956d..5066c85 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/BuiltinServer.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/BuiltinServer.java index bc1f874..ecac870 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/BuiltinServer.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/BuiltinServer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/package-info.java index f26cd23..50ac56d 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/builtin/server/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ByteBuffer.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ByteBuffer.java index edeb571..3f751df 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ByteBuffer.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ByteBuffer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/Connection.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/Connection.java index ed8b7fa..3595730 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/Connection.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/Connection.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ConnectionPool.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ConnectionPool.java index a394f0f..9c90405 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ConnectionPool.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ConnectionPool.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/Cproto.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/Cproto.java index e369b69..a016fab 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/Cproto.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/Cproto.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoRequestContext.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoRequestContext.java index dd6196e..2deb15f 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoRequestContext.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoRequestContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoTransactionContext.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoTransactionContext.java index f38a06a..ec40499 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoTransactionContext.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/CprotoTransactionContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSource.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSource.java index a963106..d893731 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSource.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceConfiguration.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceConfiguration.java index a0e9ad0..7391c59 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceConfiguration.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactory.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactory.java index 128bf82..a95a703 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactory.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactoryStrategy.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactoryStrategy.java index e8032c2..02d3c7a 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactoryStrategy.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/DataSourceFactoryStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemReader.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemReader.java index f525b69..7011132 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemReader.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemReader.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemSerializer.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemSerializer.java index 7d52979..1e4b12f 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemSerializer.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemWriter.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemWriter.java index 8a7c8dc..36c4797 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemWriter.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/ItemWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalConnection.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalConnection.java index e6ad5bd..55990df 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalConnection.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalConnection.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalDataSource.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalDataSource.java index 4ac3455..a587554 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalDataSource.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/PhysicalDataSource.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CJsonItemWriter.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CJsonItemWriter.java index a9a882f..3e5b00a 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CJsonItemWriter.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CJsonItemWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonArray.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonArray.java index 6e798bc..602c942 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonArray.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonArray.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonElement.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonElement.java index 93312b4..9632f6e 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonElement.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonElement.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemReader.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemReader.java index 4de12fc..4465269 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemReader.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemReader.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemSerializer.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemSerializer.java index ad81b14..306c17b 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemSerializer.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonItemSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonNull.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonNull.java index 7c42be2..8433358 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonNull.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonNull.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonObject.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonObject.java index b1c38bb..0c000ea 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonObject.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonObject.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonPrimitive.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonPrimitive.java index c359570..31250c3 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonPrimitive.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CjsonPrimitive.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CtagMatcher.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CtagMatcher.java index 539c1f1..a8caee4 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CtagMatcher.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/CtagMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadField.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadField.java index 1318cdc..248fa22 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadField.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadField.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadType.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadType.java index 6920394..360d4ee 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadType.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/PayloadType.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CarrayTag.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CarrayTag.java index 4b0f372..d031635 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CarrayTag.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CarrayTag.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonDecoder.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonDecoder.java index 67f8469..5e14467 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonDecoder.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonEncoder.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonEncoder.java index 77cbe80..d91e7aa 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonEncoder.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/CjsonEncoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/Ctag.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/Ctag.java index a89114e..510401b 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/Ctag.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/Ctag.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/package-info.java index d8d8e5a..e23334d 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/encdec/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/package-info.java index 0db917f..f1eb5f0 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/cjson/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/JsonItemSerializer.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/JsonItemSerializer.java index 138b569..e1daecc 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/JsonItemSerializer.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/JsonItemSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/package-info.java index cb01565..7e8fb72 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/json/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/package-info.java index 9d2e6a9..7894387 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/ConnectionUtils.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/ConnectionUtils.java index c763127..7aa292e 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/ConnectionUtils.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/ConnectionUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/package-info.java index d9c20d1..0f08cfd 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/cproto/util/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexConfig.java b/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexConfig.java index 1759936..442905f 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexConfig.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexDefinition.java b/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexDefinition.java index 863bb55..77ac197 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexDefinition.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/definition/IndexDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/definition/NamespaceDefinition.java b/src/main/java/ru/rt/restream/reindexer/binding/definition/NamespaceDefinition.java index e261e8e..ba6cd84 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/definition/NamespaceDefinition.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/definition/NamespaceDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/definition/Nodes.java b/src/main/java/ru/rt/restream/reindexer/binding/definition/Nodes.java index 280d8a2..0902516 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/definition/Nodes.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/definition/Nodes.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/definition/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/definition/package-info.java index 8602d53..5fb5ddc 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/definition/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/definition/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/binding/package-info.java b/src/main/java/ru/rt/restream/reindexer/binding/package-info.java index 5c7c365..700fbc8 100644 --- a/src/main/java/ru/rt/restream/reindexer/binding/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/binding/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/convert/FieldConverter.java b/src/main/java/ru/rt/restream/reindexer/convert/FieldConverter.java index 5a5a1aa..856f059 100644 --- a/src/main/java/ru/rt/restream/reindexer/convert/FieldConverter.java +++ b/src/main/java/ru/rt/restream/reindexer/convert/FieldConverter.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistry.java b/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistry.java index 1d88a04..a344cdb 100644 --- a/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistry.java +++ b/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactory.java b/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactory.java index 6829e90..d7f80ad 100644 --- a/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactory.java +++ b/src/main/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/convert/package-info.java b/src/main/java/ru/rt/restream/reindexer/convert/package-info.java index 5d92d69..ec61726 100644 --- a/src/main/java/ru/rt/restream/reindexer/convert/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/convert/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/convert/util/ConversionUtils.java b/src/main/java/ru/rt/restream/reindexer/convert/util/ConversionUtils.java index 827b0c8..1c3a1e1 100644 --- a/src/main/java/ru/rt/restream/reindexer/convert/util/ConversionUtils.java +++ b/src/main/java/ru/rt/restream/reindexer/convert/util/ConversionUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/convert/util/ResolvableType.java b/src/main/java/ru/rt/restream/reindexer/convert/util/ResolvableType.java index ab1bf25..10a10c2 100644 --- a/src/main/java/ru/rt/restream/reindexer/convert/util/ResolvableType.java +++ b/src/main/java/ru/rt/restream/reindexer/convert/util/ResolvableType.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/IndexConflictException.java b/src/main/java/ru/rt/restream/reindexer/exceptions/IndexConflictException.java index b96e18d..acdab06 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/IndexConflictException.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/IndexConflictException.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/InvalidProtocolException.java b/src/main/java/ru/rt/restream/reindexer/exceptions/InvalidProtocolException.java index 32c701c..1df2de6 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/InvalidProtocolException.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/InvalidProtocolException.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/NetworkException.java b/src/main/java/ru/rt/restream/reindexer/exceptions/NetworkException.java index 14eff64..ea52258 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/NetworkException.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/NetworkException.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerException.java b/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerException.java index e6b766c..8bcf938 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerException.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerException.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerExceptionFactory.java b/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerExceptionFactory.java index 65994ac..69fc3bd 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerExceptionFactory.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/ReindexerExceptionFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/StateInvalidatedException.java b/src/main/java/ru/rt/restream/reindexer/exceptions/StateInvalidatedException.java index 9805a56..55ed2ca 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/StateInvalidatedException.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/StateInvalidatedException.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/UnimplementedException.java b/src/main/java/ru/rt/restream/reindexer/exceptions/UnimplementedException.java index 903da48..0415db6 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/UnimplementedException.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/UnimplementedException.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/exceptions/package-info.java b/src/main/java/ru/rt/restream/reindexer/exceptions/package-info.java index 4d301f7..393bd12 100644 --- a/src/main/java/ru/rt/restream/reindexer/exceptions/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/exceptions/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/Expression.java b/src/main/java/ru/rt/restream/reindexer/expression/Expression.java index ae0b590..b7d0760 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/Expression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/Expression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/FieldExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/FieldExpression.java index 7acf61f..88b6c8d 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/FieldExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/FieldExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/FlatArrayLengthFunction.java b/src/main/java/ru/rt/restream/reindexer/expression/FlatArrayLengthFunction.java index faa8c18..6997996 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/FlatArrayLengthFunction.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/FlatArrayLengthFunction.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/FunctionExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/FunctionExpression.java index 602d10b..a3fbda6 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/FunctionExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/FunctionExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/LiteralExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/LiteralExpression.java index 1901f41..a260d8a 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/LiteralExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/LiteralExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/NowFunction.java b/src/main/java/ru/rt/restream/reindexer/expression/NowFunction.java index 7f420a4..51a19d2 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/NowFunction.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/NowFunction.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/SetExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/SetExpression.java index 60a30ce..722fc8f 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/SetExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/SetExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/StringExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/StringExpression.java index 8be0865..b3ac832 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/StringExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/StringExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/SubQueryExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/SubQueryExpression.java index 41e5732..59dd687 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/SubQueryExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/SubQueryExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/WhereExpression.java b/src/main/java/ru/rt/restream/reindexer/expression/WhereExpression.java index e9594b4..0ffeb9a 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/WhereExpression.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/WhereExpression.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/expression/package-info.java b/src/main/java/ru/rt/restream/reindexer/expression/package-info.java index f2f8303..8d62a4d 100644 --- a/src/main/java/ru/rt/restream/reindexer/expression/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/expression/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/fulltext/FullTextConfig.java b/src/main/java/ru/rt/restream/reindexer/fulltext/FullTextConfig.java index 3035af1..a187d14 100644 --- a/src/main/java/ru/rt/restream/reindexer/fulltext/FullTextConfig.java +++ b/src/main/java/ru/rt/restream/reindexer/fulltext/FullTextConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/fulltext/Synonym.java b/src/main/java/ru/rt/restream/reindexer/fulltext/Synonym.java index 1aeb9a0..e57d60e 100644 --- a/src/main/java/ru/rt/restream/reindexer/fulltext/Synonym.java +++ b/src/main/java/ru/rt/restream/reindexer/fulltext/Synonym.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/package-info.java b/src/main/java/ru/rt/restream/reindexer/package-info.java index 7f66ac8..cac6178 100644 --- a/src/main/java/ru/rt/restream/reindexer/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/util/BeanPropertyUtils.java b/src/main/java/ru/rt/restream/reindexer/util/BeanPropertyUtils.java index cb87627..a7d2ff1 100644 --- a/src/main/java/ru/rt/restream/reindexer/util/BeanPropertyUtils.java +++ b/src/main/java/ru/rt/restream/reindexer/util/BeanPropertyUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/util/CollectionUtils.java b/src/main/java/ru/rt/restream/reindexer/util/CollectionUtils.java index 6dd01a8..6ad36f0 100644 --- a/src/main/java/ru/rt/restream/reindexer/util/CollectionUtils.java +++ b/src/main/java/ru/rt/restream/reindexer/util/CollectionUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/util/JsonSerializer.java b/src/main/java/ru/rt/restream/reindexer/util/JsonSerializer.java index fac8577..76ff856 100644 --- a/src/main/java/ru/rt/restream/reindexer/util/JsonSerializer.java +++ b/src/main/java/ru/rt/restream/reindexer/util/JsonSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/util/NativeUtils.java b/src/main/java/ru/rt/restream/reindexer/util/NativeUtils.java index e44117e..0ca1353 100644 --- a/src/main/java/ru/rt/restream/reindexer/util/NativeUtils.java +++ b/src/main/java/ru/rt/restream/reindexer/util/NativeUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/util/Pair.java b/src/main/java/ru/rt/restream/reindexer/util/Pair.java index 54d1d75..88db015 100644 --- a/src/main/java/ru/rt/restream/reindexer/util/Pair.java +++ b/src/main/java/ru/rt/restream/reindexer/util/Pair.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/util/package-info.java b/src/main/java/ru/rt/restream/reindexer/util/package-info.java index b2af7e8..83cb12d 100644 --- a/src/main/java/ru/rt/restream/reindexer/util/package-info.java +++ b/src/main/java/ru/rt/restream/reindexer/util/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java index 9de53dd..ce24fa2 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java index f0cdaf7..dbc0278 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/HnswConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/IvfConfig.java b/src/main/java/ru/rt/restream/reindexer/vector/IvfConfig.java index 1cbbf3a..c8329a3 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/IvfConfig.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/IvfConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/IvfConfigs.java b/src/main/java/ru/rt/restream/reindexer/vector/IvfConfigs.java index 3a52a14..285eb93 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/IvfConfigs.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/IvfConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfig.java b/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfig.java index 3436191..f944f71 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfig.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfigs.java b/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfigs.java index 88b3c27..92ea6a2 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfigs.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/VecBfConfigs.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/params/BaseKnnSearchParam.java b/src/main/java/ru/rt/restream/reindexer/vector/params/BaseKnnSearchParam.java index a644532..39dff38 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/params/BaseKnnSearchParam.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/params/BaseKnnSearchParam.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/params/IndexBfSearchParam.java b/src/main/java/ru/rt/restream/reindexer/vector/params/IndexBfSearchParam.java index a146666..dfa32d3 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/params/IndexBfSearchParam.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/params/IndexBfSearchParam.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/params/IndexHnswSearchParam.java b/src/main/java/ru/rt/restream/reindexer/vector/params/IndexHnswSearchParam.java index 5144c71..33060e9 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/params/IndexHnswSearchParam.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/params/IndexHnswSearchParam.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/params/IndexIvfSearchParam.java b/src/main/java/ru/rt/restream/reindexer/vector/params/IndexIvfSearchParam.java index bcfc89f..ac63a59 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/params/IndexIvfSearchParam.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/params/IndexIvfSearchParam.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/params/KnnParams.java b/src/main/java/ru/rt/restream/reindexer/vector/params/KnnParams.java index d399962..b3b1ca9 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/params/KnnParams.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/params/KnnParams.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/ru/rt/restream/reindexer/vector/params/KnnSearchParam.java b/src/main/java/ru/rt/restream/reindexer/vector/params/KnnSearchParam.java index 9c2558c..18f1584 100644 --- a/src/main/java/ru/rt/restream/reindexer/vector/params/KnnSearchParam.java +++ b/src/main/java/ru/rt/restream/reindexer/vector/params/KnnSearchParam.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/category/BuiltinTest.java b/src/test/java/ru/rt/restream/category/BuiltinTest.java index 3ea538d..b4f8858 100644 --- a/src/test/java/ru/rt/restream/category/BuiltinTest.java +++ b/src/test/java/ru/rt/restream/category/BuiltinTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/category/CprotoTest.java b/src/test/java/ru/rt/restream/category/CprotoTest.java index e19bee9..f2b20a9 100644 --- a/src/test/java/ru/rt/restream/category/CprotoTest.java +++ b/src/test/java/ru/rt/restream/category/CprotoTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/TimeUnitTest.java b/src/test/java/ru/rt/restream/reindexer/TimeUnitTest.java index 0ff6d53..434e180 100644 --- a/src/test/java/ru/rt/restream/reindexer/TimeUnitTest.java +++ b/src/test/java/ru/rt/restream/reindexer/TimeUnitTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/annotations/FullTextTest.java b/src/test/java/ru/rt/restream/reindexer/annotations/FullTextTest.java index 04ff8c3..ebc0205 100644 --- a/src/test/java/ru/rt/restream/reindexer/annotations/FullTextTest.java +++ b/src/test/java/ru/rt/restream/reindexer/annotations/FullTextTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/annotations/JsonTest.java b/src/test/java/ru/rt/restream/reindexer/annotations/JsonTest.java index 80d2979..36d4443 100644 --- a/src/test/java/ru/rt/restream/reindexer/annotations/JsonTest.java +++ b/src/test/java/ru/rt/restream/reindexer/annotations/JsonTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/annotations/ReindexTest.java b/src/test/java/ru/rt/restream/reindexer/annotations/ReindexTest.java index e360ec3..0d52821 100644 --- a/src/test/java/ru/rt/restream/reindexer/annotations/ReindexTest.java +++ b/src/test/java/ru/rt/restream/reindexer/annotations/ReindexTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/AggregationTest.java b/src/test/java/ru/rt/restream/reindexer/connector/AggregationTest.java index 65b4a58..2af9d54 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/AggregationTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/AggregationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinAggregationTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinAggregationTest.java index 2d238c9..0eed212 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinAggregationTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinAggregationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorBfTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorBfTest.java index d784338..28f4a91 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorBfTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorBfTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorHnswTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorHnswTest.java index 9af1214..3e79726 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorHnswTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorHnswTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorIvfTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorIvfTest.java index dd175bb..6df5875 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorIvfTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFloatVectorIvfTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFullTextRankTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFullTextRankTest.java index a3e1195..e065e33 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFullTextRankTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinFullTextRankTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java index a6e4031..dff5949 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinHnswQuantizationConfigUpdateTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinIndexOperationTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinIndexOperationTest.java index 6f57c7f..eff37ad 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinIndexOperationTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinIndexOperationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinJoinTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinJoinTest.java index d71873e..facd95f 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinJoinTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinJoinTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinMergeTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinMergeTest.java index 845c4fd..617ebcf 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinMergeTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinMergeTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinReindexerTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinReindexerTest.java index ec38419..d8d3e7b 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinReindexerTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinReindexerTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinSubQueryTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinSubQueryTest.java index c060b87..12a873f 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinSubQueryTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinSubQueryTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinVectorRankTest.java b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinVectorRankTest.java index 8926182..c7f7a8c 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/BuiltinVectorRankTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/BuiltinVectorRankTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoAggregationTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoAggregationTest.java index 8b26437..b13ae93 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoAggregationTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoAggregationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorBfTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorBfTest.java index e1b34e7..7104caf 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorBfTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorBfTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorHnswTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorHnswTest.java index ba202a7..8d6f5ff 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorHnswTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorHnswTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorIvfTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorIvfTest.java index 33ab72a..d266a50 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorIvfTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFloatVectorIvfTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFullTextRankTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFullTextRankTest.java index 50790d1..56b6900 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoFullTextRankTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoFullTextRankTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java index eeb07db..74a347e 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoHnswQuantizationConfigUpdateTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoIndexOperationTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoIndexOperationTest.java index cf518b6..3815ef6 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoIndexOperationTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoIndexOperationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoJoinTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoJoinTest.java index 37560c4..a02788b 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoJoinTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoJoinTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoMergeTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoMergeTest.java index 8334672..d14aa00 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoMergeTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoMergeTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoReindexerTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoReindexerTest.java index 0e4de3b..e6a3178 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoReindexerTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoReindexerTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoSubQueryTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoSubQueryTest.java index 2b8bf18..4ba08c8 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoSubQueryTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoSubQueryTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotoVectorRankTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotoVectorRankTest.java index d3a2324..d3dbcf1 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotoVectorRankTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotoVectorRankTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/CprotosReindexerTest.java b/src/test/java/ru/rt/restream/reindexer/connector/CprotosReindexerTest.java index c3c00db..432f3d6 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/CprotosReindexerTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/CprotosReindexerTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorBfTest.java b/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorBfTest.java index cd6631a..5bf6e59 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorBfTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorBfTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorHnswTest.java b/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorHnswTest.java index 486371c..e42e2bf 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorHnswTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorHnswTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorIvfTest.java b/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorIvfTest.java index 10abe96..d6e7ccf 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorIvfTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/FloatVectorIvfTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/FullTextRankTest.java b/src/test/java/ru/rt/restream/reindexer/connector/FullTextRankTest.java index dbf848d..a31989d 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/FullTextRankTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/FullTextRankTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java b/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java index def5679..f7222cb 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/HnswQuantizationConfigUpdateTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/IndexOperationTest.java b/src/test/java/ru/rt/restream/reindexer/connector/IndexOperationTest.java index 7a33c35..afeb792 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/IndexOperationTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/IndexOperationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/JoinTest.java b/src/test/java/ru/rt/restream/reindexer/connector/JoinTest.java index 9519e4e..dcda26c 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/JoinTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/JoinTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/MergeTest.java b/src/test/java/ru/rt/restream/reindexer/connector/MergeTest.java index ddf2d15..6785032 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/MergeTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/MergeTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/ReindexerTest.java b/src/test/java/ru/rt/restream/reindexer/connector/ReindexerTest.java index 1fb0c7d..1cf7705 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/ReindexerTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/ReindexerTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/SubQueryTest.java b/src/test/java/ru/rt/restream/reindexer/connector/SubQueryTest.java index 93c9113..9641c18 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/SubQueryTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/SubQueryTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/connector/VectorRankTest.java b/src/test/java/ru/rt/restream/reindexer/connector/VectorRankTest.java index 40abb1d..7d5b8c4 100644 --- a/src/test/java/ru/rt/restream/reindexer/connector/VectorRankTest.java +++ b/src/test/java/ru/rt/restream/reindexer/connector/VectorRankTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactoryTest.java b/src/test/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactoryTest.java index bdbcdbb..befc249 100644 --- a/src/test/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactoryTest.java +++ b/src/test/java/ru/rt/restream/reindexer/convert/FieldConverterRegistryFactoryTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/convert/util/ConversionUtilsTest.java b/src/test/java/ru/rt/restream/reindexer/convert/util/ConversionUtilsTest.java index 5508169..45baa4a 100644 --- a/src/test/java/ru/rt/restream/reindexer/convert/util/ConversionUtilsTest.java +++ b/src/test/java/ru/rt/restream/reindexer/convert/util/ConversionUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/db/ClearDbReindexer.java b/src/test/java/ru/rt/restream/reindexer/db/ClearDbReindexer.java index a16a260..0cfc80c 100644 --- a/src/test/java/ru/rt/restream/reindexer/db/ClearDbReindexer.java +++ b/src/test/java/ru/rt/restream/reindexer/db/ClearDbReindexer.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/db/DbBaseTest.java b/src/test/java/ru/rt/restream/reindexer/db/DbBaseTest.java index 12f5dcf..18f08ea 100644 --- a/src/test/java/ru/rt/restream/reindexer/db/DbBaseTest.java +++ b/src/test/java/ru/rt/restream/reindexer/db/DbBaseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/db/DbCloseExtension.java b/src/test/java/ru/rt/restream/reindexer/db/DbCloseExtension.java index 46c8295..792f8b7 100644 --- a/src/test/java/ru/rt/restream/reindexer/db/DbCloseExtension.java +++ b/src/test/java/ru/rt/restream/reindexer/db/DbCloseExtension.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/db/DbLocator.java b/src/test/java/ru/rt/restream/reindexer/db/DbLocator.java index 2bbeae3..42f3175 100644 --- a/src/test/java/ru/rt/restream/reindexer/db/DbLocator.java +++ b/src/test/java/ru/rt/restream/reindexer/db/DbLocator.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java index d34e714..6017fbc 100644 --- a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java +++ b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerHnswIndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIsAppendableIndexTest.java b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIsAppendableIndexTest.java index 977d2e8..f8f5dd0 100644 --- a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIsAppendableIndexTest.java +++ b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIsAppendableIndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIvfIndexTest.java b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIvfIndexTest.java index c7b8109..a344cd6 100644 --- a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIvfIndexTest.java +++ b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerIvfIndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerVecBfIndexTest.java b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerVecBfIndexTest.java index 5d7d611..6302a54 100644 --- a/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerVecBfIndexTest.java +++ b/src/test/java/ru/rt/restream/reindexer/fast/ReindexAnnotationScannerVecBfIndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/reindexer/util/CollectionUtilsTest.java b/src/test/java/ru/rt/restream/reindexer/util/CollectionUtilsTest.java index d80b43a..3fb4938 100644 --- a/src/test/java/ru/rt/restream/reindexer/util/CollectionUtilsTest.java +++ b/src/test/java/ru/rt/restream/reindexer/util/CollectionUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/ru/rt/restream/util/ReindexerUtils.java b/src/test/java/ru/rt/restream/util/ReindexerUtils.java index d37ac5e..0084adf 100644 --- a/src/test/java/ru/rt/restream/util/ReindexerUtils.java +++ b/src/test/java/ru/rt/restream/util/ReindexerUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Restream + * Copyright 2020-present Restream * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.