From 5c0f4b507badebbd51f3e526be137011a87daf85 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 24 Feb 2021 13:13:21 +0000 Subject: [PATCH 001/155] Bump equalsverifier from 3.5.2 to 3.5.5 Bumps [equalsverifier](https://github.com/jqno/equalsverifier) from 3.5.2 to 3.5.5. - [Release notes](https://github.com/jqno/equalsverifier/releases) - [Changelog](https://github.com/jqno/equalsverifier/blob/main/CHANGELOG.md) - [Commits](https://github.com/jqno/equalsverifier/compare/equalsverifier-3.5.2...equalsverifier-3.5.5) Signed-off-by: dependabot-preview[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1fcb7ca80..ae464fa32 100644 --- a/pom.xml +++ b/pom.xml @@ -416,7 +416,7 @@ nl.jqno.equalsverifier equalsverifier - 3.5.2 + 3.5.5 test From e57c30bc9334d38903499a14bf0edb1ed0882d44 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 2 Mar 2021 13:13:05 +0000 Subject: [PATCH 002/155] Bump commons-lang3 from 3.11 to 3.12.0 Bumps commons-lang3 from 3.11 to 3.12.0. Signed-off-by: dependabot-preview[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1fcb7ca80..b0cccfd1a 100644 --- a/pom.xml +++ b/pom.xml @@ -264,7 +264,7 @@ org.apache.commons commons-lang3 - 3.11 + 3.12.0 org.apache.httpcomponents From 28a7fd60deb7b2f13b9fb7a096bda81c748f0d2e Mon Sep 17 00:00:00 2001 From: Petr Jeske Date: Tue, 23 Feb 2021 23:07:18 +0100 Subject: [PATCH 003/155] Added new models for AccessLog API --- .../sdk/model/auditevent/AccessLog.java | 96 +++++++++++++++ .../sdk/model/auditevent/AccessLogs.java | 39 +++++++ .../auditevent/AccessLogsDeserializer.java | 22 ++++ .../auditevent/AccessLogsSerializer.java | 14 +++ .../sdk/model/auditevent/AccessLogTest.java | 47 ++++++++ .../sdk/model/auditevent/AccessLogsTest.java | 78 +++++++++++++ .../test/resources/auditevents/accessLog.json | 13 +++ .../resources/auditevents/accessLogs.json | 38 ++++++ .../auditevents/emptyAccessLogs.json | 11 ++ .../auditevent/AuditEventPageRequest.java | 42 +------ .../auditevent/TimeFilterPageRequest.java | 104 +++++++++++++++++ .../auditevent/TimeFilterPageRequestTest.java | 109 ++++++++++++++++++ 12 files changed, 574 insertions(+), 39 deletions(-) create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java create mode 100644 gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java create mode 100644 gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java create mode 100644 gooddata-java-model/src/test/resources/auditevents/accessLog.json create mode 100644 gooddata-java-model/src/test/resources/auditevents/accessLogs.json create mode 100644 gooddata-java-model/src/test/resources/auditevents/emptyAccessLogs.json create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java create mode 100644 gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java new file mode 100644 index 000000000..316629d86 --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java @@ -0,0 +1,96 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.auditevent; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonTypeInfo; +import com.fasterxml.jackson.annotation.JsonTypeName; +import com.gooddata.sdk.common.util.GoodDataToStringBuilder; +import com.gooddata.sdk.common.util.ISOZonedDateTime; + +import java.time.ZonedDateTime; + +/** + * Model class, used for special audit log events/access logs directly from haproxy, + * that represents access logs for particular hosts. + */ +@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME) +@JsonTypeName("accessLog") +@JsonIgnoreProperties(ignoreUnknown = true) +public class AccessLog { + + public static final String RESOURCE_URI = "/gdc/domains/{domainId}/accessLogs"; + + private final String id; + private final String host; + private final String path; + private final String method; + private final String code; + private final String size; + private final String userIp; + @ISOZonedDateTime + private final ZonedDateTime occurred; + @ISOZonedDateTime + private final ZonedDateTime recorded; + + @JsonCreator + public AccessLog(@JsonProperty("id") String id, @JsonProperty("host") String host, @JsonProperty("path") String path, + @JsonProperty("method") String method, @JsonProperty("code") String code, @JsonProperty("size") String size, + @JsonProperty("userIp") String userIp, @JsonProperty("occurred") ZonedDateTime occurred, @JsonProperty("recorded") ZonedDateTime recorded) { + this.id = id; + this.host = host; + this.path = path; + this.method = method; + this.code = code; + this.size = size; + this.userIp = userIp; + this.occurred = occurred; + this.recorded = recorded; + } + + public String getId() { + return id; + } + + public String getHost() { + return host; + } + + public String getPath() { + return path; + } + + public String getMethod() { + return method; + } + + public String getCode() { + return code; + } + + public String getSize() { + return size; + } + + public String getUserIp() { + return userIp; + } + + public ZonedDateTime getOccurred() { + return occurred; + } + + public ZonedDateTime getRecorded() { + return recorded; + } + + @Override + public String toString() { + return GoodDataToStringBuilder.defaultToString(this); + } +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java new file mode 100644 index 000000000..def336394 --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.auditevent; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonTypeInfo; +import com.fasterxml.jackson.annotation.JsonTypeName; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.gooddata.sdk.common.collections.Page; +import com.gooddata.sdk.common.collections.Paging; + +import java.util.List; +import java.util.Map; + +@JsonTypeInfo( + include = JsonTypeInfo.As.WRAPPER_OBJECT, + use = JsonTypeInfo.Id.NAME +) +@JsonTypeName("accessLogs") +@JsonIgnoreProperties( + ignoreUnknown = true +) +@JsonSerialize( + using = AccessLogsSerializer.class +) +@JsonDeserialize( + using = AccessLogsDeserializer.class +) +public class AccessLogs extends Page { + static final String ROOT_NODE = "accessLogs"; + + public AccessLogs(List items, Paging paging, Map links) { + super(items, paging, links); + } +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java new file mode 100644 index 000000000..70f73ebaa --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java @@ -0,0 +1,22 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.auditevent; + +import com.gooddata.sdk.common.collections.PageDeserializer; +import com.gooddata.sdk.common.collections.Paging; + +import java.util.List; +import java.util.Map; + +public class AccessLogsDeserializer extends PageDeserializer { + + public AccessLogsDeserializer() { super(AccessLog.class); } + + @Override + protected AccessLogs createPage(List items, Paging paging, Map links) { + return new AccessLogs(items, paging, links); + } +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java new file mode 100644 index 000000000..3103b9490 --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java @@ -0,0 +1,14 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.auditevent; + +import com.gooddata.sdk.common.collections.PageSerializer; + +public class AccessLogsSerializer extends PageSerializer { + public AccessLogsSerializer() { + super(AccessLogs.ROOT_NODE); + } +} diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java new file mode 100644 index 000000000..d9269afa5 --- /dev/null +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.auditevent; + +import org.testng.annotations.Test; + +import java.time.LocalDate; +import java.time.ZonedDateTime; + +import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; +import static java.time.ZoneOffset.UTC; +import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals; +import static net.javacrumbs.jsonunit.core.util.ResourceUtils.resource; +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.CoreMatchers.notNullValue; +import static org.hamcrest.MatcherAssert.assertThat; + +public class AccessLogTest { + + private static final ZonedDateTime DATE = ZonedDateTime.of(LocalDate.of(1993, 3, 9).atStartOfDay(), UTC); + + private final AccessLog ACCESS_LOG = new AccessLog("123", "visa.gooddata.com", "/gdc/ping", "GET", "200", "2231", "127.0.0.1", DATE, DATE); + + @Test + public void testSerialize() throws Exception { + assertThat(ACCESS_LOG, jsonEquals(resource("auditevents/accessLog.json"))); + } + + @Test + public void testDeserialize() throws Exception { + final AccessLog deserializedObject = readObjectFromResource("/auditevents/accessLog.json", AccessLog.class); + assertThat(deserializedObject, notNullValue()); + assertThat(deserializedObject.getId(), is(ACCESS_LOG.getId())); + assertThat(deserializedObject.getHost(), is(ACCESS_LOG.getHost())); + assertThat(deserializedObject.getPath(), is(ACCESS_LOG.getPath())); + assertThat(deserializedObject.getMethod(), is(ACCESS_LOG.getMethod())); + assertThat(deserializedObject.getCode(), is(ACCESS_LOG.getCode())); + assertThat(deserializedObject.getSize(), is(ACCESS_LOG.getSize())); + assertThat(deserializedObject.getUserIp(), is(ACCESS_LOG.getUserIp())); + assertThat(deserializedObject.getOccurred(), is(ACCESS_LOG.getOccurred())); + assertThat(deserializedObject.getRecorded(), is(ACCESS_LOG.getRecorded())); + } + +} diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java new file mode 100644 index 000000000..b5f75a042 --- /dev/null +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java @@ -0,0 +1,78 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.auditevent; + +import com.gooddata.sdk.common.collections.Paging; +import org.springframework.web.util.UriTemplate; +import org.testng.annotations.Test; + +import java.time.LocalDate; +import java.time.ZonedDateTime; +import java.util.Collections; +import java.util.List; + +import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; +import static java.time.ZoneOffset.UTC; +import static java.util.Arrays.asList; +import static java.util.Collections.singletonMap; +import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals; +import static net.javacrumbs.jsonunit.core.util.ResourceUtils.resource; +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.CoreMatchers.nullValue; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.hasSize; + +public class AccessLogsTest { + + private static final ZonedDateTime DATE = ZonedDateTime.of(LocalDate.of(1993, 3, 9).atStartOfDay(), UTC); + + private final AccessLog ACCESS_LOG_1 = new AccessLog("123", "visa.gooddata.com", "/gdc/ping", "GET", "200", "2231", "127.0.0.1", DATE, DATE); + private final AccessLog ACCESS_LOG_2 = new AccessLog("456", "mastercard.gooddata.com", "/gdc/ping", "GET", "200", "2231", "127.0.0.1", DATE, DATE); + + private static final String DOMAIN = "default"; + private static final String RESOURCE_URI = new UriTemplate(AccessLog.RESOURCE_URI).expand(DOMAIN).toString(); + private static final String RESOURCE_NEXT_URI = RESOURCE_URI + "?offset=456"; + + private final AccessLogs ACCESS_LOGS = new AccessLogs( + asList(ACCESS_LOG_1, ACCESS_LOG_2), + new Paging(RESOURCE_NEXT_URI), + singletonMap("self", RESOURCE_URI) + ); + + private final AccessLogs EMPTY_ACCESS_LOGS = new AccessLogs( + Collections.emptyList(), + new Paging(null), + singletonMap("self", RESOURCE_URI) + ); + + @Test + public void shouldSerialize() throws Exception { + assertThat(ACCESS_LOGS, jsonEquals(resource("auditevents/accessLogs.json"))); + } + + @Test + public void shouldDeserialize() throws Exception { + final AccessLogs deserialized = readObjectFromResource("/auditevents/accessLogs.json", AccessLogs.class); + assertThat(deserialized.getPaging().getNextUri(), is(RESOURCE_NEXT_URI)); + final List pageItems = deserialized.getPageItems(); + assertThat(pageItems, hasSize(2)); + assertThat(pageItems.get(0).getId(), is(ACCESS_LOG_1.getId())); + assertThat(pageItems.get(1).getId(), is(ACCESS_LOG_2.getId())); + } + + @Test + public void testSerializeEmptyAccessLogs() throws Exception { + assertThat(EMPTY_ACCESS_LOGS, jsonEquals(resource("auditevents/emptyAccessLogs.json"))); + } + + @Test + public void testDeserializeEmptyEvents() throws Exception { + final AccessLogs deserialized = readObjectFromResource("/auditevents/emptyAccessLogs.json", AccessLogs.class); + assertThat(deserialized.getPaging().getNextUri(), nullValue()); + assertThat(deserialized.getPageItems(), hasSize(0)); + } + +} diff --git a/gooddata-java-model/src/test/resources/auditevents/accessLog.json b/gooddata-java-model/src/test/resources/auditevents/accessLog.json new file mode 100644 index 000000000..118b2e965 --- /dev/null +++ b/gooddata-java-model/src/test/resources/auditevents/accessLog.json @@ -0,0 +1,13 @@ +{ + "accessLog": { + "id": "123", + "host": "visa.gooddata.com", + "path": "/gdc/ping", + "method": "GET", + "code": "200", + "size": "2231", + "userIp": "127.0.0.1", + "occurred": "1993-03-09T00:00:00.000Z", + "recorded": "1993-03-09T00:00:00.000Z" + } +} diff --git a/gooddata-java-model/src/test/resources/auditevents/accessLogs.json b/gooddata-java-model/src/test/resources/auditevents/accessLogs.json new file mode 100644 index 000000000..0c8d59ecd --- /dev/null +++ b/gooddata-java-model/src/test/resources/auditevents/accessLogs.json @@ -0,0 +1,38 @@ +{ + "accessLogs": { + "items": [ + { + "accessLog": { + "id": "123", + "host": "visa.gooddata.com", + "path": "/gdc/ping", + "method": "GET", + "code": "200", + "size": "2231", + "userIp": "127.0.0.1", + "occurred": "1993-03-09T00:00:00.000Z", + "recorded": "1993-03-09T00:00:00.000Z" + } + }, + { + "accessLog": { + "id": "456", + "host": "mastercard.gooddata.com", + "path": "/gdc/ping", + "method": "GET", + "code": "200", + "size": "2231", + "userIp": "127.0.0.1", + "occurred": "1993-03-09T00:00:00.000Z", + "recorded": "1993-03-09T00:00:00.000Z" + } + } + ], + "paging": { + "next": "/gdc/domains/default/accessLogs?offset=456" + }, + "links": { + "self": "/gdc/domains/default/accessLogs" + } + } +} diff --git a/gooddata-java-model/src/test/resources/auditevents/emptyAccessLogs.json b/gooddata-java-model/src/test/resources/auditevents/emptyAccessLogs.json new file mode 100644 index 000000000..a2f22f479 --- /dev/null +++ b/gooddata-java-model/src/test/resources/auditevents/emptyAccessLogs.json @@ -0,0 +1,11 @@ +{ + "accessLogs": { + "items": [ + ], + "paging": { + }, + "links": { + "self": "/gdc/domains/default/accessLogs" + } + } +} \ No newline at end of file diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java index 1e5d3e26e..4b13de613 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java @@ -1,57 +1,26 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ package com.gooddata.sdk.service.auditevent; -import com.gooddata.sdk.common.collections.CustomPageRequest; import com.gooddata.sdk.common.util.GoodDataToStringBuilder; -import com.gooddata.sdk.common.util.ISOZonedDateTime; import com.gooddata.sdk.common.util.MutableUri; import org.springframework.beans.BeanUtils; -import java.time.ZonedDateTime; - -import static java.time.ZoneOffset.UTC; import static org.apache.commons.lang3.Validate.notNull; /** * Class to encapsulate time filtering and paging parameters */ -public final class AuditEventPageRequest extends CustomPageRequest { - - private ZonedDateTime from; - - private ZonedDateTime to; +public final class AuditEventPageRequest extends TimeFilterPageRequest { private String type; public AuditEventPageRequest() { } - public ZonedDateTime getFrom() { - return from; - } - - /** - * Specify lower bound of interval - */ - public void setFrom(final ZonedDateTime from) { - this.from = from; - } - - public ZonedDateTime getTo() { - return to; - } - - /** - * Specify upper bound of interval - */ - public void setTo(final ZonedDateTime to) { - this.to = to; - } - public String getType() { return type; } @@ -95,12 +64,7 @@ public AuditEventPageRequest withIncrementedLimit() { @Override public MutableUri updateWithPageParams(final MutableUri builder) { MutableUri builderWithPaging = super.updateWithPageParams(builder); - if (from != null) { - builderWithPaging.replaceQueryParam("from", ISOZonedDateTime.FORMATTER.format(from.withZoneSameInstant(UTC))); - } - if (to != null) { - builderWithPaging.replaceQueryParam("to", ISOZonedDateTime.FORMATTER.format(to.withZoneSameInstant(UTC))); - } + if (type != null) { builderWithPaging.replaceQueryParam("type", type); } diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java new file mode 100644 index 000000000..721f5d69c --- /dev/null +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java @@ -0,0 +1,104 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.service.auditevent; + +import com.gooddata.sdk.common.collections.CustomPageRequest; +import com.gooddata.sdk.common.util.GoodDataToStringBuilder; +import com.gooddata.sdk.common.util.ISOZonedDateTime; +import com.gooddata.sdk.common.util.MutableUri; +import com.gooddata.sdk.common.util.Validate; +import org.springframework.beans.BeanUtils; + +import java.time.ZoneOffset; +import java.time.ZonedDateTime; + +/** + * Class to encapsulate time filtering + */ +public class TimeFilterPageRequest extends CustomPageRequest { + protected ZonedDateTime from; + protected ZonedDateTime to; + + public TimeFilterPageRequest() { + } + + public ZonedDateTime getFrom() { + return this.from; + } + + public void setFrom(ZonedDateTime from) { + this.from = from; + } + + public ZonedDateTime getTo() { + return this.to; + } + + public void setTo(ZonedDateTime to) { + this.to = to; + } + + public static TimeFilterPageRequest copy(TimeFilterPageRequest source) { + Validate.notNull(source, "source cannot be null"); + TimeFilterPageRequest copy = new TimeFilterPageRequest(); + BeanUtils.copyProperties(source, copy); + return copy; + } + + public TimeFilterPageRequest withIncrementedLimit() { + TimeFilterPageRequest copy = copy(this); + copy.setLimit(this.getSanitizedLimit() + 1); + return copy; + } + + @Override + public MutableUri updateWithPageParams(MutableUri builder) { + MutableUri builderWithPaging = super.updateWithPageParams(builder); + if (this.from != null) { + builderWithPaging.replaceQueryParam("from", new Object[]{ISOZonedDateTime.FORMATTER.format(this.from.withZoneSameInstant(ZoneOffset.UTC))}); + } + + if (this.to != null) { + builderWithPaging.replaceQueryParam("to", new Object[]{ISOZonedDateTime.FORMATTER.format(this.to.withZoneSameInstant(ZoneOffset.UTC))}); + } + + return builderWithPaging; + } + + @Override + protected boolean canEqual(Object o) { + return o instanceof TimeFilterPageRequest; + } + + @Override + public boolean equals(final Object o) { + if (this == o) return true; + if (!(o instanceof TimeFilterPageRequest)) return false; + if (!super.equals(o)) return false; + + final TimeFilterPageRequest that = (TimeFilterPageRequest) o; + if (!that.canEqual(this)) return false; + + if (from != null ? !from.equals(that.from) : that.from != null) return false; + if (to != null ? !to.equals(that.to) : that.to != null) return false; + return true; + } + + @Override + public int hashCode() { + int result = super.hashCode(); + result = 31 * result + (this.from != null ? this.from.hashCode() : 0); + result = 31 * result + (this.to != null ? this.to.hashCode() : 0); + return result; + } + + @Override + public String toString() { + return GoodDataToStringBuilder.defaultToString(this, new String[0]); + } + +} + diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java new file mode 100644 index 000000000..5e76a401c --- /dev/null +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java @@ -0,0 +1,109 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.service.auditevent; + +import com.gooddata.sdk.common.util.ISOZonedDateTime; +import com.gooddata.sdk.common.util.MutableUri; +import com.gooddata.sdk.common.util.SpringMutableUri; +import nl.jqno.equalsverifier.EqualsVerifier; +import nl.jqno.equalsverifier.Warning; +import org.testng.annotations.Test; + +import java.time.ZonedDateTime; + +import static com.gooddata.sdk.common.collections.CustomPageRequest.DEFAULT_LIMIT; +import static com.shazam.shazamcrest.matcher.Matchers.sameBeanAs; +import static java.time.ZoneOffset.UTC; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.core.Is.is; + +public class TimeFilterPageRequestTest { + + private static final ZonedDateTime FROM = ZonedDateTime.of(2019, 10, 28, 15, 30, 12, 0, UTC); + private static final ZonedDateTime TO = ZonedDateTime.of(2019, 11, 25, 8, 5, 58, 125000000, UTC); + private static final Integer LIMIT = 10; + private static final String OFFSET = "foo"; + + @Test + public void testCopy() { + TimeFilterPageRequest request = new TimeFilterPageRequest(); + request.setFrom(FROM); + request.setTo(TO); + request.setLimit(LIMIT); + request.setOffset(OFFSET); + + TimeFilterPageRequest copy = TimeFilterPageRequest.copy(request); + + assertThat(request, is(sameBeanAs(copy))); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testCopyNull() { + TimeFilterPageRequest.copy(null); + } + + @Test + public void testWithIncrementedLimit() { + TimeFilterPageRequest request = new TimeFilterPageRequest(); + request.setFrom(FROM); + request.setTo(TO); + request.setLimit(LIMIT); + request.setOffset(OFFSET); + TimeFilterPageRequest result = request.withIncrementedLimit(); + + assertThat(result.getFrom(), is(FROM)); + assertThat(result.getTo(), is(TO)); + assertThat(result.getSanitizedLimit(), is(LIMIT + 1)); + assertThat(result.getOffset(), is(OFFSET)); + } + + @Test + public void testUpdateWithAllFields() { + TimeFilterPageRequest request = new TimeFilterPageRequest(); + request.setFrom(FROM); + request.setTo(TO); + request.setLimit(LIMIT); + request.setOffset(OFFSET); + + MutableUri result = request.updateWithPageParams(new SpringMutableUri("")); + + assertThat(result.toUriString(), is(String.format("?offset=%s&limit=%d&from=%s&to=%s", + OFFSET, LIMIT, ISOZonedDateTime.FORMATTER.format(FROM.withZoneSameInstant(UTC)), + ISOZonedDateTime.FORMATTER.format(TO.withZoneSameInstant(UTC))))); + } + + @Test + public void testUpdateWithOnlyPagingFields() { + TimeFilterPageRequest request = new TimeFilterPageRequest(); + request.setLimit(LIMIT); + request.setOffset(OFFSET); + + MutableUri result = request.updateWithPageParams(new SpringMutableUri("")); + + assertThat(result.toUriString(), is("?offset=" + OFFSET + "&limit=" + LIMIT)); + } + + @Test + public void testUpdateWithOnlyTimeIntervalFields() { + TimeFilterPageRequest request = new TimeFilterPageRequest(); + request.setFrom(FROM); + request.setTo(TO); + + MutableUri result = request.updateWithPageParams(new SpringMutableUri("")); + + assertThat(result.toUriString(), is("?limit=" + DEFAULT_LIMIT + + "&from=2019-10-28T15:30:12.000Z&to=2019-11-25T08:05:58.125Z")); + } + + @Test + public void shouldVerifyEquals() { + EqualsVerifier.simple().forClass(TimeFilterPageRequest.class) + .withRedefinedSuperclass() + .suppress(Warning.NONFINAL_FIELDS) + .verify(); + } + +} From 53bbd0fbe3c836f6627e874220127e3fadd714e7 Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Wed, 3 Mar 2021 10:13:37 +0100 Subject: [PATCH 004/155] bump version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa79451ca..63d31ba3a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ The *GoodData Java SDK* is available in Maven Central Repository, to use it from com.gooddata gooddata-java - 3.5.0+api3 + 3.6.0+api3 ``` See [releases page](https://github.com/gooddata/gooddata-java/releases) for information about versions and notable changes, From ad4d23c8b8f93f6ee603059697fbf6f995c33977 Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Wed, 3 Mar 2021 10:16:28 +0100 Subject: [PATCH 005/155] [maven-release-plugin] prepare release gooddata-java-parent-3.6.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index fb0c2ad83..635466bb1 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.5.1-SNAPSHOT + 3.6.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 8fe2f6afa..a470fe79b 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.5.1-SNAPSHOT + 3.6.0+api3 diff --git a/pom.xml b/pom.xml index 1fcb7ca80..c698d553a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.5.1-SNAPSHOT + 3.6.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:${basedir} - HEAD + gooddata-java-parent-3.6.0+api3 From 7822879f63630a974b0481cb0e913cbf1be265d1 Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Wed, 3 Mar 2021 10:16:28 +0100 Subject: [PATCH 006/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 635466bb1..f05dfc7b2 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.6.0+api3 + 3.6.1-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index a470fe79b..5f759a336 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.6.0+api3 + 3.6.1-SNAPSHOT diff --git a/pom.xml b/pom.xml index c698d553a..066963692 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.6.0+api3 + 3.6.1-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:${basedir} - gooddata-java-parent-3.6.0+api3 + HEAD From 71c2da0f50811a5e229ceb08a4181d9aa9907154 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 16 Mar 2021 08:18:13 +0100 Subject: [PATCH 007/155] Re-interrupt the thread after InterruptedException --- .../src/main/java/com/gooddata/sdk/service/AbstractService.java | 1 + 1 file changed, 1 insertion(+) diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java index fe53acb14..0d714d2cc 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java @@ -66,6 +66,7 @@ final R poll(final PollHandler handler, long timeout, final TimeUnit un try { Thread.sleep(settings.getPollSleep()); } catch (InterruptedException e) { + Thread.currentThread().interrupt(); throw new GoodDataException("interrupted"); } } From e5f7e459a6333d08994f103439ee5d4b3580fd7a Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 16 Mar 2021 08:20:15 +0100 Subject: [PATCH 008/155] Remove useless conditions --- .../com/gooddata/sdk/model/featureflag/FeatureFlags.java | 7 ++----- .../sdk/service/featureflag/FeatureFlagService.java | 8 +------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java index c123582d1..639cad79a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java @@ -79,16 +79,13 @@ private Optional findFlag(final String flagName) { public boolean equals(final Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; - final FeatureFlags that = (FeatureFlags) o; - - return !(featureFlags != null ? !featureFlags.equals(that.featureFlags) : that.featureFlags != null); - + return featureFlags.equals(that.featureFlags); } @Override public int hashCode() { - return featureFlags != null ? featureFlags.hashCode() : 0; + return featureFlags.hashCode(); } @Override diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java index 814c81ece..1303d4ae6 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java @@ -108,13 +108,7 @@ public ProjectFeatureFlag getProjectFeatureFlag(final Project project, final Str notEmpty(featureFlagName, "featureFlagName"); try { - final ProjectFeatureFlag flag = getProjectFeatureFlag(getProjectFeatureFlagUri(project, featureFlagName)); - - if (flag == null) { - throw new GoodDataException("empty response from API call"); - } - - return flag; + return getProjectFeatureFlag(getProjectFeatureFlagUri(project, featureFlagName)); } catch (GoodDataException | RestClientException e) { throw new GoodDataException("Unable to get project feature flag: " + featureFlagName, e); } From 7c24a09b2dd185ea9eff2181d0ae10b00036d8dd Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 16 Mar 2021 08:26:37 +0100 Subject: [PATCH 009/155] Promote operands to the final type before operation --- .../gooddata/sdk/service/dataload/processes/ProcessService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java index 31ff9ef2e..3154815c1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java @@ -72,7 +72,7 @@ public class ProcessService extends AbstractService { public static final UriTemplate PROCESSES_TEMPLATE = new UriTemplate(DataloadProcesses.URI); public static final UriTemplate USER_PROCESSES_TEMPLATE = new UriTemplate(DataloadProcesses.USER_PROCESSES_URI); private static final MediaType MEDIA_TYPE_ZIP = MediaType.parseMediaType("application/zip"); - private static final long MAX_MULTIPART_SIZE = 1024 * 1024; + private static final long MAX_MULTIPART_SIZE = 1024L * 1024L; private final AccountService accountService; private final DataStoreService dataStoreService; From f6be420f92bdfb4338e84f7c6e2f40c392364b18 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 16 Mar 2021 09:16:59 +0100 Subject: [PATCH 010/155] Improve handling when self link is not present --- .../service/connector/ConnectorService.java | 14 ++++--- .../connector/ConnectorServiceTest.groovy | 38 +++++++++++++++++++ 2 files changed, 47 insertions(+), 5 deletions(-) create mode 100644 gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java index cc1f80a84..ea75bd47f 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,8 +22,8 @@ import java.io.IOException; import java.util.Collection; import java.util.Map; +import java.util.Optional; -import static com.gooddata.sdk.common.util.Validate.isTrue; import static com.gooddata.sdk.common.util.Validate.notNull; import static com.gooddata.sdk.common.util.Validate.notNullState; import static java.lang.String.format; @@ -267,13 +267,17 @@ public FutureResult getProcessStatus(final IntegrationProcessStat * You should use the result of {@link #scheduleZendesk4Reload} to see changes in {@link Reload#getStatus()} and * {@link Reload#getProcessId()} or retrieve process URI {@link Reload#getProcessUri()}. * - * @param reload existing reload. + * @param reload existing reload (self link must be present). * @return same reload with refreshed properties (status, processId, process URI) */ public Reload getZendesk4Reload(final Reload reload) { notNull(reload, "reload"); - isTrue(reload.getUri().isPresent(), "reload.uri"); - return getZendesk4ReloadByUri(reload.getUri().get()); + final Optional reloadUri = reload.getUri(); + if (reloadUri.isPresent()) { + return getZendesk4ReloadByUri(reloadUri.get()); + } else { + throw new IllegalArgumentException("Self link in the Reload must be present!"); + } } /** diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy new file mode 100644 index 000000000..f33cca250 --- /dev/null +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ + +package com.gooddata.sdk.service.connector + +import com.gooddata.sdk.model.connector.Reload +import com.gooddata.sdk.service.GoodDataSettings +import com.gooddata.sdk.service.project.ProjectService +import org.springframework.web.client.RestTemplate +import spock.lang.Specification +import spock.lang.Subject + +import static java.util.Collections.emptyMap + +class ConnectorServiceTest extends Specification { + + @Subject + def service = new ConnectorService(Mock(RestTemplate), Mock(ProjectService), Mock(GoodDataSettings)) + + def "getZendesk4Reload should throw when Reload is null"() { + when: + service.getZendesk4Reload(null) + + then: + thrown(IllegalArgumentException) + } + + def "getZendesk4Reload should throw when Reload does not contain self URI"() { + when: + service.getZendesk4Reload(new Reload(emptyMap())) + + then: + thrown(IllegalArgumentException) + } +} \ No newline at end of file From c80db2704b57d50a61f57c4e242b2692a778cc62 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 16 Mar 2021 13:12:57 +0000 Subject: [PATCH 011/155] Bump json-unit.version from 2.23.0 to 2.25.0 Bumps `json-unit.version` from 2.23.0 to 2.25.0. Updates `json-unit` from 2.23.0 to 2.25.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.23.0...json-unit-parent-2.25.0) Updates `json-unit-core` from 2.23.0 to 2.25.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.23.0...json-unit-parent-2.25.0) Signed-off-by: dependabot-preview[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 066963692..3eccfc700 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 1.7.30 5.3.3 1.3.0 - 2.23.0 + 2.25.0 2.22.2 2.22.2 From d9f009ec6e860aa0891fe03c2851da3451c12b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Fri, 19 Mar 2021 12:14:39 +0100 Subject: [PATCH 012/155] Add releasing how-to link to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 63d31ba3a..84d741a7a 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,8 @@ Good SO thread about differences between various types in Java Date/Time API: ht Build the library with `mvn package`, see the [Testing](https://github.com/gooddata/gooddata-java/wiki/Testing) page for different testing methods. +For releasing see [Releasing How-To](https://github.com/gooddata/gooddata-java/wiki/Releasing). + ## Contribute Found a bug? Please create an [issue](https://github.com/gooddata/gooddata-java/issues). Missing functionality? From 31354c575ad5a6b2e0f642d658adda74d5b405e8 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 8 Apr 2021 13:13:14 +0000 Subject: [PATCH 013/155] Bump mockito-core from 3.7.7 to 3.9.0 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.7.7 to 3.9.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.7.7...v3.9.0) Signed-off-by: dependabot-preview[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 066963692..1b1730684 100644 --- a/pom.xml +++ b/pom.xml @@ -356,7 +356,7 @@ org.mockito mockito-core - 3.7.7 + 3.9.0 test From bf1c902d31ce1778578cbca2372de9554f65c687 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 13 Apr 2021 13:12:47 +0000 Subject: [PATCH 014/155] Bump spring.version from 5.3.3 to 5.3.6 Bumps `spring.version` from 5.3.3 to 5.3.6. Updates `spring-core` from 5.3.3 to 5.3.6 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.3...v5.3.6) Updates `spring-beans` from 5.3.3 to 5.3.6 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.3...v5.3.6) Updates `spring-web` from 5.3.3 to 5.3.6 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.3...v5.3.6) Updates `spring-context` from 5.3.3 to 5.3.6 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.3...v5.3.6) Signed-off-by: dependabot-preview[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 066963692..4f4a8c61f 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.14 2.12.1 1.7.30 - 5.3.3 + 5.3.6 1.3.0 2.23.0 2.22.2 From 238657f18a96e0c5b29f07af4e37001c158de437 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 14 Apr 2021 13:17:06 +0000 Subject: [PATCH 015/155] Bump jackson.version from 2.12.1 to 2.12.3 Bumps `jackson.version` from 2.12.1 to 2.12.3. Updates `jackson-core` from 2.12.1 to 2.12.3 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.12.1...jackson-core-2.12.3) Updates `jackson-databind` from 2.12.1 to 2.12.3 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.12.1 to 2.12.3 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Signed-off-by: dependabot-preview[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 066963692..62a12ae56 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 4.5.13 4.4.14 - 2.12.1 + 2.12.3 1.7.30 5.3.3 1.3.0 From 3f9507420ff45e5b2c68dd4d027274b911e72b9d Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 15 Apr 2021 06:32:04 +0000 Subject: [PATCH 016/155] Create Dependabot config file --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..b2711bdbc --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: +- package-ecosystem: maven + directory: "/" + schedule: + interval: daily + time: "09:00" + open-pull-requests-limit: 10 From 307626a7b10e5ce954dcb5a4a0563a4abaa42e32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 May 2021 09:07:35 +0000 Subject: [PATCH 017/155] Bump jacoco-maven-plugin from 0.8.6 to 0.8.7 Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.6 to 0.8.7. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.6...v0.8.7) Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94f79a3da..5a0ab8ade 100644 --- a/pom.xml +++ b/pom.xml @@ -195,7 +195,7 @@ org.jacoco jacoco-maven-plugin - 0.8.6 + 0.8.7 jacoco-prepare-agent From 96a0c563b18c0780f5d4acdb066268641dc424c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 May 2021 09:07:14 +0000 Subject: [PATCH 018/155] Bump equalsverifier from 3.5.5 to 3.6.1 Bumps [equalsverifier](https://github.com/jqno/equalsverifier) from 3.5.5 to 3.6.1. - [Release notes](https://github.com/jqno/equalsverifier/releases) - [Changelog](https://github.com/jqno/equalsverifier/blob/main/CHANGELOG.md) - [Commits](https://github.com/jqno/equalsverifier/compare/equalsverifier-3.5.5...equalsverifier-3.6.1) Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94f79a3da..f21284999 100644 --- a/pom.xml +++ b/pom.xml @@ -416,7 +416,7 @@ nl.jqno.equalsverifier equalsverifier - 3.5.5 + 3.6.1 test From 7e2c1c6e2938d86c0021c9efee6c3e2c8679ed09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Jun 2021 09:07:15 +0000 Subject: [PATCH 019/155] Bump commons-io from 2.8.0 to 2.10.0 Bumps commons-io from 2.8.0 to 2.10.0. --- updated-dependencies: - dependency-name: commons-io:commons-io dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94f79a3da..c2c9e1de1 100644 --- a/pom.xml +++ b/pom.xml @@ -344,7 +344,7 @@ commons-io commons-io - 2.8.0 + 2.10.0 test From 7af7287d5b2bf9e736f0a61f47806a505a843517 Mon Sep 17 00:00:00 2001 From: rusna Date: Sun, 20 Jun 2021 22:59:14 +0200 Subject: [PATCH 020/155] #621 - add the logging of requestId (port to 2.35.*) Added 'RequestIdInterceptor' on the apache http client to generate 'requestId' for the client requests. It wasn't added to Spring 'RestTemplate' because the Sardine client doesn't use it. Added 'ResponseMissingRequestIdInterceptor' on the apache http client to add missing 'X-GDC-REQUEST' header in responses coming from WebDav server. Added the 'requestId' information to exceptions to easier tracking the problem. --- .../sdk/service/RequestIdInterceptor.java | 39 +++++++++++++++++ .../ResponseMissingRequestIdInterceptor.java | 37 ++++++++++++++++ .../sdk/service/gdc/DataStoreService.java | 19 +++++--- .../gooddata/sdk/service/gdc/GdcSardine.java | 39 ++++++++++++++++- .../sdk/service/gdc/GdcSardineException.java | 33 ++++++++++++++ .../gdc/GdcSardineResponseHandler.java | 43 +++++++++++++++++++ .../SingleEndpointGoodDataRestProvider.java | 2 + .../sdk/service/gdc/DatastoreServiceAT.java | 22 ++++++++-- 8 files changed, 222 insertions(+), 12 deletions(-) create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java new file mode 100644 index 000000000..ac5a0ade6 --- /dev/null +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.service; + +import org.apache.commons.lang3.RandomStringUtils; +import org.apache.http.Header; +import org.apache.http.HttpException; +import org.apache.http.HttpRequest; +import org.apache.http.HttpRequestInterceptor; +import org.apache.http.annotation.Contract; +import org.apache.http.annotation.ThreadingBehavior; +import org.apache.http.protocol.HttpContext; + +import java.io.IOException; + +import static com.gooddata.sdk.common.gdc.Header.GDC_REQUEST_ID; + +/** + * Intercepts the client-side requests on low-level in order to be able to catch requests also from the Sardine, + * that is working independently from Spring {@link org.springframework.web.client.RestTemplate} to set + * the X-GDC-REQUEST header to them. + */ +@Contract(threading = ThreadingBehavior.IMMUTABLE) +public class RequestIdInterceptor implements HttpRequestInterceptor { + + @Override + public void process(final HttpRequest request, final HttpContext context) throws HttpException, IOException { + final StringBuilder requestIdBuilder = new StringBuilder(); + final Header requestIdHeader = request.getFirstHeader(GDC_REQUEST_ID); + if (requestIdHeader != null) { + requestIdBuilder.append(requestIdHeader.getValue()).append(":"); + } + final String requestId = requestIdBuilder.append(RandomStringUtils.randomAlphanumeric(16)).toString(); + request.setHeader(GDC_REQUEST_ID, requestId); + } +} diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java new file mode 100644 index 000000000..e78ca5444 --- /dev/null +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.service; + +import org.apache.http.Header; +import org.apache.http.HttpException; +import org.apache.http.HttpResponse; +import org.apache.http.HttpResponseInterceptor; +import org.apache.http.annotation.Contract; +import org.apache.http.annotation.ThreadingBehavior; +import org.apache.http.protocol.HttpContext; +import org.apache.http.protocol.HttpCoreContext; + +import java.io.IOException; + +import static com.gooddata.sdk.common.gdc.Header.GDC_REQUEST_ID; + +/** + * Intercepts responses to check if they have set the X-GDC-REQUEST header for easier debugging. + * If not, it takes this header from the request sent. + */ +@Contract(threading = ThreadingBehavior.IMMUTABLE) +public class ResponseMissingRequestIdInterceptor implements HttpResponseInterceptor { + + @Override + public void process(final HttpResponse response, final HttpContext context) throws HttpException, IOException { + + if (response.getFirstHeader(GDC_REQUEST_ID) == null) { + final HttpCoreContext coreContext = HttpCoreContext.adapt(context); + final Header requestIdHeader = coreContext.getRequest().getFirstHeader(GDC_REQUEST_ID); + response.setHeader(GDC_REQUEST_ID, requestIdHeader.getValue()); + } + } +} diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java index 79ca14611..d7093402f 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java @@ -5,8 +5,8 @@ */ package com.gooddata.sdk.service.gdc; -import com.github.sardine.Sardine; import com.github.sardine.impl.SardineException; +import com.gooddata.sdk.common.GoodDataRestException; import com.gooddata.sdk.common.UriPrefixer; import com.gooddata.sdk.service.httpcomponents.SingleEndpointGoodDataRestProvider; import org.apache.http.*; @@ -17,20 +17,22 @@ import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpUriRequest; import org.apache.http.conn.ClientConnectionManager; +import org.apache.http.entity.InputStreamEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClientBuilder; +import org.apache.http.message.BasicHeader; import org.apache.http.params.HttpParams; +import org.apache.http.protocol.HTTP; import org.apache.http.protocol.HttpContext; import org.springframework.http.HttpMethod; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; -import org.springframework.web.client.RestClientException; import org.springframework.web.client.RestTemplate; import java.io.IOException; import java.io.InputStream; import java.net.URI; -import java.util.Locale; +import java.util.*; import java.util.function.Supplier; import static com.gooddata.sdk.common.util.Validate.notEmpty; @@ -41,7 +43,7 @@ */ public class DataStoreService { - private final Sardine sardine; + private final GdcSardine sardine; private final Supplier stagingUriSupplier; private final URI gdcUri; private final RestTemplate restTemplate; @@ -95,7 +97,10 @@ public void upload(String path, InputStream stream) { private void upload(URI url, InputStream stream) { try { - sardine.put(url.toString(), stream); + // We need to use it this way, if we want to track request_id in the stacktrace. + InputStreamEntity entity = new InputStreamEntity(stream); + List
headers = Collections.singletonList(new BasicHeader(HTTP.EXPECT_DIRECTIVE, HTTP.EXPECT_CONTINUE)); + sardine.put(url.toString(), entity, headers, new GdcSardineResponseHandler()); } catch (SardineException e) { if (HttpStatus.INTERNAL_SERVER_ERROR.value() == e.getStatusCode()) { // this error may occur when user issues request to WebDAV before SST and TT were obtained @@ -137,7 +142,7 @@ public InputStream download(String path) { notEmpty(path, "path"); final URI uri = getUri(path); try { - return sardine.get(uri.toString()); + return sardine.get(uri.toString(), Collections.emptyList(), new GdcSardineResponseHandler()); } catch (IOException e) { throw new DataStoreException("Unable to download from " + uri, e); } @@ -158,7 +163,7 @@ public void delete(String path) { if (HttpStatus.MOVED_PERMANENTLY.equals(result.getStatusCode())) { restTemplate.exchange(result.getHeaders().getLocation(), HttpMethod.DELETE, org.springframework.http.HttpEntity.EMPTY, Void.class); } - } catch (RestClientException e) { + } catch (GoodDataRestException e) { throw new DataStoreException("Unable to delete " + uri, e); } } diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java index d81995504..c79b077c7 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java @@ -8,11 +8,18 @@ import static com.gooddata.sdk.common.util.Validate.notNull; import com.github.sardine.impl.SardineImpl; +import com.github.sardine.impl.io.ContentLengthInputStream; +import com.github.sardine.impl.io.HttpMethodReleaseInputStream; +import org.apache.http.Header; +import org.apache.http.HttpResponse; import org.apache.http.client.ResponseHandler; +import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpRequestBase; import org.apache.http.impl.client.HttpClientBuilder; import java.io.IOException; +import java.util.List; +import java.util.Map; /** * This class extends SardineImpl, connections were not correctly closed by parent @@ -28,11 +35,41 @@ public GdcSardine(HttpClientBuilder builder) { */ @Override protected T execute(HttpRequestBase request, ResponseHandler responseHandler) throws IOException { - notNull(request,"request"); + notNull(request, "request"); try { return super.execute(request, responseHandler); } finally { request.releaseConnection(); } } + + /** + * The method body is retrieved from {@link SardineImpl#get(String, Map)} and extended about the response handler + * to be able to handle responses arbitrarily. + * + * @param url Path to the resource including protocol and hostname + * @param headers Additional HTTP headers to add to the request + * @param responseHandler Arbitrary response handler to manipulate with responses + * @return Data stream to read from + * @throws IOException I/O error or HTTP response validation failure + */ + public ContentLengthInputStream get(final String url, final List
headers, + final ResponseHandler responseHandler) throws IOException { + + final HttpGet get = new HttpGet(url); + for (Header header : headers) { + get.addHeader(header); + } + // Must use #execute without handler, otherwise the entity is consumed + // already after the handler exits. + final HttpResponse response = this.execute(get); + try { + responseHandler.handleResponse(response); + // Will abort the read when closed before EOF. + return new ContentLengthInputStream(new HttpMethodReleaseInputStream(response), response.getEntity().getContentLength()); + } catch (IOException ex) { + get.abort(); + throw ex; + } + } } diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java new file mode 100644 index 000000000..ee22ac8f1 --- /dev/null +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2007-2021, GoodData(R) Corporation. All rights reserved. + */ +package com.gooddata.sdk.service.gdc; + +import com.github.sardine.impl.SardineException; + +/** + * Extended Sardine exception about X-GDC-REQUEST header value. + */ +public class GdcSardineException extends SardineException { + + private final String requestId; + + /** + * @param msg Custom description of failure + * @param statusCode Error code returned by server + * @param responsePhrase Response phrase following the error code + * @param requestId The X-GDC-REQUEST identifier. + */ + public GdcSardineException(String requestId, String msg, int statusCode, String responsePhrase) { + super(msg, statusCode, responsePhrase); + this.requestId = requestId; + } + + @Override + public String getMessage() { + return String.format("[request_id=%s]: %s (%d %s)", this.requestId, super.getMessage(), this.getStatusCode(), + this.getResponsePhrase() + ); + } + +} diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java new file mode 100644 index 000000000..e964872cb --- /dev/null +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.service.gdc; + +import com.github.sardine.impl.SardineException; +import com.github.sardine.impl.handler.ValidatingResponseHandler; +import org.apache.http.Header; +import org.apache.http.HttpResponse; +import org.apache.http.HttpStatus; +import org.apache.http.StatusLine; +import org.apache.http.client.ResponseHandler; + +import java.io.IOException; + +import static com.gooddata.sdk.common.gdc.Header.GDC_REQUEST_ID; + +/** + * A basic validation response handler that extends the functionality of {@link ValidatingResponseHandler} + * about the addition of X-GDC-REQUEST header to exception. + */ +class GdcSardineResponseHandler implements ResponseHandler { + + @Override + public Void handleResponse(final HttpResponse response) throws IOException { + final StatusLine statusLine = response.getStatusLine(); + final int statusCode = statusLine.getStatusCode(); + if (statusCode >= HttpStatus.SC_OK && statusCode < HttpStatus.SC_MULTIPLE_CHOICES) + { + return null; + } + final Header requestIdHeader = response.getFirstHeader(GDC_REQUEST_ID); + if (requestIdHeader != null) { + throw new GdcSardineException(requestIdHeader.getValue(), "Unexpected response", statusLine.getStatusCode(), + statusLine.getReasonPhrase() + ); + } else { + throw new SardineException("Unexpected response", statusLine.getStatusCode(), statusLine.getReasonPhrase()); + } + } +} diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java index 8fdbfe990..7f2a803c8 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java @@ -156,6 +156,8 @@ protected HttpClientBuilder createHttpClientBuilder(final GoodDataSettings setti return HttpClientBuilder.create() .setUserAgent(settings.getGoodDataUserAgent()) .setConnectionManager(connectionManager) + .addInterceptorFirst(new RequestIdInterceptor()) + .addInterceptorFirst(new ResponseMissingRequestIdInterceptor()) .setDefaultRequestConfig(requestConfig.build()); } } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java index 50c161893..9b172155f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java @@ -18,10 +18,11 @@ import java.util.UUID; import static com.gooddata.sdk.common.util.ResourceUtils.readFromResource; +import static org.hamcrest.CoreMatchers.containsString; import static org.hamcrest.CoreMatchers.equalTo; +import static org.hamcrest.CoreMatchers.instanceOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; -import static org.testng.Assert.assertEquals; import static org.testng.Assert.fail; /** @@ -60,6 +61,17 @@ public void datastoreDownload() throws Exception { } @Test(groups = "datastore", dependsOnMethods = "datastoreDownload") + public void verifyRequestIdInException() throws Exception { + DataStoreService dataStoreService = AbstractGoodDataAT.gd.getDataStoreService(); + + try (InputStream ignored = dataStoreService.download(this.directory + "/none.txt")) { + fail("The exception should contain the request_id in its stacktrace."); + } catch (Exception e){ + assertThat(e.getCause().toString(), containsString("request_id")); + } + } + + @Test(groups = "datastore", dependsOnMethods = "verifyRequestIdInException") public void datastoreDelete() throws Exception { DataStoreService dataStoreService = AbstractGoodDataAT.gd.getDataStoreService(); dataStoreService.delete(this.file); @@ -68,8 +80,10 @@ public void datastoreDelete() throws Exception { try { dataStoreService.delete(this.directory); fail("Exception was expected, as there is nothing to delete"); - } catch (GoodDataRestException e) { - assertEquals(404, e.getStatusCode()); + } catch (DataStoreException e) { + assertThat(e.getCause().toString(), containsString("request_id")); + assertThat(e.getCause().toString(), containsString("404")); + assertThat(e.getCause(), instanceOf(GoodDataRestException.class)); } } @@ -96,7 +110,7 @@ public void datastoreConnectionClosedAfterSingleConnection() throws Exception { @Test(groups = "datastore", expectedExceptions = DataStoreException.class, enabled = false, expectedExceptionsMessageRegExp = "(?s).* 500 .*https://github.com/.Known-limitations") public void shouldThrowExceptionWithMessageOnUnAuthRequest() throws Exception { - final GoodData datastoreGd = new GoodData(AbstractGoodDataAT.getProperty("host"), AbstractGoodDataAT.getProperty("login"), AbstractGoodDataAT.getProperty("pass")); + final GoodData datastoreGd = new GoodData(AbstractGoodDataAT.getProperty("host"), AbstractGoodDataAT.getProperty("login"), AbstractGoodDataAT.getProperty("password")); DataStoreService dataStoreService = datastoreGd.getDataStoreService(); try { From 4627baa8fb472bc3a04adf9840b363b400e4122e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Jun 2021 09:08:29 +0000 Subject: [PATCH 021/155] Bump mockito-core from 3.9.0 to 3.11.2 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.9.0 to 3.11.2. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.9.0...v3.11.2) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94f79a3da..a41ef6fc0 100644 --- a/pom.xml +++ b/pom.xml @@ -356,7 +356,7 @@ org.mockito mockito-core - 3.9.0 + 3.11.2 test From 71a4ae73001747203630b3f71d34a4a07bfcfa99 Mon Sep 17 00:00:00 2001 From: Binh Pham Date: Fri, 9 Jul 2021 12:46:45 +0700 Subject: [PATCH 022/155] SETI-5977: Remove Travis-CI configuration after migrated to Github Action --- .travis.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e8be7cbb7..000000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -language: java -# Skip the Travis Installation Phase (installation of dependencies: `mvn install -DskipTests=true`) -install: true -# Customized build command (default is only `mvn test`) -script: mvn verify javadoc:javadoc coveralls:report -Pcoverage -B -V -jdk: - - openjdk11 -branches: - only: - - master - - /\d\.0\.0-RC/ -# Cache Maven repo between Travis builds -cache: - directories: - - '$HOME/.m2/repository' From 71ad14eb6aaf11f9971c7d72337b96ed44a0d918 Mon Sep 17 00:00:00 2001 From: Binh Pham Date: Fri, 9 Jul 2021 12:47:48 +0700 Subject: [PATCH 023/155] SETI-5977: Add Github Action workflow and update bagdes in README --- .github/workflows/build.yml | 40 +++++++++++++++++++++++++++++++++++++ README.md | 3 ++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..195e22cea --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,40 @@ +name: build +on: + push: + branches: + - master + - /\d\.0\.0-RC/ + pull_request: + branches: + - master + - /\d\.0\.0-RC/ +jobs: + builds-tests-coverage: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - uses: actions/cache@v2 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + - name: Set branch name and PR number + id: refs + env: + BRANCH_NAME_OR_REF: ${{ github.head_ref || github.ref }} + run: | + echo "::set-output name=branch_name::${BRANCH_NAME_OR_REF#refs/heads/}" + echo "::set-output name=pr_number::$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")" + - name: Run build steps and check coverage + env: + CI_NAME: Github + CI_BUILD_NUMBER: ${{ github.run_id }} + CI_BUILD_URL: https://github.com/${{ github.repository }}/commit/${{ github.event.after }}/checks + CI_BRANCH: ${{ steps.refs.outputs.branch_name }} + CI_PULL_REQUEST: ${{ steps.refs.outputs.pr_number }} + run: | + mvn verify javadoc:javadoc coveralls:report -Pcoverage -DrepoToken=${{ secrets.COVERALLS_REPO_TOKEN }} -B -V diff --git a/README.md b/README.md index 84d741a7a..87ab1895f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ # GoodData Java SDK -[![Build Status](https://travis-ci.org/gooddata/gooddata-java.png?branch=master)](https://travis-ci.org/gooddata/gooddata-java) +[![Build Status](https://github.com/gooddata/gooddata-java/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/gooddata/gooddata-java/actions/workflows/build.yml) [![Javadocs](http://javadoc.io/badge/com.gooddata/gooddata-java.svg)](http://javadoc.io/doc/com.gooddata/gooddata-java) [![Javadocs Model](https://javadoc.io/badge2/com.gooddata/gooddata-java-model/javadoc--model.svg)](https://javadoc.io/doc/com.gooddata/gooddata-java-model) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.gooddata/gooddata-java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.gooddata/gooddata-java) [![Release](https://img.shields.io/github/release/gooddata/gooddata-java.svg)](https://github.com/gooddata/gooddata-java/releases) [![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) [![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE.txt) +[![Coverage Status](https://coveralls.io/repos/github/gooddata/gooddata-java/badge.svg?branch=master)](https://coveralls.io/github/gooddata/gooddata-java?branch=master) The *GoodData Java SDK* encapsulates the REST API of the **GoodData Platform**. The first version was implemented during the [All Data Hackathon](http://hackathon.gooddata.com) April 10 - 11 2014. From cf09fb7f4448d67916d544202594be254d955e68 Mon Sep 17 00:00:00 2001 From: Binh Pham Date: Mon, 12 Jul 2021 17:34:01 +0700 Subject: [PATCH 024/155] Use codecov for checking coverage step instead of coveralls As coveralls.io is not supported yet for Github Action so we switch to use codecov.io for our coverage check --- .github/workflows/build.yml | 23 ++++++++--------------- README.md | 2 +- pom.xml | 14 -------------- 3 files changed, 9 insertions(+), 30 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 195e22cea..4b47dc07b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,19 +22,12 @@ jobs: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - - name: Set branch name and PR number - id: refs - env: - BRANCH_NAME_OR_REF: ${{ github.head_ref || github.ref }} + - name: Run build steps and generate coverage report run: | - echo "::set-output name=branch_name::${BRANCH_NAME_OR_REF#refs/heads/}" - echo "::set-output name=pr_number::$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")" - - name: Run build steps and check coverage - env: - CI_NAME: Github - CI_BUILD_NUMBER: ${{ github.run_id }} - CI_BUILD_URL: https://github.com/${{ github.repository }}/commit/${{ github.event.after }}/checks - CI_BRANCH: ${{ steps.refs.outputs.branch_name }} - CI_PULL_REQUEST: ${{ steps.refs.outputs.pr_number }} - run: | - mvn verify javadoc:javadoc coveralls:report -Pcoverage -DrepoToken=${{ secrets.COVERALLS_REPO_TOKEN }} -B -V + mvn verify javadoc:javadoc jacoco:report -Pcoverage -B -V + - name: Upload coverage report to Codecov + uses: codecov/codecov-action@v1 + with: + file: ./**/target/site/jacoco/jacoco.xml + name: codecov + fail_ci_if_error: true diff --git a/README.md b/README.md index 87ab1895f..42f53a236 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Release](https://img.shields.io/github/release/gooddata/gooddata-java.svg)](https://github.com/gooddata/gooddata-java/releases) [![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) [![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE.txt) -[![Coverage Status](https://coveralls.io/repos/github/gooddata/gooddata-java/badge.svg?branch=master)](https://coveralls.io/github/gooddata/gooddata-java?branch=master) +[![Coverage Status](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg)](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg) The *GoodData Java SDK* encapsulates the REST API of the **GoodData Platform**. The first version was implemented during the [All Data Hackathon](http://hackathon.gooddata.com) April 10 - 11 2014. diff --git a/pom.xml b/pom.xml index d789dbaeb..09c239122 100644 --- a/pom.xml +++ b/pom.xml @@ -178,20 +178,6 @@ coverage - - org.eluder.coveralls - coveralls-maven-plugin - 4.3.0 - - - - - javax.xml.bind - jaxb-api - 2.3.1 - - - org.jacoco jacoco-maven-plugin From 52a0e442da3433ba829ce43c683390f522a7fc6b Mon Sep 17 00:00:00 2001 From: Binh Pham Date: Mon, 12 Jul 2021 19:31:06 +0700 Subject: [PATCH 025/155] Correct the Codecov's URL for Coverage status badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42f53a236..5f33cb683 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Release](https://img.shields.io/github/release/gooddata/gooddata-java.svg)](https://github.com/gooddata/gooddata-java/releases) [![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) [![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE.txt) -[![Coverage Status](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg)](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg) +[![Coverage Status](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg)](https://app.codecov.io/gh/gooddata/gooddata-java/branch/master) The *GoodData Java SDK* encapsulates the REST API of the **GoodData Platform**. The first version was implemented during the [All Data Hackathon](http://hackathon.gooddata.com) April 10 - 11 2014. From 4acf5513567ec91d69e0aec059eada317334b488 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jul 2021 13:11:10 +0000 Subject: [PATCH 026/155] Bump equalsverifier from 3.6.1 to 3.7 Bumps [equalsverifier](https://github.com/jqno/equalsverifier) from 3.6.1 to 3.7. - [Release notes](https://github.com/jqno/equalsverifier/releases) - [Changelog](https://github.com/jqno/equalsverifier/blob/main/CHANGELOG.md) - [Commits](https://github.com/jqno/equalsverifier/compare/equalsverifier-3.6.1...equalsverifier-3.7) --- updated-dependencies: - dependency-name: nl.jqno.equalsverifier:equalsverifier dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 09c239122..f72ff7790 100644 --- a/pom.xml +++ b/pom.xml @@ -402,7 +402,7 @@ nl.jqno.equalsverifier equalsverifier - 3.6.1 + 3.7 test From 8d6841a40344c8b56caa8c9743085c222bc79c39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jul 2021 13:12:49 +0000 Subject: [PATCH 027/155] Bump jackson.version from 2.12.3 to 2.12.4 Bumps `jackson.version` from 2.12.3 to 2.12.4. Updates `jackson-core` from 2.12.3 to 2.12.4 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.12.3...jackson-core-2.12.4) Updates `jackson-databind` from 2.12.3 to 2.12.4 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.12.3 to 2.12.4 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 09c239122..3c2112754 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 4.5.13 4.4.14 - 2.12.3 + 2.12.4 1.7.30 5.3.6 1.3.0 From 37696462a43f6f09946080c6b6610621897194e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jul 2021 13:13:06 +0000 Subject: [PATCH 028/155] Bump json-unit.version from 2.25.0 to 2.27.0 Bumps `json-unit.version` from 2.25.0 to 2.27.0. Updates `json-unit` from 2.25.0 to 2.27.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.25.0...json-unit-parent-2.27.0) Updates `json-unit-core` from 2.25.0 to 2.27.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.25.0...json-unit-parent-2.27.0) --- updated-dependencies: - dependency-name: net.javacrumbs.json-unit:json-unit dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: net.javacrumbs.json-unit:json-unit-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 09c239122..b8bd3dd39 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 1.7.30 5.3.6 1.3.0 - 2.25.0 + 2.27.0 2.22.2 2.22.2 From 978371fa291c66181d5ee2284505f1358620d2b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jul 2021 13:13:13 +0000 Subject: [PATCH 029/155] Bump spring.version from 5.3.6 to 5.3.8 Bumps `spring.version` from 5.3.6 to 5.3.8. Updates `spring-core` from 5.3.6 to 5.3.8 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.6...v5.3.8) Updates `spring-beans` from 5.3.6 to 5.3.8 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.6...v5.3.8) Updates `spring-web` from 5.3.6 to 5.3.8 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.6...v5.3.8) Updates `spring-context` from 5.3.6 to 5.3.8 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.6...v5.3.8) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 09c239122..32fc8f2e7 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.14 2.12.3 1.7.30 - 5.3.6 + 5.3.8 1.3.0 2.25.0 2.22.2 From 65c2fbedf1a87baa067607ff235378264b332cd9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jul 2021 13:29:47 +0000 Subject: [PATCH 030/155] Bump slf4j.version from 1.7.30 to 1.7.31 Bumps `slf4j.version` from 1.7.30 to 1.7.31. Updates `slf4j-api` from 1.7.30 to 1.7.31 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.30...v_1.7.31) Updates `slf4j-simple` from 1.7.30 to 1.7.31 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.30...v_1.7.31) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.slf4j:slf4j-simple dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 65fbdd7e9..a0909c793 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ 4.5.13 4.4.14 2.12.4 - 1.7.30 + 1.7.31 5.3.8 1.3.0 2.27.0 From eb9df55c43fdea5fa9495ee0315f3e43530e8266 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 13 Jul 2021 09:40:21 +0200 Subject: [PATCH 031/155] bump version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f33cb683..6e64beb2c 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ The *GoodData Java SDK* is available in Maven Central Repository, to use it from com.gooddata gooddata-java - 3.6.0+api3 + 3.7.0+api3 ``` See [releases page](https://github.com/gooddata/gooddata-java/releases) for information about versions and notable changes, From 15381cb8b39a190df61efe2d7f7954f8b617831e Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 13 Jul 2021 09:42:33 +0200 Subject: [PATCH 032/155] [maven-release-plugin] prepare release gooddata-java-parent-3.7.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index f05dfc7b2..220aefe49 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.6.1-SNAPSHOT + 3.7.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 5f759a336..6fb820e87 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.6.1-SNAPSHOT + 3.7.0+api3 diff --git a/pom.xml b/pom.xml index a0909c793..5e1974830 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.6.1-SNAPSHOT + 3.7.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:${basedir} - HEAD + gooddata-java-parent-3.7.0+api3 From 0752980608ccff9b3b0daa28f9f07b38781f10c1 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 13 Jul 2021 09:42:33 +0200 Subject: [PATCH 033/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 220aefe49..c5a9a1663 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.7.0+api3 + 3.7.1-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 6fb820e87..0c7063a18 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.7.0+api3 + 3.7.1-SNAPSHOT diff --git a/pom.xml b/pom.xml index 5e1974830..c13eea887 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.7.0+api3 + 3.7.1-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:${basedir} - gooddata-java-parent-3.7.0+api3 + HEAD From 5b64dd5e304dcae80f504a237d89f95b020f7895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Tue, 13 Jul 2021 10:42:28 +0200 Subject: [PATCH 034/155] README: Sort release badge by semver + reorder --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e64beb2c..d0a218f78 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ # GoodData Java SDK [![Build Status](https://github.com/gooddata/gooddata-java/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/gooddata/gooddata-java/actions/workflows/build.yml) +[![Coverage Status](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg)](https://app.codecov.io/gh/gooddata/gooddata-java/branch/master) +[![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) +[![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE.txt) + [![Javadocs](http://javadoc.io/badge/com.gooddata/gooddata-java.svg)](http://javadoc.io/doc/com.gooddata/gooddata-java) [![Javadocs Model](https://javadoc.io/badge2/com.gooddata/gooddata-java-model/javadoc--model.svg)](https://javadoc.io/doc/com.gooddata/gooddata-java-model) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.gooddata/gooddata-java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.gooddata/gooddata-java) -[![Release](https://img.shields.io/github/release/gooddata/gooddata-java.svg)](https://github.com/gooddata/gooddata-java/releases) -[![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) -[![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE.txt) -[![Coverage Status](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg)](https://app.codecov.io/gh/gooddata/gooddata-java/branch/master) +[![Release](https://img.shields.io/github/release/gooddata/gooddata-java.svg?sort=semver)](https://github.com/gooddata/gooddata-java/releases) The *GoodData Java SDK* encapsulates the REST API of the **GoodData Platform**. The first version was implemented during the [All Data Hackathon](http://hackathon.gooddata.com) April 10 - 11 2014. From c57b053faf429785a1bb161aa369d0c0ef28fa6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jul 2021 09:07:21 +0000 Subject: [PATCH 035/155] Bump spring.version from 5.3.8 to 5.3.9 Bumps `spring.version` from 5.3.8 to 5.3.9. Updates `spring-core` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) Updates `spring-beans` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) Updates `spring-web` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) Updates `spring-context` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c13eea887..630880c17 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.14 2.12.4 1.7.31 - 5.3.8 + 5.3.9 1.3.0 2.27.0 2.22.2 From bfb28f79d0b5a20ee3d2b060cd744578745ed8dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jul 2021 09:07:32 +0000 Subject: [PATCH 036/155] Bump commons-io from 2.10.0 to 2.11.0 Bumps commons-io from 2.10.0 to 2.11.0. --- updated-dependencies: - dependency-name: commons-io:commons-io dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c13eea887..f7314f065 100644 --- a/pom.xml +++ b/pom.xml @@ -330,7 +330,7 @@ commons-io commons-io - 2.10.0 + 2.11.0 test From 935d87bc1f024a7db518f52e1192cdb236799669 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jul 2021 13:22:35 +0000 Subject: [PATCH 037/155] Bump slf4j.version from 1.7.31 to 1.7.32 Bumps `slf4j.version` from 1.7.31 to 1.7.32. Updates `slf4j-api` from 1.7.31 to 1.7.32 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/commits) Updates `slf4j-simple` from 1.7.31 to 1.7.32 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/commits) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.slf4j:slf4j-simple dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 461250430..b7b08283f 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ 4.5.13 4.4.14 2.12.4 - 1.7.31 + 1.7.32 5.3.9 1.3.0 2.27.0 From d68c0560012115393ed2a6a89744cbcce05dcae2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Aug 2021 09:07:35 +0000 Subject: [PATCH 038/155] Bump equalsverifier from 3.7 to 3.7.1 Bumps [equalsverifier](https://github.com/jqno/equalsverifier) from 3.7 to 3.7.1. - [Release notes](https://github.com/jqno/equalsverifier/releases) - [Changelog](https://github.com/jqno/equalsverifier/blob/main/CHANGELOG.md) - [Commits](https://github.com/jqno/equalsverifier/compare/equalsverifier-3.7...equalsverifier-3.7.1) --- updated-dependencies: - dependency-name: nl.jqno.equalsverifier:equalsverifier dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 461250430..025d1173f 100644 --- a/pom.xml +++ b/pom.xml @@ -402,7 +402,7 @@ nl.jqno.equalsverifier equalsverifier - 3.7 + 3.7.1 test From 52384429a0b893bd2d5fc4b1386404689a493097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Mon, 23 Aug 2021 16:50:04 +0200 Subject: [PATCH 039/155] Add no active development note to README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d0a218f78..34057c6ae 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ [![Release](https://img.shields.io/github/release/gooddata/gooddata-java.svg?sort=semver)](https://github.com/gooddata/gooddata-java/releases) The *GoodData Java SDK* encapsulates the REST API of the **GoodData Platform**. + +**The project is currently NOT in "active development". Meaning that feature request may or may not be implemented. +You are welcomed to [contribute your code](CONTRIBUTING.md) and create an [issue](https://github.com/gooddata/gooddata-java/issues).** + The first version was implemented during the [All Data Hackathon](http://hackathon.gooddata.com) April 10 - 11 2014. It is free and open-source software provided "as-is" under the [BSD License](LICENSE.txt) as an official project by [GoodData Corporation](http://www.gooddata.com). From a4eebf9e1d4c9341572d658ee312e18f542f2499 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Aug 2021 09:07:59 +0000 Subject: [PATCH 040/155] Bump json-unit.version from 2.27.0 to 2.28.0 Bumps `json-unit.version` from 2.27.0 to 2.28.0. Updates `json-unit` from 2.27.0 to 2.28.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.27.0...json-unit-parent-2.28.0) Updates `json-unit-core` from 2.27.0 to 2.28.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.27.0...json-unit-parent-2.28.0) --- updated-dependencies: - dependency-name: net.javacrumbs.json-unit:json-unit dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: net.javacrumbs.json-unit:json-unit-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 461250430..08af684c1 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 1.7.31 5.3.9 1.3.0 - 2.27.0 + 2.28.0 2.22.2 2.22.2 From b0cc98a4b89bab2423848e65941a83e21ea74bab Mon Sep 17 00:00:00 2001 From: Radek Mensik Date: Wed, 25 Aug 2021 10:06:15 +0200 Subject: [PATCH 041/155] 1056 Add authenticationModes to Account.java --- .../com/gooddata/sdk/model/account/Account.java | 17 +++++++++++++++-- .../gooddata/sdk/model/account/AccountTest.java | 6 ++++-- .../test/resources/account/account-input.json | 3 ++- .../src/test/resources/account/account.json | 2 +- .../sdk/service/account/AccountServiceAT.java | 4 +++- .../sdk/service/account/AccountServiceIT.java | 4 ++++ .../test/resources/account/update-account.json | 3 ++- 7 files changed, 31 insertions(+), 8 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index 90cc1c88f..1e1b0a5ac 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -47,6 +47,9 @@ public class Account { @JsonView(UpdateView.class) private List ipWhitelist; + @JsonView(UpdateView.class) + private List authenticationModes; + @JsonIgnore private final Links links; @@ -59,6 +62,7 @@ private Account( @JsonProperty("firstName") String firstName, @JsonProperty("lastName") String lastName, @JsonProperty("ipWhitelist") List ipWhitelist, + @JsonProperty("authenticationModes") List authenticationModes, @JsonProperty("links") Links links ) { this.login = login; @@ -68,11 +72,12 @@ private Account( this.firstName = firstName; this.lastName = lastName; this.ipWhitelist = ipWhitelist; + this.authenticationModes = authenticationModes; this.links = links; } public Account(String firstName, String lastName, Links links) { - this(null, null, null, null, firstName, lastName, null, links); + this(null, null, null, null, firstName, lastName, null, null, links); } /** @@ -83,7 +88,7 @@ public Account(String firstName, String lastName, Links links) { * @param password password */ public Account(String email, String password, String firstName, String lastName) { - this(email, email, password, password, firstName, lastName, null, null); + this(email, email, password, password, firstName, lastName, null, null, null); } public String getLogin() { @@ -129,6 +134,10 @@ public List getIpWhitelist() { return ipWhitelist; } + public List getAuthenticationModes() { + return authenticationModes; + } + public void setEmail(final String email) { this.email = email; } @@ -153,6 +162,10 @@ public void setIpWhitelist(final List ipWhitelist) { this.ipWhitelist = ipWhitelist; } + public void setAuthenticationModes(final List authenticationModes) { + this.authenticationModes = authenticationModes; + } + @JsonIgnoreProperties(ignoreUnknown = true) private static class Links { private final String self; diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java index b735d0291..695541967 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java @@ -16,7 +16,7 @@ import static org.hamcrest.Matchers.contains; import static org.hamcrest.text.MatchesPattern.matchesPattern; -import java.util.Arrays; +import java.util.Collections; public class AccountTest { @@ -37,12 +37,14 @@ public void testDeserialize() throws Exception { assertThat(account.getUri(), is("/gdc/account/profile/ID")); assertThat(account.getProjectsUri(), is("/gdc/account/profile/ID/projects")); assertThat(account.getIpWhitelist(), contains(IP)); + assertThat(account.getAuthenticationModes(), contains("SSO")); } @Test public void testSerialization() { final Account account = new Account(FIRST_NAME, LAST_NAME, null); - account.setIpWhitelist(Arrays.asList("1.2.3.4/32")); + account.setIpWhitelist(Collections.singletonList("1.2.3.4/32")); + account.setAuthenticationModes(Collections.singletonList("SSO")); assertThat(account, jsonEquals(resource("account/account-input.json"))); } diff --git a/gooddata-java-model/src/test/resources/account/account-input.json b/gooddata-java-model/src/test/resources/account/account-input.json index a14eee3c3..863e913d9 100644 --- a/gooddata-java-model/src/test/resources/account/account-input.json +++ b/gooddata-java-model/src/test/resources/account/account-input.json @@ -2,6 +2,7 @@ "accountSetting" : { "firstName" : "Blah", "lastName" : "Muhehe", - "ipWhitelist" : ["1.2.3.4/32"] + "ipWhitelist" : ["1.2.3.4/32"], + "authenticationModes" : ["SSO"] } } diff --git a/gooddata-java-model/src/test/resources/account/account.json b/gooddata-java-model/src/test/resources/account/account.json index 27c7e9d42..a665329b1 100644 --- a/gooddata-java-model/src/test/resources/account/account.json +++ b/gooddata-java-model/src/test/resources/account/account.json @@ -5,7 +5,7 @@ "ssoProvider" : null, "timezone" : null, "position" : null, - "authenticationModes" : [], + "authenticationModes" : ["SSO"], "companyName" : "gdc", "login" : "fake@gooddata.com", "email" : "fake@gooddata.com", diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java index bc9723ea3..5297adaa9 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java @@ -11,6 +11,7 @@ import org.testng.annotations.AfterClass; import org.testng.annotations.Test; +import java.util.Collections; import java.util.UUID; import static org.hamcrest.MatcherAssert.assertThat; @@ -38,12 +39,13 @@ public void login() throws Exception { @Test(groups = "isolated_domain") public void createAccount() { final Account newAccount = new Account(LOGIN, "w4yYxSQpAbaODA64", "FistName", "LastName"); - + newAccount.setAuthenticationModes(Collections.singletonList("SSO")); account = accountService.createAccount(newAccount, getProperty("domain")); assertThat(account, is(notNullValue())); assertThat(account.getId(), is(notNullValue())); assertThat(account.getLogin(), is(LOGIN)); + assertThat(account.getAuthenticationModes(), is(Collections.singletonList("SSO"))); } @Test(groups = "isolated_domain", dependsOnMethods = "createAccount") diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java index 487168fa4..054a8982b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java @@ -13,6 +13,8 @@ import org.testng.annotations.Test; import java.io.IOException; +import java.util.Collections; +import java.util.List; import static com.gooddata.sdk.common.util.ResourceUtils.*; import static net.jadler.Jadler.onRequest; @@ -222,12 +224,14 @@ public void shouldUpdateAccount() throws Exception { final String newEmail = "fake2@gooddata.com"; final String newPass = "password2"; final String newLastName = "Muhehe2"; + final List authenticationModes = Collections.singletonList("SSO"); toBeUpdated.setFirstName(newFirstName); toBeUpdated.setEmail(newEmail); toBeUpdated.setPassword(newPass); toBeUpdated.setVerifyPassword(newPass); toBeUpdated.setLastName(newLastName); + toBeUpdated.setAuthenticationModes(authenticationModes); gd.getAccountService().updateAccount(toBeUpdated); } diff --git a/gooddata-java/src/test/resources/account/update-account.json b/gooddata-java/src/test/resources/account/update-account.json index 8f739cc51..fb805adbf 100644 --- a/gooddata-java/src/test/resources/account/update-account.json +++ b/gooddata-java/src/test/resources/account/update-account.json @@ -5,6 +5,7 @@ "verifyPassword": "password2", "firstName" : "newFirstName2", "lastName" : "Muhehe2", - "ipWhitelist" : ["1.2.3.4/32"] + "ipWhitelist" : ["1.2.3.4/32"], + "authenticationModes" : ["SSO"] } } From e7b59ebfaf2a731997e809d87c11771e86140c2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Aug 2021 09:11:28 +0000 Subject: [PATCH 042/155] Bump mockito-core from 3.11.2 to 3.12.3 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.11.2 to 3.12.3. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.11.2...v3.12.3) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 461250430..1bc60299e 100644 --- a/pom.xml +++ b/pom.xml @@ -342,7 +342,7 @@ org.mockito mockito-core - 3.11.2 + 3.12.3 test From 07e53e143712e5cfea31fa152916436158534878 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Wed, 25 Aug 2021 15:46:08 +0200 Subject: [PATCH 043/155] Add AuthenticationMode enum to Account --- .../gooddata/sdk/model/account/Account.java | 16 +++++++++++++++- .../sdk/model/account/AccountTest.java | 5 +++-- .../sdk/service/account/AccountServiceAT.java | 13 +++++++------ .../sdk/service/account/AccountServiceIT.java | 18 +++++++++--------- 4 files changed, 34 insertions(+), 18 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index 1e1b0a5ac..68590c99c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -6,8 +6,8 @@ package com.gooddata.sdk.model.account; import com.fasterxml.jackson.annotation.*; -import com.gooddata.sdk.model.util.UriHelper; import com.gooddata.sdk.common.util.GoodDataToStringBuilder; +import com.gooddata.sdk.model.util.UriHelper; import java.util.List; @@ -205,4 +205,18 @@ public String toString() { */ public static class UpdateView { } + + /** + * Enumeration type representing GoodData authentication mode. + */ + public enum AuthenticationMode { + /** + * User can be authenticated using password + */ + PASSWORD, + /** + * User can be authenticated via SSO + */ + SSO + } } diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java index 695541967..9dc87ab67 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java @@ -7,6 +7,7 @@ import org.testng.annotations.Test; +import static com.gooddata.sdk.model.account.Account.AuthenticationMode.SSO; import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals; import static net.javacrumbs.jsonunit.core.util.ResourceUtils.resource; import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; @@ -37,14 +38,14 @@ public void testDeserialize() throws Exception { assertThat(account.getUri(), is("/gdc/account/profile/ID")); assertThat(account.getProjectsUri(), is("/gdc/account/profile/ID/projects")); assertThat(account.getIpWhitelist(), contains(IP)); - assertThat(account.getAuthenticationModes(), contains("SSO")); + assertThat(account.getAuthenticationModes(), contains(SSO.toString())); } @Test public void testSerialization() { final Account account = new Account(FIRST_NAME, LAST_NAME, null); account.setIpWhitelist(Collections.singletonList("1.2.3.4/32")); - account.setAuthenticationModes(Collections.singletonList("SSO")); + account.setAuthenticationModes(Collections.singletonList(SSO.toString())); assertThat(account, jsonEquals(resource("account/account-input.json"))); } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java index 5297adaa9..1de70efb2 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java @@ -11,12 +11,13 @@ import org.testng.annotations.AfterClass; import org.testng.annotations.Test; -import java.util.Collections; import java.util.UUID; +import static com.gooddata.sdk.model.account.Account.AuthenticationMode.PASSWORD; +import static com.gooddata.sdk.model.account.Account.AuthenticationMode.SSO; +import static java.util.Arrays.asList; import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.is; -import static org.hamcrest.Matchers.notNullValue; +import static org.hamcrest.Matchers.*; /** * Account acceptance tests. @@ -39,13 +40,13 @@ public void login() throws Exception { @Test(groups = "isolated_domain") public void createAccount() { final Account newAccount = new Account(LOGIN, "w4yYxSQpAbaODA64", "FistName", "LastName"); - newAccount.setAuthenticationModes(Collections.singletonList("SSO")); + newAccount.setAuthenticationModes(asList(SSO.toString(), PASSWORD.toString())); account = accountService.createAccount(newAccount, getProperty("domain")); assertThat(account, is(notNullValue())); assertThat(account.getId(), is(notNullValue())); assertThat(account.getLogin(), is(LOGIN)); - assertThat(account.getAuthenticationModes(), is(Collections.singletonList("SSO"))); + assertThat(account.getAuthenticationModes(), containsInAnyOrder(SSO.toString(), PASSWORD.toString())); } @Test(groups = "isolated_domain", dependsOnMethods = "createAccount") @@ -69,7 +70,7 @@ public void getSeparatorSettings() { } @Test(groups = "isolated_domain", dependsOnMethods = "getSeparatorSettings") - public void updateAccount() throws Exception { + public void updateAccount() { final String newName = "Petra"; account.setFirstName(newName); diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java index 054a8982b..5b27cf4a9 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java @@ -12,11 +12,11 @@ import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; -import java.io.IOException; import java.util.Collections; import java.util.List; import static com.gooddata.sdk.common.util.ResourceUtils.*; +import static com.gooddata.sdk.model.account.Account.AuthenticationMode.SSO; import static net.jadler.Jadler.onRequest; import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals; import static org.hamcrest.MatcherAssert.assertThat; @@ -40,13 +40,13 @@ public class AccountServiceIT extends AbstractGoodDataIT { private static Account createAccount; @BeforeClass - public void init() throws IOException { + public void init() { account = readObjectFromResource(ACCOUNT, Account.class); createAccount = readObjectFromResource(CREATE_ACCOUNT, Account.class); } @Test - public void shouldCreateAccount() throws Exception { + public void shouldCreateAccount() { onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(AccountService.ACCOUNTS_TEMPLATE.expand(DOMAIN).toString()) @@ -79,7 +79,7 @@ public void shouldFailToCreateAccount() { } @Test - public void shouldRemoveAccount() throws Exception { + public void shouldRemoveAccount() { onRequest() .havingMethodEqualTo("DELETE") .havingPathEqualTo(ACCOUNT_URI) @@ -90,7 +90,7 @@ public void shouldRemoveAccount() throws Exception { } @Test(expectedExceptions = AccountNotFoundException.class) - public void shouldFailToFindAccountForRemoval() throws Exception { + public void shouldFailToFindAccountForRemoval() { onRequest() .havingMethodEqualTo("DELETE") .havingPathEqualTo(ACCOUNT_URI) @@ -116,7 +116,7 @@ public void shouldGetCurrentAccount() { } @Test(expectedExceptions = GoodDataException.class) - public void shouldFailToGetCurrentAccount() throws Exception { + public void shouldFailToGetCurrentAccount() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo(CURRENT_ACCOUNT_URI) @@ -127,7 +127,7 @@ public void shouldFailToGetCurrentAccount() throws Exception { } @Test(expectedExceptions = AccountNotFoundException.class) - public void shouldFailToFindCurrentAccount() throws Exception { + public void shouldFailToFindCurrentAccount() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo(CURRENT_ACCOUNT_URI) @@ -210,7 +210,7 @@ public void shouldFailOnUpdateNonExistentAccount() { } @Test - public void shouldUpdateAccount() throws Exception { + public void shouldUpdateAccount() { onRequest() .havingMethodEqualTo("PUT") .havingPathEqualTo(ACCOUNT_URI) @@ -224,7 +224,7 @@ public void shouldUpdateAccount() throws Exception { final String newEmail = "fake2@gooddata.com"; final String newPass = "password2"; final String newLastName = "Muhehe2"; - final List authenticationModes = Collections.singletonList("SSO"); + final List authenticationModes = Collections.singletonList(SSO.toString()); toBeUpdated.setFirstName(newFirstName); toBeUpdated.setEmail(newEmail); From 60ace60593a17abdbf9e3ccb066c942c0af0bead Mon Sep 17 00:00:00 2001 From: Binh Pham Date: Thu, 26 Aug 2021 10:15:19 +0700 Subject: [PATCH 044/155] Update developerConnection in scm config In other to automatically push new development version in release:prepare phase in CI machine --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 29096bb4e..cc2778b82 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - scm:git:${basedir} + scm:git:git@github.com:gooddata/gooddata-java.git HEAD From fdd368a2ff7124527ef0a30fb48fc6202be2fc43 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 26 Aug 2021 09:17:01 +0200 Subject: [PATCH 045/155] [maven-release-plugin] prepare release gooddata-java-parent-3.8.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index c5a9a1663..53d0b1e38 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.7.1-SNAPSHOT + 3.8.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 0c7063a18..a93888c8f 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.7.1-SNAPSHOT + 3.8.0+api3 diff --git a/pom.xml b/pom.xml index cc2778b82..b65f69a13 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.7.1-SNAPSHOT + 3.8.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.8.0+api3 From 8e88854e854001060ca9f7fac7810b30feba323d Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 26 Aug 2021 09:17:04 +0200 Subject: [PATCH 046/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 53d0b1e38..2a5c884d6 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.8.0+api3 + 3.8.1+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index a93888c8f..f8efb8611 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.8.0+api3 + 3.8.1+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index b65f69a13..56acff914 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.8.0+api3 + 3.8.1+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.8.0+api3 + HEAD From 36aca06786671ec532e58f3a1807cea5cce19299 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 09:06:54 +0000 Subject: [PATCH 047/155] Bump mockito-core from 3.12.3 to 3.12.4 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.12.3 to 3.12.4. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.12.3...v3.12.4) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56acff914..267bf3f75 100644 --- a/pom.xml +++ b/pom.xml @@ -342,7 +342,7 @@ org.mockito mockito-core - 3.12.3 + 3.12.4 test From fab8c9ff9b77b340c1cc038afc1fb2f68a366472 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Thu, 26 Aug 2021 12:42:25 +0200 Subject: [PATCH 048/155] Generalize version in usage guide in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34057c6ae..ba44ceb88 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ The *GoodData Java SDK* is available in Maven Central Repository, to use it from com.gooddata gooddata-java - 3.7.0+api3 + {MAJOR}.{MINOR}.{PATCH}+api{API} ``` See [releases page](https://github.com/gooddata/gooddata-java/releases) for information about versions and notable changes, From f24426b4a40343a71e2eb2ed9a66a1d79bdcc838 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Thu, 26 Aug 2021 12:42:50 +0200 Subject: [PATCH 049/155] Remove obsolete script for releasing --- release.sh | 101 ----------------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100755 release.sh diff --git a/release.sh b/release.sh deleted file mode 100755 index baa0121b8..000000000 --- a/release.sh +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/bash - -usage(){ - echo "Usage: $0 -v -g " - echo "Or if you want to be asked fro GPG password without printing to console: $0 -v " - exit 1 -} - -while getopts ":hv:g:" opt -do - case ${opt} in - v) - VERSION=${OPTARG} - ;; - g) - GPG_PASS=${OPTARG} - ;; - h) - usage - exit 0 - ;; - - \?) - echo -e "Invalid option: -${OPTARG}" - exit 1 - ;; - - :) - echo -e "Option -${OPTARG} require argument." - exit 2 - ;; - esac -done - -shift $(( ${OPTIND} - 1 )) - -if [[ $# -ne 0 ]]; then - echo "There are unexpected parameters!" 1>&2 - usage - exit 1 -fi - -if [[ -z "${VERSION}" ]]; then - echo "No version given!" - usage - exit 1 -fi - -if ! [[ ${VERSION} =~ ^[0-9]+\.[0-9]+\.[0-9]+(-RC\.[0-9]+)?$ ]]; then - echo "Version has to match regex ^[0-9]+\.[0-9]+\.[0-9]+(-RC\.[0-9]+)?$" - exit 1 -fi - -if [ -z "${GPG_PASS}" ]; then - echo "Enter gpg password: " - read -s GPG_PASS - if [[ -z "${GPG_PASS}" ]]; then - echo "No gpg password given!" - usage - exit 1 - fi -fi - -if [[ $(git log -1 --pretty="%s") =~ ^\[maven-release-plugin\].+$ ]]; then - echo "Latest commit in your branch is from maven-release-plugin. You're either on wrong branch or your previous release trial failed and you haven't removed commits created in this trial." - exit 1 -fi - -if [[ $(git log -1 --pretty="%s") =~ "^bump version$" ]]; then - echo "Latest commit in your branch is \"bump version\". You're either on wrong branch or your previous release trial failed and you haven't removed commits created in this trial." - exit 1 -fi - -API_VERSION=$(cat gooddata-java-model/src/main/resources/GoodDataApiVersion) -FULL_VERSION=${VERSION}+api${API_VERSION} -DEV_VERSION=$(echo ${VERSION} | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')-SNAPSHOT - -sed -i.bak "s/\(\)[0-9]*\.[0-9]*\.[0-9]*[^<]*\(<\/version>\)/\1${FULL_VERSION}\2/" README.md && rm -f README.md.bak -git commit -a -m "bump version" - -mvn --batch-mode release:prepare -DreleaseVersion=${FULL_VERSION} -DdevelopmentVersion=${DEV_VERSION} -MVN_RET_VAL=$? -if [[ ${MVN_RET_VAL} -ne 0 ]]; then - echo - echo "ERROR: Maven build failed during release:prepare phase - please fix it and try to release again." - echo "WARN: You may need to remove up to 3 commits depending on what was done before the failure. Use e.g.: git reset --hard origin/HEAD" - echo - exit ${MVN_RET_VAL} -fi - -mvn --batch-mode release:perform -Darguments="-Dgpg.passphrase=${GPG_PASS} -Dmaven.test.skip=true -Dfindbugs.skip=true" -MVN_RET_VAL=$? -if [[ ${MVN_RET_VAL} -ne 0 ]]; then - echo - echo "ERROR: Maven build failed during release:perform phase - please fix it and try to release again." - echo "WARN: You may need to remove up to 3 commits depending on what was done before the failure. Use e.g.: git reset --hard origin/HEAD" - echo - exit ${MVN_RET_VAL} -fi - -git push origin --tags HEAD From 8bf547a5591da423e0ae068322a86b5ed15a28cc Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 27 Aug 2021 08:45:48 +0200 Subject: [PATCH 050/155] Correct Users javadoc --- .../src/main/java/com/gooddata/sdk/model/project/Users.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java index 97bc98819..cb2df1140 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -19,7 +19,7 @@ import static java.util.Arrays.asList; /** - * List of users. Deserialization only. + * List of users. */ @JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = Id.NONE) @JsonTypeName("users") From 72563d562d8b4733abc1e7eac4761709c499404e Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 27 Aug 2021 08:45:48 +0200 Subject: [PATCH 051/155] Correct Users javadoc --- .../main/java/com/gooddata/sdk/model/project/Users.java | 7 ++++--- .../com/gooddata/sdk/model/project/UsersDeserializer.java | 4 ++-- .../com/gooddata/sdk/model/project/UsersSerializer.java | 5 ++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java index 97bc98819..c955d82b5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -16,13 +16,14 @@ import java.util.List; +import static com.gooddata.sdk.model.project.Users.ROOT_NODE; import static java.util.Arrays.asList; /** - * List of users. Deserialization only. + * List of users. */ @JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = Id.NONE) -@JsonTypeName("users") +@JsonTypeName(ROOT_NODE) @JsonIgnoreProperties(ignoreUnknown = true) @JsonDeserialize(using = UsersDeserializer.class) @JsonSerialize(using = UsersSerializer.class) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java index 9d33a8cf2..6757094d7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -14,7 +14,7 @@ class UsersDeserializer extends PageDeserializer { protected UsersDeserializer() { - super(User.class, "users"); + super(User.class, Users.ROOT_NODE); } @Override diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java index b4322c212..20ff203f1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -7,7 +7,6 @@ import com.fasterxml.jackson.core.JsonGenerator; -import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.core.ObjectCodec; import com.fasterxml.jackson.databind.JsonSerializer; import com.fasterxml.jackson.databind.SerializerProvider; @@ -20,7 +19,7 @@ class UsersSerializer extends JsonSerializer { @Override - public void serialize(final Users users, final JsonGenerator jgen, final SerializerProvider serializerProvider) throws IOException, JsonProcessingException { + public void serialize(final Users users, final JsonGenerator jgen, final SerializerProvider serializerProvider) throws IOException { jgen.writeStartObject(); jgen.writeFieldName(Users.ROOT_NODE); From 098d29b14d6bdd974503cb2ec20e4425b70d54dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 09:09:08 +0000 Subject: [PATCH 052/155] Bump jackson.version from 2.12.4 to 2.12.5 Bumps `jackson.version` from 2.12.4 to 2.12.5. Updates `jackson-core` from 2.12.4 to 2.12.5 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.12.4...jackson-core-2.12.5) Updates `jackson-databind` from 2.12.4 to 2.12.5 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.12.4 to 2.12.5 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56acff914..578384bcf 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 4.5.13 4.4.14 - 2.12.4 + 2.12.5 1.7.32 5.3.9 1.3.0 From f6693117f1796c5ed46d8d220c9260a1c65ec514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Tue, 31 Aug 2021 10:51:04 +0200 Subject: [PATCH 053/155] Describe test best practices in CONTRIBUTING --- CONTRIBUTING.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d37ed5fc..274738f04 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,15 +59,20 @@ is specific enough. * `find*()` when searching for multiple objects (collection of objects, never return `null`) * `list*()` when listing whole or paged collection of objects (return collection or collection wrapped by DTO) * `remove*()` (i.e. `remove(Project project)`) instead od `delete*()` -* Write **integration tests** for services using _[Jadler](https://github.com/jadler-mocking/jadler/wiki)_. -* If it is possible write **acceptance tests** to be run with the real backend. +* In addition to unit tests, write also **integration tests** and **acceptance tests** if possible. See "What to test where" in "Best practices" below. * Update [documentation](https://github.com/gooddata/gooddata-java/wiki/Code-Examples) with usage examples. ## Best practices -* **Test class naming**: - * `*Test` unit tests, but avoid service tests using mocked `RestTemplate` - use integration test - * `*IT` integration tests (see [`AbstractGoodDataIT`](src/test/java/com/gooddata/AbstractGoodDataIT.java)) - * `*AT` acceptance tests +* **What to test where**: + * `*Test` = unit tests + * focus on verifying bussiness logic, corner cases, various input combinations, etc. + * avoid service tests using mocked `RestTemplate` - use integration tests with mocked API responses instead + * `*IT` = integration tests + * focus on verifying all possible outcomes of API calls + * see common ancestor [`AbstractGoodDataIT`](src/test/java/com/gooddata/AbstractGoodDataIT.java) setting up [Jadler](https://github.com/jadler-mocking/jadler/wiki) for API mocking + * `*AT` = acceptance tests + * focus on verifying the happy path against the real backend (so we're sure mocks in ITs are correct) + * see common ancestor [`AbstractGoodDataAT`](src/test/java/com/gooddata/AbstractGoodDataAT.java) setting up GoodData endpoint based on passed environment variables * Everything public should be **documented** using _javadoc_. * When you need some **utility code**, look for handy utilities in used libraries first (e.g. _Spring_ has its `StreamUtils`, `FileCopyUtils`, ...). When you decide to create new utility class, From 6a55e1c852b3cddea52f86c453edd8cdf55c8397 Mon Sep 17 00:00:00 2001 From: Radek Mensik Date: Thu, 26 Aug 2021 16:24:33 +0200 Subject: [PATCH 054/155] 1064 get user by login MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Libor Ryšavý --- .../gooddata/sdk/model/account/Account.java | 10 ++++- .../gooddata/sdk/model/account/Accounts.java | 35 +++++++++++++++ .../model/account/AccountsDeserializer.java | 24 +++++++++++ .../sdk/model/account/AccountsTest.java | 40 +++++++++++++++++ .../src/test/resources/account/accounts.json | 34 +++++++++++++++ .../account/AccountNotFoundException.java | 6 +++ .../sdk/service/account/AccountService.java | 28 ++++++++++++ .../sdk/service/account/AccountServiceAT.java | 11 +++++ .../sdk/service/account/AccountServiceIT.java | 43 ++++++++++++++++++- .../account-by-email-empty-response.json | 9 ++++ .../resources/account/account-by-email.json | 34 +++++++++++++++ 11 files changed, 271 insertions(+), 3 deletions(-) create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java create mode 100644 gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java create mode 100644 gooddata-java-model/src/test/resources/account/accounts.json create mode 100644 gooddata-java/src/test/resources/account/account-by-email-empty-response.json create mode 100644 gooddata-java/src/test/resources/account/account-by-email.json diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index 68590c99c..4ef4d43cd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -5,7 +5,14 @@ */ package com.gooddata.sdk.model.account; -import com.fasterxml.jackson.annotation.*; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonTypeInfo; +import com.fasterxml.jackson.annotation.JsonTypeName; +import com.fasterxml.jackson.annotation.JsonView; import com.gooddata.sdk.common.util.GoodDataToStringBuilder; import com.gooddata.sdk.model.util.UriHelper; @@ -22,6 +29,7 @@ public class Account { public static final String URI = "/gdc/account/profile/{id}"; public static final String ACCOUNTS_URI = "/gdc/account/domains/{organization_name}/users"; + public static final String ACCOUNT_BY_EMAIL_URI = ACCOUNTS_URI + "?login={email}"; public static final String LOGIN_URI = "/gdc/account/login/{id}"; diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java new file mode 100644 index 000000000..9f20cfc76 --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.account; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonTypeInfo; +import com.fasterxml.jackson.annotation.JsonTypeInfo.Id; +import com.fasterxml.jackson.annotation.JsonTypeName; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.gooddata.sdk.common.collections.Page; +import com.gooddata.sdk.common.collections.Paging; + +import java.util.List; +import java.util.Map; + +/** + * List of accounts. Deserialization only. + */ +@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = Id.NAME) +@JsonTypeName(Accounts.ROOT_NODE) +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonDeserialize(using = AccountsDeserializer.class) +public class Accounts extends Page { + + static final String ROOT_NODE = "accountSettings"; + + + Accounts(final List items, final Paging paging, final Map links) { + super(items, paging, links); + } +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java new file mode 100644 index 000000000..af0409301 --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.account; + +import com.gooddata.sdk.common.collections.PageDeserializer; +import com.gooddata.sdk.common.collections.Paging; + +import java.util.List; +import java.util.Map; + +class AccountsDeserializer extends PageDeserializer { + + protected AccountsDeserializer() { + super(Account.class); + } + + @Override + protected Accounts createPage(final List items, final Paging paging, final Map links) { + return new Accounts(items, paging, links); + } +} diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java new file mode 100644 index 000000000..2d1778cb7 --- /dev/null +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java @@ -0,0 +1,40 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.account; + +import org.hamcrest.Matchers; +import org.testng.annotations.Test; + +import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.contains; +import static org.hamcrest.collection.IsCollectionWithSize.hasSize; + +public class AccountsTest { + + private static final String EMAIL = "example@company.com"; + private static final String FIRST_NAME = "Blah"; + private static final String LAST_NAME = "Muhehe"; + private static final String IP = "1.2.3.4/32"; + + private final Accounts accounts = readObjectFromResource("/account/accounts.json", Accounts.class); + + + @Test + public void testDeserialization() throws Exception { + assertThat(accounts, Matchers.notNullValue()); + assertThat(accounts.getPageItems(), hasSize(1)); + final Account account = accounts.getPageItems().get(0); + assertThat(account.getFirstName(), is(FIRST_NAME)); + assertThat(account.getLastName(), is(LAST_NAME)); + assertThat(account.getId(), is("ID")); + assertThat(account.getUri(), is("/gdc/account/profile/ID")); + assertThat(account.getProjectsUri(), is("/gdc/account/profile/ID/projects")); + assertThat(account.getIpWhitelist(), contains(IP)); + assertThat(account.getEmail(), is(EMAIL)); + } +} diff --git a/gooddata-java-model/src/test/resources/account/accounts.json b/gooddata-java-model/src/test/resources/account/accounts.json new file mode 100644 index 000000000..4c7c18de0 --- /dev/null +++ b/gooddata-java-model/src/test/resources/account/accounts.json @@ -0,0 +1,34 @@ +{ + "accountSettings": { + "items": [ + { + "accountSetting": { + "companyName": null, + "country": null, + "created": "2014-02-24 18:51:53", + "firstName": "Blah", + "lastName": "Muhehe", + "login": "example@company.com", + "phoneNumber": null, + "position": null, + "timezone": null, + "updated": "2014-02-24 18:51:53", + "email": "example@company.com", + "language": "language", + "ipWhitelist": ["1.2.3.4/32"], + "effectiveIpWhitelist": null, + "links": { + "projects": "/gdc/account/profile/ID/projects", + "self": "/gdc/account/profile/ID" + } + } + } + ], + "paging": { + "offset": 0, + "count": 1 + } + + } + +} \ No newline at end of file diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java index 4bb1dfb7b..aeb276bfa 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java @@ -20,6 +20,12 @@ public AccountNotFoundException(String uri, GoodDataRestException cause) { this.accountUri = uri; } + public AccountNotFoundException(final String message, + final String accountUri) { + super(message + " failed on " + accountUri); + this.accountUri = accountUri; + } + public String getAccountUri() { return accountUri; } diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java index 9506381b6..8865f6096 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java @@ -8,10 +8,12 @@ import com.gooddata.sdk.common.GoodDataException; import com.gooddata.sdk.common.GoodDataRestException; import com.gooddata.sdk.model.account.Account; +import com.gooddata.sdk.model.account.Accounts; import com.gooddata.sdk.model.account.SeparatorSettings; import com.gooddata.sdk.model.gdc.UriResponse; import com.gooddata.sdk.service.AbstractService; import com.gooddata.sdk.service.GoodDataSettings; + import org.springframework.http.HttpStatus; import org.springframework.http.converter.json.MappingJacksonValue; import org.springframework.web.client.RestClientException; @@ -29,6 +31,7 @@ public class AccountService extends AbstractService { public static final UriTemplate ACCOUNT_TEMPLATE = new UriTemplate(Account.URI); public static final UriTemplate ACCOUNTS_TEMPLATE = new UriTemplate(Account.ACCOUNTS_URI); + public static final UriTemplate ACCOUNT_BY_LOGIN_TEMPLATE = new UriTemplate(Account.ACCOUNT_BY_EMAIL_URI); public static final UriTemplate LOGIN_TEMPLATE = new UriTemplate(Account.LOGIN_URI); public static final UriTemplate SEPARATORS_TEMPLATE = new UriTemplate(SeparatorSettings.URI); @@ -130,6 +133,31 @@ public Account getAccountById(final String id) { } } + /** + * Get account by given login. + * Only domain admin is allowed to search users by login. + * @param email used as login + * @param organizationName (domain) in which account is present + * @return account found by given login + * @throws AccountNotFoundException when given account wasn't found + * @throws GoodDataException when different error occurs + */ + public Account getAccountByLogin(final String email, final String organizationName) { + notNull(email, "email"); + notNull(organizationName, "organizationName"); + try { + final Accounts accounts = restTemplate.getForObject( + Account.ACCOUNT_BY_EMAIL_URI, Accounts.class, organizationName, email); + if (accounts != null && !accounts.getPageItems().isEmpty()) { + return accounts.getPageItems().get(0); + } + throw new AccountNotFoundException("User was not found by email " + + email + " in organization " + organizationName, Account.ACCOUNT_BY_EMAIL_URI); + } catch (RestClientException e) { + throw new GoodDataException("Unable to get account", e); + } + } + /** * Get account for given account id * @param uri to search for diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java index 1de70efb2..5f76e79ce 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java @@ -60,6 +60,17 @@ public void getAccount() { assertThat(foundAccount.getLogin(), is(account.getLogin())); } + @Test(groups = "isolated_domain", dependsOnMethods = "createAccount") + public void getAccountByLogin() { + final Account foundAccount = accountService.getAccountByLogin(LOGIN, getProperty("domain")); + + assertThat(foundAccount, is(notNullValue())); + assertThat(foundAccount.getId(), is(notNullValue())); + assertThat(foundAccount.getId(), is(account.getId())); + assertThat(foundAccount.getLogin(), is(LOGIN)); + assertThat(foundAccount.getLogin(), is(account.getLogin())); + } + @Test(groups = "isolated_domain", dependsOnMethods = "getAccount") public void getSeparatorSettings() { final SeparatorSettings separators = accountService.getSeparatorSettings(account); diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java index 5b27cf4a9..72ca6a3df 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java @@ -7,15 +7,19 @@ import com.gooddata.sdk.common.GoodDataException; import com.gooddata.sdk.model.account.Account; +import com.gooddata.sdk.model.account.Accounts; import com.gooddata.sdk.model.account.SeparatorSettings; import com.gooddata.sdk.service.AbstractGoodDataIT; + import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import java.util.Collections; import java.util.List; -import static com.gooddata.sdk.common.util.ResourceUtils.*; +import static com.gooddata.sdk.common.util.ResourceUtils.readFromResource; +import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; +import static com.gooddata.sdk.common.util.ResourceUtils.readStringFromResource; import static com.gooddata.sdk.model.account.Account.AuthenticationMode.SSO; import static net.jadler.Jadler.onRequest; import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals; @@ -25,16 +29,24 @@ public class AccountServiceIT extends AbstractGoodDataIT { + private static final String DOMAIN = "default"; private static final String CREATE_ACCOUNT = "/account/create-account.json"; public static final String ACCOUNT = "/account/account.json"; + private static final String ACCOUNT_BY_EMAIL = "/account/account-by-email.json"; + private static final String ACCOUNT_BY_EMAIL_EMPTY_RESPONSE = "/account/account-by-email-empty-response.json"; private static final String ACCOUNT_UPDATE = "/account/update-account.json"; private static final String SEPARATORS = "/account/separators.json"; private static final String ACCOUNT_ID = "ID"; private static final String ACCOUNT_URI = AccountService.ACCOUNT_TEMPLATE.expand(ACCOUNT_ID).toString(); + private static final String LOGIN_EMAIL = "example@company.com"; + private static final String ACCOUNT_BY_EMAIL_URI = AccountService.ACCOUNTS_TEMPLATE + .expand(DOMAIN).toString(); + + private static final String SEPARATORS_URI = AccountService.SEPARATORS_TEMPLATE.expand(ACCOUNT_ID).toString(); public static final String CURRENT_ACCOUNT_URI = AccountService.ACCOUNT_TEMPLATE.expand(Account.CURRENT_ID).toString(); private static final String LOGOUT_CURRENT = AccountService.LOGIN_TEMPLATE.expand(ACCOUNT_ID).toString(); - private static final String DOMAIN = "default"; + private static Account account; private static Account createAccount; @@ -187,6 +199,33 @@ public void shouldGetAccount() { assertThat(created.getFirstName(), is("Blah")); } + @Test + public void shouldGetAccountByEmail() { + onRequest() + .havingMethodEqualTo("GET") + .havingPathEqualTo(ACCOUNT_BY_EMAIL_URI) + .havingQueryStringEqualTo("login=" + LOGIN_EMAIL) + .respond() + .withBody(readFromResource(ACCOUNT_BY_EMAIL)) + .withStatus(200); + + final Account loaded = gd.getAccountService().getAccountByLogin(LOGIN_EMAIL, DOMAIN); + assertThat(loaded.getFirstName(), is("John")); + } + + @Test(expectedExceptions = AccountNotFoundException.class) + public void shouldGetEmptyPageWhenAccountByEmailDoesNotExist() { + onRequest() + .havingMethodEqualTo("GET") + .havingPathEqualTo(ACCOUNT_BY_EMAIL_URI) + .havingQueryStringEqualTo("login=wrong@email.com") + .respond() + .withBody(readFromResource(ACCOUNT_BY_EMAIL_EMPTY_RESPONSE)) + .withStatus(200); + + gd.getAccountService().getAccountByLogin("wrong@email.com", DOMAIN); + } + @Test(expectedExceptions = AccountNotFoundException.class) public void shouldFailToFindAccount() { onRequest() diff --git a/gooddata-java/src/test/resources/account/account-by-email-empty-response.json b/gooddata-java/src/test/resources/account/account-by-email-empty-response.json new file mode 100644 index 000000000..7d243e05c --- /dev/null +++ b/gooddata-java/src/test/resources/account/account-by-email-empty-response.json @@ -0,0 +1,9 @@ +{ + "accountSettings": { + "paging": { + "offset": 0, + "count": 0 + }, + "items": [] + } +} \ No newline at end of file diff --git a/gooddata-java/src/test/resources/account/account-by-email.json b/gooddata-java/src/test/resources/account/account-by-email.json new file mode 100644 index 000000000..8807e292d --- /dev/null +++ b/gooddata-java/src/test/resources/account/account-by-email.json @@ -0,0 +1,34 @@ +{ + "accountSettings": { + "items": [ + { + "accountSetting": { + "companyName": null, + "country": null, + "created": "2014-02-24 18:51:53", + "firstName": "John", + "lastName": "Doe", + "login": "example@company.com", + "phoneNumber": null, + "position": null, + "timezone": null, + "updated": "2014-02-24 18:51:53", + "email": "example@company.com", + "language": "language", + "ipWhitelist": null, + "effectiveIpWhitelist": null, + "links": { + "projects": "/gdc/account/profile/{profile_id}/projects", + "self": "/gdc/account/profile/{profile_id}" + } + } + } + ], + "paging": { + "offset": 0, + "count": 1 + } + + } + +} \ No newline at end of file From 99df8e33a6eb9a5b85f7e35365b91f336134001e Mon Sep 17 00:00:00 2001 From: Radek Mensik Date: Wed, 1 Sep 2021 09:00:13 +0200 Subject: [PATCH 055/155] 1070 Create account with login filled --- .../gooddata/sdk/model/account/Account.java | 10 +++++++++ .../sdk/model/account/AccountTest.java | 22 +++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index 68590c99c..25abf5a5c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -76,6 +76,16 @@ private Account( this.links = links; } + public Account(final String login, + final String email, + final String password, + final String firstName, + final String lastName, + final List ipWhitelist, + final List authenticationModes) { + this(login, email, password, password, firstName, lastName, ipWhitelist, authenticationModes, null); + } + public Account(String firstName, String lastName, Links links) { this(null, null, null, null, firstName, lastName, null, null, links); } diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java index 9dc87ab67..c04f8c53c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java @@ -25,6 +25,8 @@ public class AccountTest { private static final String FIRST_NAME = "Blah"; private static final String LAST_NAME = "Muhehe"; private static final String IP = "1.2.3.4/32"; + private static final String TEST_LOGIN = "testLogin"; + private static final String TEST_PASSWORD = "testPassword"; @SuppressWarnings("deprecation") @Test @@ -62,4 +64,24 @@ public void testToStringFormat() { assertThat(account.toString(), matchesPattern(Account.class.getSimpleName() + "\\[.*\\]")); } + + + @Test + public void testAllParametersConstructor() { + + final Account account = new Account(TEST_LOGIN, MAIL, TEST_PASSWORD, FIRST_NAME, LAST_NAME, + Collections.singletonList(IP), Collections.singletonList(SSO.toString())); + + assertThat(account.getLogin(), is(TEST_LOGIN)); + assertThat(account.getEmail(), is(MAIL)); + assertThat(account.getPassword(), is(TEST_PASSWORD)); + assertThat(account.getVerifyPassword(), is(TEST_PASSWORD)); + assertThat(account.getFirstName(), is(FIRST_NAME)); + assertThat(account.getLastName(), is(LAST_NAME)); + assertThat(account.getIpWhitelist(), contains(IP)); + assertThat(account.getAuthenticationModes(), contains(SSO.toString())); + + + } + } From 83af482420ce049fc1b59ec35854859874892d93 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 1 Sep 2021 11:05:11 +0200 Subject: [PATCH 056/155] [maven-release-plugin] prepare release gooddata-java-parent-3.9.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 2a5c884d6..19e225223 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.8.1+api3-SNAPSHOT + 3.9.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index f8efb8611..15236c91a 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.8.1+api3-SNAPSHOT + 3.9.0+api3 diff --git a/pom.xml b/pom.xml index 56acff914..d6d8ffbc7 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.8.1+api3-SNAPSHOT + 3.9.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.9.0+api3 From f7cee00a03479490d58fc3c725a47b8fc62451a1 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 1 Sep 2021 11:05:14 +0200 Subject: [PATCH 057/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 19e225223..c7249bdbe 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.9.0+api3 + 3.9.1+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 15236c91a..0a8e3c812 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.9.0+api3 + 3.9.1+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index d6d8ffbc7..fb3e6cd61 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.9.0+api3 + 3.9.1+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.9.0+api3 + HEAD From 8f1ff803f13ac27836448d10121d8ee85adbb71d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Thu, 2 Sep 2021 07:43:17 +0200 Subject: [PATCH 058/155] Don't associate dependencies bumps with issues --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 274738f04..177e95b01 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ Below are few **rules, recommendations and best practices** we try to follow whe * must be written in the **imperative mood** * must clearly **explain rationale** behind this change (describe _why_ you are doing the change rather than _what_ you are changing) * The **pull request**: - * with non-trivial change must be **[associated with an issue](https://help.github.com/articles/closing-issues-via-commit-messages/)** + * with non-trivial, non-dependencies change must be **[associated with an issue](https://help.github.com/articles/closing-issues-via-commit-messages/)** * Add usage examples of new high level functionality to [documentation](https://github.com/gooddata/gooddata-java/wiki/Code-Examples). From 22c34af63684450177c86cd834586036da09a801 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Mon, 6 Sep 2021 08:30:58 +0200 Subject: [PATCH 059/155] Exclude surefire/failsafe reports from dep. check --- suppressions.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 suppressions.xml diff --git a/suppressions.xml b/suppressions.xml new file mode 100644 index 000000000..ef3c5aabf --- /dev/null +++ b/suppressions.xml @@ -0,0 +1,11 @@ + + + + + ^\/gooddata-java\/[^\/]+\/target\/(failsafe|surefire)-reports\/.+$ + .* + + + From bd6abe64c625e83318f843d6c3028ed4acc14256 Mon Sep 17 00:00:00 2001 From: Radek Mensik Date: Thu, 9 Sep 2021 18:01:40 +0200 Subject: [PATCH 060/155] 1077 Remove user from a project --- .../sdk/service/project/ProjectService.java | 34 +++++++++ .../sdk/service/project/ProjectServiceAT.java | 34 +++++++-- .../sdk/service/project/ProjectServiceIT.java | 22 ++++++ .../service/project/ProjectServiceTest.java | 72 +++++++++++++++++++ 4 files changed, 158 insertions(+), 4 deletions(-) diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java index c856ddf01..e9b56c89a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java @@ -552,4 +552,38 @@ private void doPostProjectUsersUpdate(final Project project, final User... users throw new GoodDataException("Unable to update users in project", e); } } + + /** + * Removes given account from a project without checking if really account is in project. + *

+ * You can: + *

    + *
  • Remove yourself from a project (leave the project). You cannot leave the project if you are the only admin in the project.
  • + *
  • Remove another user from a project. You need to have the canSuspendUser permission in this project.
  • + *
+ *

+ * @param account account to be removed + * @param project project from user will be removed + * @throws com.gooddata.sdk.common.GoodDataException when account can't be removed + */ + public void removeUserFromProject(final Project project, final Account account) { + notNull(project, "project"); + notNull(project.getId(), "project.id"); + notNull(account, "account"); + notNull(account.getId(), "account.id"); + + try { + restTemplate.delete(getUserUri(project, account)); + } catch (GoodDataRestException e) { + if (HttpStatus.FORBIDDEN.value() == e.getStatusCode()) { + throw new GoodDataException("You cannot leave the project " + project.getId() + " if you are the only admin in it. You can make another user an admin in this project, and then re-issue the call.", e); + } else if (HttpStatus.METHOD_NOT_ALLOWED.value() == e.getStatusCode()) { + throw new GoodDataException("You either misspelled your user ID or tried to remove another user but did not have the canSuspendUser permission in this project. Check your ID in the request and your permissions in the project " + project.getId() + ", then re-issue the call.", e); + } else { + throw e; + } + } catch (RestClientException e) { + throw new GoodDataException("Unable to remove account " + account.getUri() + " from project " + project.getUri(), e); + } + } } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java index 94a3088d8..158c26438 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java @@ -8,22 +8,35 @@ import com.gooddata.sdk.common.collections.CustomPageRequest; import com.gooddata.sdk.common.collections.Page; import com.gooddata.sdk.common.collections.PageBrowser; -import com.gooddata.sdk.common.collections.PageRequest; import com.gooddata.sdk.model.account.Account; -import com.gooddata.sdk.model.project.*; +import com.gooddata.sdk.model.project.CreatedInvitations; +import com.gooddata.sdk.model.project.Invitation; +import com.gooddata.sdk.model.project.Project; +import com.gooddata.sdk.model.project.ProjectValidationResults; +import com.gooddata.sdk.model.project.Role; +import com.gooddata.sdk.model.project.User; import com.gooddata.sdk.service.AbstractGoodDataAT; import com.gooddata.sdk.service.account.AccountService; + import org.apache.commons.lang3.RandomStringUtils; import org.hamcrest.core.IsIterableContaining; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; -import java.util.*; +import java.util.ArrayList; +import java.util.List; +import java.util.Set; +import java.util.UUID; import static com.gooddata.sdk.model.project.ProjectEnvironment.TESTING; import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.*; +import static org.hamcrest.Matchers.empty; +import static org.hamcrest.Matchers.hasSize; +import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.not; +import static org.hamcrest.Matchers.notNullValue; +import static org.testng.Assert.fail; /** * Project acceptance tests. @@ -150,6 +163,19 @@ public void getUserInProject() { assertThat(user, notNullValue()); } + @Test(groups = {"project", "isolated_domain"}, dependsOnMethods = "disableUserInProject") + public void removeAccountFromProject() { + final User user = gd.getProjectService().getUser(project, account1); + gd.getProjectService().removeUserFromProject(project, account1); + + try { + gd.getProjectService().getUser(project, account1); + assertThat("Exception should be thrown.", false); + } catch (UserInProjectNotFoundException e) { + //expected + } + } + @AfterClass(groups = "isolated_domain") public void tearDownIsolatedDomainGroup() { try { diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java index 615debcfb..427fdde96 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java @@ -429,4 +429,26 @@ public void getUserInProjectNotFound() { gd.getProjectService().getUser(enabled, account); } + + @Test + public void removeUserFromProject() { + onRequest() + .havingMethodEqualTo("DELETE") + .havingPathEqualTo(ProjectService.PROJECT_USER_TEMPLATE.expand("PROJECT_ID", "ID").toString()) + .respond() + .withStatus(200); + + gd.getProjectService().removeUserFromProject(enabled, account); + } + + @Test(expectedExceptions = GoodDataException.class) + public void removeUserFromProjectNotFound() { + onRequest() + .havingMethodEqualTo("DELETE") + .havingPathEqualTo(ProjectService.PROJECT_USER_TEMPLATE.expand("PROJECT_ID", "ID").toString()) + .respond() + .withStatus(404); + + gd.getProjectService().removeUserFromProject(enabled, account); + } } \ No newline at end of file diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java index da0187270..df5ba7487 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java @@ -18,12 +18,16 @@ import com.gooddata.sdk.service.account.AccountService; import org.mockito.Mock; import org.mockito.MockitoAnnotations; +import org.springframework.http.HttpStatus; import org.springframework.web.client.RestClientException; import org.springframework.web.client.RestTemplate; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; +import java.net.MalformedURLException; import java.net.URI; +import java.net.URISyntaxException; +import java.net.URL; import java.util.Collection; import static com.gooddata.sdk.service.project.ProjectService.LIST_PROJECTS_TEMPLATE; @@ -32,6 +36,7 @@ import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.hasSize; +import static org.mockito.Mockito.doNothing; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.mock; @@ -203,4 +208,71 @@ public void testGetRoleByUri() { assertThat(roleByUri, is(role)); } + @Test(expectedExceptions = IllegalArgumentException.class) + public void removeUserFromProjectInvalidProject(){ + service.removeUserFromProject(project, null); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void removeUserFromProjectInvalidAccount(){ + service.removeUserFromProject(null, account); + } + + @Test(expectedExceptions = GoodDataException.class) + public void removeUserProjectFail() throws URISyntaxException { + when(project.getId()).thenReturn("1"); + when(account.getId()).thenReturn("1"); + doThrow(GoodDataRestException.class).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); + service.removeUserFromProject(project, account); + } + + @Test(expectedExceptions = GoodDataException.class, + expectedExceptionsMessageRegExp= "You cannot leave the project 1 if you are the " + + "only admin in it. You can make another user an admin in this project, and then re-issue the call.") + public void removeUserProjectFailForbidden() throws URISyntaxException { + when(project.getId()).thenReturn("1"); + when(account.getId()).thenReturn("1"); + final GoodDataRestException goodDataRestException = new GoodDataRestException( + HttpStatus.FORBIDDEN.value(), + "r1", + "not allowd", + "component", + "errorClass"); + doThrow(goodDataRestException).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); + service.removeUserFromProject(project, account); + } + + @Test(expectedExceptions = GoodDataException.class, + expectedExceptionsMessageRegExp= "You either misspelled your user ID or tried to remove another user but " + + "did not have the canSuspendUser permission in this project. Check your ID in the request and your " + + "permissions in the project 1, then re-issue the call.") + public void removeUserProjectFailNotAllowed() throws URISyntaxException { + when(project.getId()).thenReturn("1"); + when(account.getId()).thenReturn("1"); + final GoodDataRestException goodDataRestException = new GoodDataRestException( + HttpStatus.METHOD_NOT_ALLOWED.value() , + "r1", + "not allowd", + "component", + "errorClass"); + doThrow(goodDataRestException).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); + service.removeUserFromProject(project, account); + } + + @Test(expectedExceptions = GoodDataException.class) + public void removeUserProjectFailRestletClientException() throws URISyntaxException { + when(project.getId()).thenReturn("1"); + when(account.getId()).thenReturn("1"); + doThrow(RestClientException.class).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); + service.removeUserFromProject(project, account); + } + + @Test + public void removeUserProject() throws URISyntaxException { + when(project.getId()).thenReturn("1"); + when(account.getId()).thenReturn("1"); + doNothing().when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); + service.removeUserFromProject(project, account); + } + } \ No newline at end of file From 8f82a9234c2753d5b8385495ad7f35a8596726fa Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 14 Sep 2021 14:08:44 +0200 Subject: [PATCH 061/155] Fine tune ProjectService tests --- .../sdk/service/project/ProjectServiceAT.java | 11 ++++---- .../sdk/service/project/ProjectServiceIT.java | 3 +- .../service/project/ProjectServiceTest.java | 28 ++++++++++++------- 3 files changed, 25 insertions(+), 17 deletions(-) diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java index 158c26438..d043c52f8 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java @@ -36,7 +36,6 @@ import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.not; import static org.hamcrest.Matchers.notNullValue; -import static org.testng.Assert.fail; /** * Project acceptance tests. @@ -104,14 +103,14 @@ public void listProjectRoles() { @Test(groups = "project", dependsOnMethods = "createProject") public void getProjectById() { - final Project project = gd.getProjectService().getProjectById(this.project.getId()); - assertThat(project, ProjectIdMatcher.hasSameIdAs(this.project)); + final Project result = gd.getProjectService().getProjectById(project.getId()); + assertThat(result, ProjectIdMatcher.hasSameIdAs(project)); } @Test(groups = "project", dependsOnMethods = "createProject") public void getProjectByUri() { - final Project project = gd.getProjectService().getProjectByUri(this.project.getUri()); - assertThat(project, ProjectIdMatcher.hasSameIdAs(this.project)); + final Project result = gd.getProjectService().getProjectByUri(project.getUri()); + assertThat(result, ProjectIdMatcher.hasSameIdAs(project)); } @Test(groups = "project", dependsOnMethods = "createProject") @@ -165,7 +164,7 @@ public void getUserInProject() { @Test(groups = {"project", "isolated_domain"}, dependsOnMethods = "disableUserInProject") public void removeAccountFromProject() { - final User user = gd.getProjectService().getUser(project, account1); + gd.getProjectService().getUser(project, account1); // just verifying it doesn't throw before the removal gd.getProjectService().removeUserFromProject(project, account1); try { diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java index 427fdde96..9c94179bf 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java @@ -447,7 +447,8 @@ public void removeUserFromProjectNotFound() { .havingMethodEqualTo("DELETE") .havingPathEqualTo(ProjectService.PROJECT_USER_TEMPLATE.expand("PROJECT_ID", "ID").toString()) .respond() - .withStatus(404); + .withStatus(404) + .withBody("{\"error\":{\"parameters\":[\"1234\"],\"requestId\":\"req1\",\"component\":\"GDC::LWP::UserAgent\",\"message\":\"User uid %s doesn't exist.\",\"errorClass\":\"GDC::Exception::NotFound\"}}"); gd.getProjectService().removeUserFromProject(enabled, account); } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java index df5ba7487..fb43b4e02 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java @@ -24,10 +24,8 @@ import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; -import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; -import java.net.URL; import java.util.Collection; import static com.gooddata.sdk.service.project.ProjectService.LIST_PROJECTS_TEMPLATE; @@ -65,7 +63,7 @@ public class ProjectServiceTest { @BeforeMethod public void setUp() throws Exception { - MockitoAnnotations.openMocks(this).close();; + MockitoAnnotations.openMocks(this).close(); service = new ProjectService(restTemplate, accountService, new GoodDataSettings()); when(accountService.getCurrent()).thenReturn(account); when(account.getId()).thenReturn(ACCOUNT_ID); @@ -218,11 +216,18 @@ public void removeUserFromProjectInvalidAccount(){ service.removeUserFromProject(null, account); } - @Test(expectedExceptions = GoodDataException.class) - public void removeUserProjectFail() throws URISyntaxException { + @Test(expectedExceptions = GoodDataException.class, + expectedExceptionsMessageRegExp = "500.*r1.*server error") + public void removeUserProjectFailUnexpectedly() throws URISyntaxException { when(project.getId()).thenReturn("1"); when(account.getId()).thenReturn("1"); - doThrow(GoodDataRestException.class).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); + final GoodDataRestException goodDataRestException = new GoodDataRestException( + HttpStatus.INTERNAL_SERVER_ERROR.value(), + "r1", + "server error", + "component", + "errorClass"); + doThrow(goodDataRestException).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); service.removeUserFromProject(project, account); } @@ -235,7 +240,7 @@ public void removeUserProjectFailForbidden() throws URISyntaxException { final GoodDataRestException goodDataRestException = new GoodDataRestException( HttpStatus.FORBIDDEN.value(), "r1", - "not allowd", + "forbidden", "component", "errorClass"); doThrow(goodDataRestException).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); @@ -252,17 +257,20 @@ public void removeUserProjectFailNotAllowed() throws URISyntaxException { final GoodDataRestException goodDataRestException = new GoodDataRestException( HttpStatus.METHOD_NOT_ALLOWED.value() , "r1", - "not allowd", + "not allowed", "component", "errorClass"); doThrow(goodDataRestException).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); service.removeUserFromProject(project, account); } - @Test(expectedExceptions = GoodDataException.class) - public void removeUserProjectFailRestletClientException() throws URISyntaxException { + @Test(expectedExceptions = GoodDataException.class, + expectedExceptionsMessageRegExp = "Unable to remove account /gdc/account/1 from project /gdc/projects/1") + public void removeUserProjectFailWithRestClientException() throws URISyntaxException { when(project.getId()).thenReturn("1"); + when(project.getUri()).thenReturn("/gdc/projects/1"); when(account.getId()).thenReturn("1"); + when(account.getUri()).thenReturn("/gdc/account/1"); doThrow(RestClientException.class).when(restTemplate).delete(new URI("/gdc/projects/1/users/1")); service.removeUserFromProject(project, account); } From de3bef5a5ad2ab61b9a4633e97bba358497f05d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Sep 2021 09:07:19 +0000 Subject: [PATCH 062/155] Bump spring.version from 5.3.9 to 5.3.10 Bumps `spring.version` from 5.3.9 to 5.3.10. Updates `spring-core` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) Updates `spring-beans` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) Updates `spring-web` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) Updates `spring-context` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 13ebeff79..2b90927c4 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.14 2.12.5 1.7.32 - 5.3.9 + 5.3.10 1.3.0 2.28.0 2.22.2 From f733d0cf0c5c37609163ad415f80d6445e733812 Mon Sep 17 00:00:00 2001 From: Radek Mensik Date: Tue, 14 Sep 2021 13:54:02 +0200 Subject: [PATCH 063/155] 1078 List projects for a user --- .../sdk/service/project/ProjectService.java | 25 +++++++++ .../sdk/service/project/ProjectServiceAT.java | 22 ++++++++ .../sdk/service/project/ProjectServiceIT.java | 22 ++++++++ .../service/project/ProjectServiceTest.java | 29 +++++++++- .../resources/project/projects-for-user.json | 55 +++++++++++++++++++ 5 files changed, 152 insertions(+), 1 deletion(-) create mode 100644 gooddata-java/src/test/resources/project/projects-for-user.json diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java index e9b56c89a..61fa309b7 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java @@ -7,6 +7,7 @@ import com.gooddata.sdk.common.GoodDataException; import com.gooddata.sdk.common.GoodDataRestException; +import com.gooddata.sdk.common.collections.CustomPageRequest; import com.gooddata.sdk.common.collections.Page; import com.gooddata.sdk.common.collections.PageBrowser; import com.gooddata.sdk.common.collections.PageRequest; @@ -124,6 +125,30 @@ public PageBrowser listProjects(final PageRequest startPage) { return new PageBrowser<>(startPage, page -> listProjects(getProjectsUri(userId, page))); } + /** + * Get defined page of paged list of projects that given user/account has access to. + * + * @param account user whose projects will be returned + * @param startPage page to be retrieved + * @return {@link PageBrowser} list of found projects for given user or empty list + */ + public PageBrowser listProjects(final Account account, final PageRequest startPage) { + notNull(startPage, "startPage"); + notNull(account, "account"); + notEmpty(account.getId(), "account.uri"); + return new PageBrowser<>(startPage, page -> listProjects(getProjectsUri(account.getId(), page))); + } + + /** + * Get browser of projects that given user/account has access to. + * + * @param account user whose projects will be returned + * @return {@link PageBrowser} list of found projects for given user or empty list + */ + public PageBrowser listProjects(final Account account) { + return listProjects(account, new CustomPageRequest()); + } + private Page listProjects(final URI uri) { try { final Projects projects = restTemplate.getForObject(uri, Projects.class); diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java index 158c26438..113772e37 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java @@ -31,6 +31,8 @@ import static com.gooddata.sdk.model.project.ProjectEnvironment.TESTING; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.contains; +import static org.hamcrest.Matchers.containsInAnyOrder; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; @@ -145,6 +147,26 @@ public void addUsersToProject() { } @Test(groups = {"project", "isolated_domain"}, dependsOnMethods = "addUsersToProject") + public void listProjectsForUser() { + final ProjectService projectService = gd.getProjectService(); + + final PageBrowser projects = projectService.listProjects(account1); + + assertThat(projects, is(notNullValue())); + assertThat(projects.getPageItems().get(0).getTitle(), is(title)); + } + + @Test(groups = {"project", "isolated_domain"}, dependsOnMethods = "addUsersToProject") + public void listProjectsForUserSettingStartPage() { + final ProjectService projectService = gd.getProjectService(); + + final PageBrowser projects = projectService.listProjects(account1, new CustomPageRequest(10, 1)); + + assertThat(projects, is(notNullValue())); + assertThat(projects.getPageItems().isEmpty(), is(true)); + } + + @Test(groups = {"project", "isolated_domain"}, dependsOnMethods = {"listProjectsForUser", "listProjectsForUserSettingStartPage"}) public void disableUserInProject() { user.setStatus(DISABLED_STATUS); diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java index 427fdde96..279fe9f42 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java @@ -7,6 +7,7 @@ import com.gooddata.sdk.common.GoodDataException; import com.gooddata.sdk.common.collections.CustomPageRequest; +import com.gooddata.sdk.common.collections.PageBrowser; import com.gooddata.sdk.model.account.Account; import com.gooddata.sdk.model.gdc.AsyncTask; import com.gooddata.sdk.model.gdc.TaskStatus; @@ -21,6 +22,8 @@ import com.gooddata.sdk.model.project.Role; import com.gooddata.sdk.model.project.User; import com.gooddata.sdk.service.AbstractGoodDataIT; + +import org.hamcrest.core.Is; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; @@ -451,4 +454,23 @@ public void removeUserFromProjectNotFound() { gd.getProjectService().removeUserFromProject(enabled, account); } + + + @Test + public void shouldListProjectsForUser() { + onRequest() + .havingMethodEqualTo("GET") + .havingPathEqualTo(ProjectService.LIST_PROJECTS_TEMPLATE.expand("ID").toString()) + .havingQueryStringEqualTo("offset=0&limit=100") + .respond() + .withStatus(200) + .withBody(readFromResource("/project/projects-for-user.json")); + + + final PageBrowser projects = gd.getProjectService().listProjects( + account, + new CustomPageRequest(0, 100)); + assertThat(projects.getPageItems().isEmpty(), is(false)); + assertThat(projects.getPageItems().get(0).getTitle(), Is.is("defaultEmptyProject")); + } } \ No newline at end of file diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java index df5ba7487..c80c4bcd0 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java @@ -65,7 +65,7 @@ public class ProjectServiceTest { @BeforeMethod public void setUp() throws Exception { - MockitoAnnotations.openMocks(this).close();; + MockitoAnnotations.openMocks(this).close(); service = new ProjectService(restTemplate, accountService, new GoodDataSettings()); when(accountService.getCurrent()).thenReturn(account); when(account.getId()).thenReturn(ACCOUNT_ID); @@ -119,6 +119,33 @@ public void testListProjectsWithClientException() throws Exception { service.listProjects(); } + @Test + public void testListProjectsForUserWithPage() throws Exception { + doReturn(new Projects(singletonList(project), new Paging(""))).when(restTemplate) + .getForObject(new URI(LIST_PROJECTS_TEMPLATE.expand(ACCOUNT_ID) + "?offset=1&limit=100"), Projects.class); + final Collection result = service.listProjects(account, new CustomPageRequest(1, 100)).getPageItems(); + + assertThat(result, hasSize(1)); + assertThat(result, hasItem(project)); + } + + @Test + public void testListProjectsForUser() throws Exception { + doReturn(new Projects(singletonList(project), new Paging(""))).when(restTemplate) + .getForObject(new URI(LIST_PROJECTS_TEMPLATE.expand(ACCOUNT_ID) + "?limit=100"), Projects.class); + final Collection result = service.listProjects(account).getPageItems(); + + assertThat(result, hasSize(1)); + assertThat(result, hasItem(project)); + } + + @Test(expectedExceptions = GoodDataException.class) + public void testListProjectsForuserWithClientException() throws Exception { + doThrow(new GoodDataException("")).when(restTemplate) + .getForObject(new URI(LIST_PROJECTS_TEMPLATE.expand(ACCOUNT_ID) + "?limit=100"), Projects.class); + service.listProjects(); + } + @Test(expectedExceptions = IllegalArgumentException.class) public void testGetProjectByUriWithNullUri() { service.getProjectByUri(null); diff --git a/gooddata-java/src/test/resources/project/projects-for-user.json b/gooddata-java/src/test/resources/project/projects-for-user.json new file mode 100644 index 000000000..3e659c17a --- /dev/null +++ b/gooddata-java/src/test/resources/project/projects-for-user.json @@ -0,0 +1,55 @@ +{ + "projects": { + "paging": { + "offset": 0, + "limit": 100, + "count": 1, + "totalCount": 1 + }, + "items": [ + { + "project": { + "content": { + "state": "ENABLED", + "cluster": "", + "environment": "TESTING", + "driver": "Pg", + "isPublic": "0", + "guidedNavigation": "1" + }, + "meta": { + "title": "defaultEmptyProject", + "summary": "", + "created": "2018-08-10 23:00:21", + "updated": "2018-08-10 23:00:22", + "author": "/gdc/account/profile/ID", + "contributor": "/gdc/account/profile/ID" + }, + "links": { + "self": "/gdc/projects/defaultEmptyProject", + "roles": "/gdc/projects/defaultEmptyProject/roles", + "users": "/gdc/projects/defaultEmptyProject/users?link=1&offset=0&limit=100", + "userRoles": "/gdc/projects/defaultEmptyProject/users/ID/roles", + "userPermissions": "/gdc/projects/defaultEmptyProject/users/ID/permissions", + "invitations": "/gdc/projects/defaultEmptyProject/invitations", + "ldm": "/gdc/projects/defaultEmptyProject/ldm", + "ldm_thumbnail": "/gdc/projects/defaultEmptyProject/ldm?thumbnail=1", + "publicartifacts": "/gdc/projects/defaultEmptyProject/publicartifacts", + "uploads": "/gdc/projects/defaultEmptyProject/uploads/", + "metadata": "/gdc/md/defaultEmptyProject", + "templates": "/gdc/md/defaultEmptyProject/templates", + "connectors": "/gdc/projects/defaultEmptyProject/connectors", + "schedules": "/gdc/projects/defaultEmptyProject/schedules", + "dataload": "/gdc/projects/defaultEmptyProject/dataload", + "eventstores": "/gdc/projects/defaultEmptyProject/dataload/eventstore/stores", + "execute": "/gdc/projects/defaultEmptyProject/execute", + "clearCaches": "/gdc/projects/defaultEmptyProject/clearCaches", + "checkXaeCompatibility": "/gdc/projects/defaultEmptyProject/checkXaeCompatibility", + "projectFeatureFlags": "/gdc/projects/defaultEmptyProject/projectFeatureFlags", + "config": "/gdc/projects/defaultEmptyProject/config" + } + } + } + ] + } +} \ No newline at end of file From 8c730d32e5ed94f823021d29132e27504c1ee566 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 15 Sep 2021 16:38:21 +0200 Subject: [PATCH 064/155] [maven-release-plugin] prepare release gooddata-java-parent-3.10.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index c7249bdbe..8a9a29f8d 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.9.1+api3-SNAPSHOT + 3.10.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 0a8e3c812..46e61d1df 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.9.1+api3-SNAPSHOT + 3.10.0+api3 diff --git a/pom.xml b/pom.xml index 13ebeff79..c5288b1d9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.9.1+api3-SNAPSHOT + 3.10.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.10.0+api3 From 45267f4e5b8a10cc426726d2ccd43be3653c8f97 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 15 Sep 2021 16:38:24 +0200 Subject: [PATCH 065/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 8a9a29f8d..2f6b49100 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.10.0+api3 + 3.10.1+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 46e61d1df..96a8bc747 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.10.0+api3 + 3.10.1+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index c5288b1d9..74f82e98f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.10.0+api3 + 3.10.1+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.10.0+api3 + HEAD From 578be2b42336bce9d882feb5e01ff3a6e80abc71 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Wed, 18 Aug 2021 16:18:00 +0200 Subject: [PATCH 066/155] Add workspace timezone getting --- .../com/gooddata/sdk/model/md/Service.java | 44 +++++++++++++++++++ .../gooddata/sdk/model/md/ServiceTest.java | 32 ++++++++++++++ .../test/resources/md/service-timezone.json | 5 +++ .../sdk/service/md/MetadataService.java | 33 ++++++++++++-- .../sdk/service/md/MetadataServiceAT.java | 11 ++++- .../sdk/service/md/MetadataServiceIT.java | 25 ++++++++++- .../sdk/service/md/MetadataServiceTest.java | 20 ++++++++- .../test/resources/md/service-timezone.json | 5 +++ 8 files changed, 168 insertions(+), 7 deletions(-) create mode 100644 gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java create mode 100644 gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java create mode 100644 gooddata-java-model/src/test/resources/md/service-timezone.json create mode 100644 gooddata-java/src/test/resources/md/service-timezone.json diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java new file mode 100644 index 000000000..789dda604 --- /dev/null +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.md; + +import com.fasterxml.jackson.annotation.*; +import com.gooddata.sdk.common.util.GoodDataToStringBuilder; + +import java.io.Serializable; + +/** + * Represents project/workspace metadata configuration. + */ +@JsonTypeName("service") +@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME) +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_NULL) +public class Service implements Serializable { + + public static final String TIMEZONE_URI = "/gdc/md/{projectId}/service/timezone"; + + private static final long serialVersionUID = -3382672258337809805L; + + private final String timezone; + + @JsonCreator + private Service(@JsonProperty("timezone") String timezone) { + this.timezone = timezone; + } + + /** + * @return string identifier of the timezone (see IANA/Olson tz database for possible values) + */ + public String getTimezone() { + return timezone; + } + + @Override + public String toString() { + return GoodDataToStringBuilder.defaultToString(this); + } +} diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java new file mode 100644 index 000000000..3f7eeaa44 --- /dev/null +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. + */ +package com.gooddata.sdk.model.md; + +import org.testng.annotations.Test; + +import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.CoreMatchers.notNullValue; +import static org.hamcrest.MatcherAssert.assertThat; + +public class ServiceTest { + + @Test + public void shouldDeserialize() throws Exception { + final Service service = readObjectFromResource("/md/service-timezone.json", Service.class); + + assertThat(service, is(notNullValue())); + assertThat(service.getTimezone(), is("UTC")); + } + + @Test + public void testToStringFormat() throws Exception { + final Service service = readObjectFromResource("/md/service-timezone.json", Service.class); + + assertThat(service.toString(), is("Service[timezone=UTC]")); + } + +} \ No newline at end of file diff --git a/gooddata-java-model/src/test/resources/md/service-timezone.json b/gooddata-java-model/src/test/resources/md/service-timezone.json new file mode 100644 index 000000000..694283a8f --- /dev/null +++ b/gooddata-java-model/src/test/resources/md/service-timezone.json @@ -0,0 +1,5 @@ +{ + "service": { + "timezone": "UTC" + } +} \ No newline at end of file diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java index 92e766c74..f7c53ccf7 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -21,9 +21,8 @@ import java.util.*; import java.util.stream.Collectors; -import static com.gooddata.sdk.common.util.Validate.noNullElements; -import static com.gooddata.sdk.common.util.Validate.notNull; -import static com.gooddata.sdk.common.util.Validate.notNullState; +import static com.gooddata.sdk.common.util.Validate.*; +import static com.gooddata.sdk.model.md.Service.TIMEZONE_URI; import static java.util.Arrays.asList; /** @@ -440,6 +439,32 @@ public List getAttributeElements(DisplayForm displayForm) { } } + /** + * Get project/workspace timezone. + * + * @param project project from what to return the timezone + * @return string identifier of the timezone (see IANA/Olson tz database for possible values) + * @throws com.gooddata.sdk.common.GoodDataRestException if GoodData REST API returns unexpected status code + * @throws com.gooddata.sdk.common.GoodDataException if no response from API or client-side HTTP error + */ + public String getTimezone(final Project project) { + notNull(project, "project"); + notNull(project.getId(), "project.id"); + + try { + final Service result = restTemplate.getForObject(TIMEZONE_URI, Service.class, project.getId()); + + if (result != null) { + return result.getTimezone(); + } else { + throw new GoodDataException("Received empty response from API call."); + } + } catch (RestClientException e) { + throw new GoodDataException("Unable to get timezone of project/workspace " + project.getId(), e); + } + } + + private Collection filterEntries(Collection entries, Restriction... restrictions) { if (restrictions == null || restrictions.length == 0) { return entries; diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java index 464d1b868..005330e14 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -218,4 +218,13 @@ public void getAttributeElements() throws Exception { titles.addAll(elements.stream().map(AttributeElement::getTitle).collect(Collectors.toList())); assertThat(titles, hasItems("DevOps", "HR")); } + + @Test(groups = "md", dependsOnGroups = "project") + public void getTimezone() { + final MetadataService md = gd.getMetadataService(); + + final String tz = md.getTimezone(project); + assertThat(tz, is("America/Los_Angeles")); + } + } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java index 37ded10a6..f86f6cbac 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java @@ -1,10 +1,11 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ package com.gooddata.sdk.service.md; +import com.gooddata.sdk.common.GoodDataException; import com.gooddata.sdk.service.AbstractGoodDataIT; import com.gooddata.sdk.model.gdc.UriResponse; import com.gooddata.sdk.model.md.*; @@ -390,4 +391,26 @@ public void shouldGetAttributeElements() throws Exception { assertThat(attributeElements, hasSize(3)); assertThat(attributeElements.get(0).getTitle(), is("1167")); } + + @Test(expectedExceptions = GoodDataException.class, expectedExceptionsMessageRegExp = ".*request_id.*Unauthorized.*") + public void getTimezoneShouldThrowGDEOnClientError() { + onRequest() + .havingMethodEqualTo("GET") + .havingPathEqualTo("/gdc/md/PROJECT_ID/service/timezone") + .respond() + .withStatus(401); + + gd.getMetadataService().getTimezone(project); + } + + @Test(expectedExceptions = GoodDataException.class, expectedExceptionsMessageRegExp = ".*request_id.*Server Error.*") + public void getTimezoneShouldThrowGDEOnServerError() { + onRequest() + .havingMethodEqualTo("GET") + .havingPathEqualTo("/gdc/md/PROJECT_ID/service/timezone") + .respond() + .withStatus(500); + + gd.getMetadataService().getTimezone(project); + } } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java index a3b8f3b02..3f64123c9 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -421,4 +421,22 @@ public void testGetAttributeElements() { assertThat(elements, allOf(hasItem(result1), hasItem(result2))); } + @Test(expectedExceptions = IllegalArgumentException.class) + public void testGetTimezoneNullProject() { + service.getTimezone(null); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testGetTimezoneNullProjectId() { + service.getTimezone(mock(Project.class)); + } + + @Test + public void testGetTimezone() { + when(restTemplate.getForObject(Service.TIMEZONE_URI, Service.class, project.getId())) + .thenReturn(readObjectFromResource("/md/service-timezone.json", Service.class)); + final String tz = service.getTimezone(project); + assertThat(tz, is("UTC")); + } + } diff --git a/gooddata-java/src/test/resources/md/service-timezone.json b/gooddata-java/src/test/resources/md/service-timezone.json new file mode 100644 index 000000000..694283a8f --- /dev/null +++ b/gooddata-java/src/test/resources/md/service-timezone.json @@ -0,0 +1,5 @@ +{ + "service": { + "timezone": "UTC" + } +} \ No newline at end of file From 3f292e04ad5f00c8110fc1ed258c9f1551ccaade Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Thu, 16 Sep 2021 22:29:33 +0200 Subject: [PATCH 067/155] Cleanup MetadataServiceIT --- .../sdk/service/md/MetadataServiceIT.java | 53 ++++++++++--------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java index f86f6cbac..02256f799 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java @@ -6,16 +6,15 @@ package com.gooddata.sdk.service.md; import com.gooddata.sdk.common.GoodDataException; -import com.gooddata.sdk.service.AbstractGoodDataIT; import com.gooddata.sdk.model.gdc.UriResponse; import com.gooddata.sdk.model.md.*; import com.gooddata.sdk.model.md.report.ReportDefinition; import com.gooddata.sdk.model.project.Project; +import com.gooddata.sdk.service.AbstractGoodDataIT; import org.hamcrest.Matchers; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; -import java.io.IOException; import java.util.*; import static com.gooddata.sdk.common.util.ResourceUtils.OBJECT_MAPPER; @@ -68,14 +67,15 @@ public void testUsedBy() throws Exception { .readValue(format("{\"useMany\":[{\"uri\":\"%s\", \"entries\":[{\"title\":\"%s\"}]}]}", OBJ_URI, TITLE), UseMany.class); - onRequest() + onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(USEDBY_URI) - .respond() + .respond() .withStatus(200) .withBody(OBJECT_MAPPER.writeValueAsString(useMany)); - final Collection result = gd.getMetadataService().usedBy(project, OBJ_URI, false, ReportDefinition.class); + final Collection result = gd.getMetadataService() + .usedBy(project, OBJ_URI, false, ReportDefinition.class); assertThat(result, hasSize(1)); assertThat(result.iterator().next().getTitle(), is(TITLE)); @@ -87,7 +87,7 @@ public void testGetObjsByUris() { .havingMethodEqualTo("POST") .havingPathEqualTo(BULK_GET_URI) .havingBody(allOf(containsString(DATASET_URL), containsString(FACT_URL), containsString(METRIC_URL))) - .respond() + .respond() .withStatus(200) .withBody(readFromResource("/md/bulk-get.json")); @@ -135,11 +135,12 @@ public void testUsedByBatch() throws Exception { onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(USEDBY_URI) - .respond() + .respond() .withStatus(200) .withBody(OBJECT_MAPPER.writeValueAsString(useMany)); - final Collection result = gd.getMetadataService().usedBy(project, new HashSet<>(asList(OBJ_URI, OBJ_URI2)), false, ReportDefinition.class); + final Collection result = gd.getMetadataService() + .usedBy(project, new HashSet<>(asList(OBJ_URI, OBJ_URI2)), false, ReportDefinition.class); assertThat(result, hasSize(2)); final Iterator usages = result.iterator(); @@ -156,12 +157,12 @@ public void testUsedByBatch() throws Exception { } @Test - public void testFindIdentifierUris() throws IOException { + public void testFindIdentifierUris() { onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(IDENTIFIERS_URI) .havingBody(jsonEquals(readStringFromResource("/md/identifierToUri.json"))) - .respond() + .respond() .withStatus(200) .withBody(readFromResource("/md/identifiersAndUris.json")); @@ -171,12 +172,12 @@ public void testFindIdentifierUris() throws IOException { } @Test - public void testIdentifiersToUris() throws IOException { + public void testIdentifiersToUris() { onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(IDENTIFIERS_URI) .havingBody(jsonEquals(readStringFromResource("/md/identifierToUri.json"))) - .respond() + .respond() .withStatus(200) .withBody(readFromResource("/md/identifiersAndUris.json")); @@ -186,7 +187,7 @@ public void testIdentifiersToUris() throws IOException { } @Test - public void shouldCreateObj() throws Exception { + public void shouldCreateObj() { onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(OBJ_URI) @@ -229,34 +230,34 @@ public void shouldUpdateObj() throws Exception { } @Test - public void shouldRemoveObjByUri() throws Exception { + public void shouldRemoveObjByUri() { onRequest() .havingMethodEqualTo("DELETE") .havingPathEqualTo(SPECIFIC_OBJ_URI) - .respond() + .respond() .withStatus(204); gd.getMetadataService().removeObjByUri(SPECIFIC_OBJ_URI); } @Test - public void shouldRemoveObj() throws Exception { + public void shouldRemoveObj() { onRequest() .havingMethodEqualTo("DELETE") .havingPathEqualTo(SPECIFIC_OBJ_URI) - .respond() + .respond() .withStatus(204); gd.getMetadataService().removeObj(metricInput); } @Test - public void shouldCreateMailScheduleObj() throws Exception { + public void shouldCreateMailScheduleObj() { onRequest() .havingMethodEqualTo("POST") .havingPathEqualTo(OBJ_URI) .havingParameterEqualTo("createAndGet", "true") - .respond() + .respond() .withStatus(200) .withBody(readFromResource("/md/scheduledMail.json")); @@ -269,7 +270,7 @@ public void shouldCreateMailScheduleObj() throws Exception { } @Test - public void shouldGetObjByUri() throws Exception { + public void shouldGetObjByUri() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo(SPECIFIC_OBJ_URI) @@ -286,7 +287,7 @@ public void shouldGetObjByUri() throws Exception { } @Test - public void shouldGetObjById() throws Exception { + public void shouldGetObjById() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo(SPECIFIC_OBJ_URI) @@ -304,7 +305,7 @@ public void shouldGetObjById() throws Exception { } @Test - public void shouldGetObjUriByRestrictions() throws Exception { + public void shouldGetObjUriByRestrictions() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo("/gdc/md/PROJECT_ID/query/attributes") @@ -319,7 +320,7 @@ public void shouldGetObjUriByRestrictions() throws Exception { } @Test - public void shouldGetObjByRestrictions() throws Exception { + public void shouldGetObjByRestrictions() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo("/gdc/md/PROJECT_ID/query/attributes") @@ -342,7 +343,7 @@ public void shouldGetObjByRestrictions() throws Exception { } @Test - public void shouldFindByRestrictions() throws Exception { + public void shouldFindByRestrictions() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo("/gdc/md/PROJECT_ID/query/attributes") @@ -358,7 +359,7 @@ public void shouldFindByRestrictions() throws Exception { } @Test - public void shouldFindUrisByRestrictions() throws Exception { + public void shouldFindUrisByRestrictions() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo("/gdc/md/PROJECT_ID/query/attributes") @@ -375,7 +376,7 @@ public void shouldFindUrisByRestrictions() throws Exception { } @Test - public void shouldGetAttributeElements() throws Exception { + public void shouldGetAttributeElements() { onRequest() .havingMethodEqualTo("GET") .havingPathEqualTo("/gdc/md/PROJECT_ID/obj/DF_ID/elements") From d603ca5d939a707455891729f10ce57053928a17 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 17 Sep 2021 09:58:04 +0200 Subject: [PATCH 068/155] Add workspace timezone setting --- .../com/gooddata/sdk/model/md/Service.java | 2 +- .../sdk/service/md/MetadataService.java | 24 ++++++++++ .../sdk/service/md/MetadataServiceAT.java | 39 ++++++++++------ .../sdk/service/md/MetadataServiceIT.java | 44 +++++++++++++++++++ .../sdk/service/md/MetadataServiceTest.java | 15 +++++++ 5 files changed, 109 insertions(+), 15 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java index 789dda604..9ff74ec15 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java @@ -26,7 +26,7 @@ public class Service implements Serializable { private final String timezone; @JsonCreator - private Service(@JsonProperty("timezone") String timezone) { + public Service(@JsonProperty("timezone") String timezone) { this.timezone = timezone; } diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java index f7c53ccf7..caa39ac90 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java @@ -464,6 +464,30 @@ public String getTimezone(final Project project) { } } + /** + * Set project/workspace timezone. + * + * @param project the project/workspace where to set the timezone + * @param timezone the timezone to be set (see IANA/Olson tz database for possible values) + */ + public void setTimezone(final Project project, final String timezone) { + notNull(project, "project"); + notNull(project.getId(), "project.id"); + notNull(timezone, "timezone"); + notEmpty(timezone, "timezone"); + + try { + final Service result = restTemplate.postForObject(TIMEZONE_URI, new Service(timezone), Service.class, + project.getId()); + + if (result == null) { + throw new GoodDataException("Unexpected empty result from API call."); + } + } catch (RestClientException e) { + throw new GoodDataException("Unable to set timezone of project/workspace " + project.getId(), e); + } + } + private Collection filterEntries(Collection entries, Restriction... restrictions) { if (restrictions == null || restrictions.length == 0) { diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java index 005330e14..642326cbb 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java @@ -38,6 +38,7 @@ import static com.gooddata.sdk.model.md.Restriction.identifier; import static com.gooddata.sdk.model.md.report.MetricGroup.METRIC_GROUP; import static java.util.Arrays.asList; +import static java.util.Collections.singletonList; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.hasItems; @@ -52,7 +53,7 @@ public class MetadataServiceAT extends AbstractGoodDataAT { @Test(groups = "md", dependsOnGroups = "model") - public void getObjs() throws Exception { + public void getObjs() { final MetadataService md = gd.getMetadataService(); fact = md.getObjUri(project, Fact.class, identifier("fact.person.shoesize")); @@ -60,7 +61,7 @@ public void getObjs() throws Exception { } @Test(groups = "md", dependsOnMethods = "getObjs") - public void updateObj() throws Exception { + public void updateObj() { final MetadataService md = gd.getMetadataService(); attr.setSummary("Changed person department"); @@ -70,7 +71,7 @@ public void updateObj() throws Exception { } @Test(groups = "md", dependsOnMethods = "getObjs") - public void createMetric() throws Exception { + public void createMetric() { final MetadataService md = gd.getMetadataService(); final Metric create = new Metric("Avg shoe size", "SELECT AVG([" + fact + "])", "#,##0"); create.setIdentifier("metric.avgshoesize"); @@ -79,12 +80,12 @@ public void createMetric() throws Exception { } @Test(groups = "md", dependsOnMethods = "createMetric") - public void createReport() throws Exception { + public void createReport() { final MetadataService md = gd.getMetadataService(); reportDefinition = md.createObj(project, GridReportDefinitionContent.create( "Department avg shoe size", - asList(METRIC_GROUP), + singletonList(METRIC_GROUP), asList(new AttributeInGrid(attr.getDefaultDisplayForm())), asList(new MetricElement(metric, "Avg shoe size")), asList(new Filter("(SELECT [" + metric.getUri() + "]) >= 0")) @@ -93,7 +94,7 @@ public void createReport() throws Exception { } @Test(groups = "md", dependsOnGroups = "model") - public void createDashboardEmpty() throws Exception { + public void createDashboardEmpty() { dashboard = gd.getMetadataService().createObj(project, new ProjectDashboard("My Dashboard", new Tab("My Tab"))); assertThat(dashboard.getTitle(), is("My Dashboard")); @@ -139,7 +140,7 @@ public void usedByBatch() { } @Test(groups = "md", dependsOnGroups = "model") - public void getObjsByUris() throws Exception { + public void getObjsByUris() { final MetadataService md = gd.getMetadataService(); final Map uris = @@ -154,7 +155,7 @@ public void getObjsByUris() throws Exception { } @Test(groups = "md", dependsOnMethods = "createReport") - public void createScheduledMail() throws Exception { + public void createScheduledMail() { final MetadataService md = gd.getMetadataService(); scheduledMail = md.createObj(project, @@ -172,7 +173,7 @@ public void createScheduledMail() throws Exception { } @Test(groups = "md", dependsOnMethods = "createScheduledMail") - public void retrieveScheduledMail() throws Exception { + public void retrieveScheduledMail() { final MetadataService md = gd.getMetadataService(); Collection result = md.find(project, ScheduledMail.class); assertThat(result, hasSize(1)); @@ -183,7 +184,7 @@ public void retrieveScheduledMail() throws Exception { } @Test(groups = "md", dependsOnMethods = "retrieveScheduledMail") - public void removeScheduledMail() throws Exception { + public void removeScheduledMail() { final MetadataService metadataService = gd.getMetadataService(); metadataService.removeObj(scheduledMail); } @@ -192,26 +193,26 @@ public void removeScheduledMail() throws Exception { public void identifiersToUri() { final MetadataService metadataService = gd.getMetadataService(); final Map idsToUris = - metadataService.identifiersToUris(project, asList("attr.person.department")); + metadataService.identifiersToUris(project, singletonList("attr.person.department")); assertThat(idsToUris.entrySet(), hasSize(1)); final Attribute attribute = metadataService.getObjByUri(idsToUris.get("attr.person.department"), Attribute.class); assertThat(attribute.getIdentifier(), is("attr.person.department")); } @Test(dependsOnGroups = "export", dependsOnMethods = {"usedBy", "usedByBatch"}) - public void removeReport() throws Exception { + public void removeReport() { final MetadataService metadataService = gd.getMetadataService(); metadataService.removeObj(report); } @Test(dependsOnMethods = {"removeReport", "removeScheduledMail"}) - public void removeDefinition() throws Exception { + public void removeDefinition() { final MetadataService metadataService = gd.getMetadataService(); metadataService.removeObj(reportDefinition); } @Test(groups = "mdAfterLoad", dependsOnGroups = {"model", "dataset"}, dependsOnMethods = "getObjs") - public void getAttributeElements() throws Exception { + public void getAttributeElements() { final List elements = gd.getMetadataService().getAttributeElements(attr); assertThat("there should be 2 elements", elements, hasSize(2)); final Set titles = new HashSet<>(elements.size()); @@ -227,4 +228,14 @@ public void getTimezone() { assertThat(tz, is("America/Los_Angeles")); } + @Test(groups = "md", dependsOnMethods = "getTimezone") + public void setTimezone() { + final MetadataService md = gd.getMetadataService(); + + md.setTimezone(project, "UTC"); + + final String tz = md.getTimezone(project); + assertThat(tz, is("UTC")); + } + } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java index 02256f799..4d52fd3d4 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java @@ -25,6 +25,7 @@ import static java.util.Arrays.asList; import static java.util.Collections.singletonList; import static net.jadler.Jadler.onRequest; +import static net.jadler.Jadler.verifyThatRequest; import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals; import static org.hamcrest.CoreMatchers.instanceOf; import static org.hamcrest.CoreMatchers.is; @@ -414,4 +415,47 @@ public void getTimezoneShouldThrowGDEOnServerError() { gd.getMetadataService().getTimezone(project); } + + @Test + public void setTimezone() { + onRequest() + .havingMethodEqualTo("POST") + .havingPathEqualTo("/gdc/md/PROJECT_ID/service/timezone") + .havingBodyEqualTo("{\"service\":{\"timezone\":\"America/Los_Angeles\"}}") + .respond() + .withStatus(200) + .withBody("{\"service\":{\"timezone\":\"America/Los_Angeles\"}}"); + + gd.getMetadataService().setTimezone(project, "America/Los_Angeles"); + verifyThatRequest().receivedOnce(); + } + + @Test(expectedExceptions = GoodDataException.class, + expectedExceptionsMessageRegExp = "Unexpected empty result from API call.") + public void setTimezoneReturningNothing() { + onRequest() + .havingMethodEqualTo("POST") + .havingPathEqualTo("/gdc/md/PROJECT_ID/service/timezone") + .havingBodyEqualTo("{\"service\":{\"timezone\":\"America/Los_Angeles\"}}") + .respond() + .withStatus(200); + + gd.getMetadataService().setTimezone(project, "America/Los_Angeles"); + } + + @Test(expectedExceptions = GoodDataException.class, + expectedExceptionsMessageRegExp = ".*The timezone 'wrong' could not be loaded, or is an invalid name.*") + public void setTimezoneWithWrongName() { + onRequest() + .havingMethodEqualTo("POST") + .havingPathEqualTo("/gdc/md/PROJECT_ID/service/timezone") + .havingBodyEqualTo("{\"service\":{\"timezone\":\"wrong\"}}") + .respond() + .withStatus(400) + .withBody("{\"error\":{\"parameters\":[\"wrong\"],\"requestId\":\"reqId\",\"component\":" + + "\"MD::Service::Timezone\",\"errorClass\":\"GDC::Exception::User\",\"message\":" + + "\"The timezone '%s' could not be loaded, or is an invalid name.\"}}"); + + gd.getMetadataService().setTimezone(project, "wrong"); + } } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java index 3f64123c9..f31ad6e62 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java @@ -439,4 +439,19 @@ public void testGetTimezone() { assertThat(tz, is("UTC")); } + @Test(expectedExceptions = IllegalArgumentException.class) + public void testSetTimezoneNullProject() { + service.setTimezone(null, "test"); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testSetTimezoneNullTZ() { + service.setTimezone(project, null); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testSetTimezoneEmptyTZ() { + service.setTimezone(project, ""); + } + } From 76b51fb06ccd8f98f70b6dd9c28c1bdae51dfbc2 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Fri, 17 Sep 2021 10:57:35 +0200 Subject: [PATCH 069/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 2f6b49100..9ebcbb043 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.10.1+api3-SNAPSHOT + 3.11.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 96a8bc747..e029b5715 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.10.1+api3-SNAPSHOT + 3.11.0+api3 diff --git a/pom.xml b/pom.xml index 74f82e98f..e2754cc62 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.10.1+api3-SNAPSHOT + 3.11.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.0+api3 From 6f1352dd21ee8fe852e467bd2b2f7950e29ade36 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Fri, 17 Sep 2021 10:57:38 +0200 Subject: [PATCH 070/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 9ebcbb043..6bba4e6df 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.0+api3 + 3.11.1+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index e029b5715..6a125e784 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.0+api3 + 3.11.1+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index e2754cc62..d655dafbd 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.0+api3 + 3.11.1+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.0+api3 + HEAD From eea0dada30f62a16b09eef91f30ba230aca4f911 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Sep 2021 09:10:13 +0000 Subject: [PATCH 071/155] Bump gmavenplus-plugin from 1.12.1 to 1.13.0 Bumps [gmavenplus-plugin](https://github.com/groovy/GMavenPlus) from 1.12.1 to 1.13.0. - [Release notes](https://github.com/groovy/GMavenPlus/releases) - [Commits](https://github.com/groovy/GMavenPlus/compare/1.12.1...1.13.0) --- updated-dependencies: - dependency-name: org.codehaus.gmavenplus:gmavenplus-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0030e0718..6c7a391c9 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ org.codehaus.gmavenplus gmavenplus-plugin - 1.12.1 + 1.13.0 From 5f5971a53b3fcfc84b536e54ef4fb6bb348e857b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Oct 2021 09:10:21 +0000 Subject: [PATCH 072/155] Bump jackson.version from 2.12.5 to 2.13.0 Bumps `jackson.version` from 2.12.5 to 2.13.0. Updates `jackson-core` from 2.12.5 to 2.13.0 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.12.5...jackson-core-2.13.0) Updates `jackson-databind` from 2.12.5 to 2.13.0 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.12.5 to 2.13.0 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c7a391c9..6294b1399 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 4.5.13 4.4.14 - 2.12.5 + 2.13.0 1.7.32 5.3.10 1.3.0 From 0fef487ebe4fc1b1ee1504a5afd146779335f6c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Oct 2021 09:12:02 +0000 Subject: [PATCH 073/155] Bump equalsverifier from 3.7.1 to 3.7.2 Bumps [equalsverifier](https://github.com/jqno/equalsverifier) from 3.7.1 to 3.7.2. - [Release notes](https://github.com/jqno/equalsverifier/releases) - [Changelog](https://github.com/jqno/equalsverifier/blob/main/CHANGELOG.md) - [Commits](https://github.com/jqno/equalsverifier/compare/equalsverifier-3.7.1...equalsverifier-3.7.2) --- updated-dependencies: - dependency-name: nl.jqno.equalsverifier:equalsverifier dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c7a391c9..68c65c719 100644 --- a/pom.xml +++ b/pom.xml @@ -402,7 +402,7 @@ nl.jqno.equalsverifier equalsverifier - 3.7.1 + 3.7.2 test From d9541046aa26ff28a681c751142dbf6511075710 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Nov 2021 09:07:19 +0000 Subject: [PATCH 074/155] Bump spring.version from 5.3.10 to 5.3.13 Bumps `spring.version` from 5.3.10 to 5.3.13. Updates `spring-core` from 5.3.10 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.13) Updates `spring-beans` from 5.3.10 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.13) Updates `spring-web` from 5.3.10 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.13) Updates `spring-context` from 5.3.10 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.13) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c7a391c9..58380bb2b 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.14 2.12.5 1.7.32 - 5.3.10 + 5.3.13 1.3.0 2.28.0 2.22.2 From 483cb2b617ff52a4acd28ca70e411457b9fa7886 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Nov 2021 09:15:21 +0000 Subject: [PATCH 075/155] Bump gmavenplus-plugin from 1.13.0 to 1.13.1 Bumps [gmavenplus-plugin](https://github.com/groovy/GMavenPlus) from 1.13.0 to 1.13.1. - [Release notes](https://github.com/groovy/GMavenPlus/releases) - [Commits](https://github.com/groovy/GMavenPlus/compare/1.13.0...1.13.1) --- updated-dependencies: - dependency-name: org.codehaus.gmavenplus:gmavenplus-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5562f95ee..e5d545903 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ org.codehaus.gmavenplus gmavenplus-plugin - 1.13.0 + 1.13.1 From 0503d0fb5e6d4cdaeb2f78dbb952239af96d8143 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Wed, 1 Dec 2021 07:59:27 +0100 Subject: [PATCH 076/155] Replace Mockito deprecated APIs To prepare for migration to Mockito v4. --- .../sdk/service/AbstractServiceTest.java | 3 +-- .../processes/ProcessServiceTest.java | 20 +++++++------------ .../service/dataset/DatasetServiceTest.java | 4 ++-- .../sdk/service/md/MetadataServiceTest.java | 19 +++++++++--------- .../maintenance/ExportImportServiceTest.java | 8 ++++---- 5 files changed, 23 insertions(+), 31 deletions(-) diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java index fbe477b51..45af98393 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java @@ -11,7 +11,6 @@ import org.springframework.http.HttpMethod; import org.springframework.http.HttpStatus; import org.springframework.http.client.ClientHttpResponse; -import org.springframework.web.client.RequestCallback; import org.springframework.web.client.ResponseExtractor; import org.springframework.web.client.RestTemplate; import org.testng.annotations.BeforeMethod; @@ -19,7 +18,7 @@ import java.util.concurrent.TimeUnit; -import static org.mockito.Matchers.any; +import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java index b6f9644ef..e198708d8 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java @@ -30,7 +30,6 @@ import java.io.File; import java.io.FileOutputStream; import java.io.IOException; -import java.io.InputStream; import java.net.URI; import java.util.Collection; import java.util.Random; @@ -38,20 +37,15 @@ import static com.gooddata.sdk.common.util.ResourceUtils.OBJECT_MAPPER; import static java.lang.String.format; import static java.net.URI.create; -import static java.util.Arrays.asList; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.contains; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.hasSize; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyString; -import static org.mockito.Matchers.eq; -import static org.mockito.Matchers.notNull; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.verify; -import static org.mockito.Mockito.verifyZeroInteractions; -import static org.mockito.Mockito.when; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.ArgumentMatchers.notNull; +import static org.mockito.Mockito.*; import static org.springframework.http.HttpMethod.GET; import static org.testng.Assert.assertNotNull; import static org.testng.Assert.assertTrue; @@ -107,7 +101,7 @@ public void shouldDeploySmallProcessUsingAPI() throws Exception { assertNotNull(entityCaptor.getValue().getBody()); assertTrue(entityCaptor.getValue().getBody() instanceof MultiValueMap); - verifyZeroInteractions(dataStoreService); + verifyNoInteractions(dataStoreService); } @Test @@ -121,7 +115,7 @@ public void shouldDeployLargeProcessUsingWebDAV() throws Exception { processService.createProcess(project, process, createProcessOfSize(2048)); - verify(dataStoreService).upload(anyString(), notNull(InputStream.class)); + verify(dataStoreService).upload(anyString(), notNull()); } private static File createProcessOfSize(int size) throws Exception { diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java index a8b129c34..fddfa4856 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java @@ -28,8 +28,8 @@ import static java.lang.String.format; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.nullValue; -import static org.mockito.Matchers.anyString; -import static org.mockito.Matchers.eq; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.when; diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java index f31ad6e62..58d04cd28 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java @@ -13,7 +13,6 @@ import com.gooddata.sdk.model.md.visualization.VisualizationClass; import com.gooddata.sdk.model.project.Project; import com.gooddata.sdk.service.GoodDataSettings; -import org.mockito.Matchers; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.springframework.http.HttpStatus; @@ -29,6 +28,7 @@ import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource; import static java.lang.String.format; import static java.util.Arrays.asList; +import static java.util.Collections.singletonList; import static org.hamcrest.CoreMatchers.*; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; @@ -61,7 +61,6 @@ public void testCreateObjNullResponse() { } @Test(expectedExceptions = ObjCreateException.class) - @SuppressWarnings("unchecked") public void testCreateObjGDRestException() { final Obj obj = mock(Obj.class); when(restTemplate.postForObject(Obj.URI, obj, UriResponse.class, PROJECT_ID)) @@ -82,7 +81,7 @@ public void testCreateObj() { final Obj obj = mock(Obj.class); final Obj resultObj = mock(Obj.class); - when(restTemplate.postForObject(eq(Obj.CREATE_WITH_ID_URI), eq(obj), Matchers.>any(), eq(PROJECT_ID))) + when(restTemplate.postForObject(eq(Obj.CREATE_WITH_ID_URI), eq(obj), any(), eq(PROJECT_ID))) .thenReturn(resultObj); final Obj result = service.createObj(project, obj); @@ -139,7 +138,7 @@ public void testGetObjsByUrisNullUris() { @Test public void testGetObjsByUris() { - final BulkGetUris request = new BulkGetUris(Collections.singletonList(URI)); + final BulkGetUris request = new BulkGetUris(singletonList(URI)); final BulkGet response = readObjectFromResource("/md/bulk-get.json", BulkGet.class); when(restTemplate.postForObject(BulkGet.URI, request, BulkGet.class, PROJECT_ID)).thenReturn(response); @@ -149,14 +148,14 @@ public void testGetObjsByUris() { @Test(expectedExceptions = GoodDataException.class) public void testGetObjsByUrisWithClientSideHTTPError() { - final BulkGetUris request = new BulkGetUris(Collections.singletonList("")); + final BulkGetUris request = new BulkGetUris(singletonList("")); when(restTemplate.postForObject(BulkGet.URI, request, BulkGet.class, PROJECT_ID)).thenThrow(new RestClientException("")); service.getObjsByUris(project, request.getItems()); } @Test(expectedExceptions = GoodDataRestException.class) public void testGetObjsByUrisWithServerSideHTTPError() { - final BulkGetUris request = new BulkGetUris(Collections.singletonList("")); + final BulkGetUris request = new BulkGetUris(singletonList("")); when(restTemplate.postForObject(BulkGet.URI, request, BulkGet.class, PROJECT_ID)).thenThrow(new GoodDataRestException(500, "", "", "", "")); service.getObjsByUris(project, request.getItems()); } @@ -273,7 +272,7 @@ public void testGetObjUriToFindOneObjByTitle() { final String uri = "myURI"; final String title = "myTitle"; when(restTemplate.getForObject(Query.URI, Query.class, project.getId(), "queryables")).thenReturn(queryResult); - when(queryResult.getEntries()).thenReturn(asList(resultEntry)); + when(queryResult.getEntries()).thenReturn(singletonList(resultEntry)); when(resultEntry.getTitle()).thenReturn(title); when(resultEntry.getUri()).thenReturn(uri); @@ -298,7 +297,7 @@ public void testGetObjUriNothingFound() { final Entry resultEntry = mock(Entry.class); final String title = "myTitle"; when(restTemplate.getForObject(Query.URI, Query.class, project.getId(), "queryables")).thenReturn(queryResult); - when(queryResult.getEntries()).thenReturn(asList(resultEntry)); + when(queryResult.getEntries()).thenReturn(singletonList(resultEntry)); service.getObjUri(project, Queryable.class, Restriction.title(title)); } @@ -311,7 +310,7 @@ public void testGetObjToFindOneObjById() { final String uri = "myURI"; final String id = "myId"; when(restTemplate.getForObject(Query.URI, Query.class, project.getId(), "queryables")).thenReturn(queryResult); - when(queryResult.getEntries()).thenReturn(asList(resultEntry)); + when(queryResult.getEntries()).thenReturn(singletonList(resultEntry)); when(resultEntry.getIdentifier()).thenReturn(id); when(resultEntry.getUri()).thenReturn(uri); when(restTemplate.getForObject(uri, Queryable.class)).thenReturn(intendedResult); @@ -337,7 +336,7 @@ public void testGetObjNothingFound() { final Entry resultEntry = mock(Entry.class); final String title = "myTitle"; when(restTemplate.getForObject(Query.URI, Query.class, project.getId(), "queryables")).thenReturn(queryResult); - when(queryResult.getEntries()).thenReturn(asList(resultEntry)); + when(queryResult.getEntries()).thenReturn(singletonList(resultEntry)); service.getObj(project, Queryable.class, Restriction.title(title)); } diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java index 043db6b16..96c5a0958 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java @@ -5,8 +5,8 @@ */ package com.gooddata.sdk.service.md.maintenance; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.eq; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.when; import com.gooddata.sdk.common.GoodDataRestException; @@ -41,7 +41,7 @@ public void setUp() throws Exception { } @Test(expectedExceptions = ExportImportException.class) - public void testCreatePartialExportError() throws Exception { + public void testCreatePartialExportError() { when(restTemplate.postForObject(eq(PartialMdExport.URI), any(PartialMdExport.class), eq(PartialMdArtifact.class), eq(PROJECT_ID))) .thenThrow(new GoodDataRestException(400, "request", "Failed", "export", "error")); @@ -49,7 +49,7 @@ public void testCreatePartialExportError() throws Exception { } @Test(expectedExceptions = ExportImportException.class) - public void testCreatePartialImportError() throws Exception { + public void testCreatePartialImportError() { when(restTemplate.postForObject(eq(PartialMdExportToken.URI), any(PartialMdExportToken.class), eq(UriResponse.class), eq(PROJECT_ID))) .thenThrow(new GoodDataRestException(400, "request", "Failed", "import", "error")); From f1831647195725d88a564e8f58578e154639ffbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Dec 2021 08:09:16 +0000 Subject: [PATCH 077/155] Bump mockito-core from 3.12.4 to 4.1.0 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.12.4 to 4.1.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.12.4...v4.1.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5562f95ee..763b29195 100644 --- a/pom.xml +++ b/pom.xml @@ -342,7 +342,7 @@ org.mockito mockito-core - 3.12.4 + 4.1.0 test From ac671d991b670765c433fde19854a8c097ebdddd Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 3 Dec 2021 09:11:54 +0100 Subject: [PATCH 078/155] Deprecate getEventStores links This service has been removed from platform long time ago and those links are not on the API anymore. --- .../main/java/com/gooddata/sdk/model/project/Project.java | 8 ++++++++ .../java/com/gooddata/sdk/model/project/ProjectTest.java | 1 - .../src/test/resources/project/project-vertica.json | 3 +-- .../src/test/resources/project/project.json | 3 +-- .../src/test/resources/project/projects.json | 1 - .../src/test/resources/project/project-deleted.json | 3 +-- .../src/test/resources/project/project-loading.json | 3 +-- .../src/test/resources/project/project-vertica.json | 3 +-- gooddata-java/src/test/resources/project/project.json | 3 +-- .../src/test/resources/project/projects-for-user.json | 1 - 10 files changed, 14 insertions(+), 15 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java index f2d5a96ec..a34a38b45 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java @@ -206,7 +206,11 @@ public String getExecuteUri() { return notNullState(links, "links").getExecute(); } + /** + * @deprecated This service has been removed from platform long time ago. + */ @JsonIgnore + @Deprecated public String getEventStoresUri() { return notNullState(links, "links").getEventStores(); } @@ -469,6 +473,10 @@ public String getExecute() { return execute; } + /** + * @deprecated This service has been removed from platform long time ago. + */ + @Deprecated public String getEventStores() { return eventStores; } diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java index 3ce547c9b..bfe72ec33 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java @@ -58,7 +58,6 @@ public void testDeserialize() throws Exception { assertThat(project.getExecuteUri(), is("/gdc/projects/PROJECT_ID/execute")); assertThat(project.getSchedulesUri(), is("/gdc/projects/PROJECT_ID/schedules")); assertThat(project.getTemplatesUri(), is("/gdc/md/PROJECT_ID/templates")); - assertThat(project.getEventStoresUri(), is("/gdc/projects/PROJECT_ID/dataload/eventstore/stores")); } @Test diff --git a/gooddata-java-model/src/test/resources/project/project-vertica.json b/gooddata-java-model/src/test/resources/project/project-vertica.json index a04bda0b3..7d8000083 100644 --- a/gooddata-java-model/src/test/resources/project/project-vertica.json +++ b/gooddata-java-model/src/test/resources/project/project-vertica.json @@ -24,8 +24,7 @@ "connectors" : "/gdc/projects/PROJECT_ID/connectors", "execute" : "/gdc/projects/PROJECT_ID/execute", "schedules" : "/gdc/projects/PROJECT_ID/schedules", - "templates" : "/gdc/md/PROJECT_ID/templates", - "eventstores" : "/gdc/projects/PROJECT_ID/dataload/eventstore/stores" + "templates" : "/gdc/md/PROJECT_ID/templates" }, "meta" : { "created" : "2014-04-11 11:43:45", diff --git a/gooddata-java-model/src/test/resources/project/project.json b/gooddata-java-model/src/test/resources/project/project.json index fa06c00c3..6f8bbf4a2 100644 --- a/gooddata-java-model/src/test/resources/project/project.json +++ b/gooddata-java-model/src/test/resources/project/project.json @@ -25,8 +25,7 @@ "connectors" : "/gdc/projects/PROJECT_ID/connectors", "execute" : "/gdc/projects/PROJECT_ID/execute", "schedules" : "/gdc/projects/PROJECT_ID/schedules", - "templates" : "/gdc/md/PROJECT_ID/templates", - "eventstores" : "/gdc/projects/PROJECT_ID/dataload/eventstore/stores" + "templates" : "/gdc/md/PROJECT_ID/templates" }, "meta" : { "created" : "2014-04-11 11:43:45", diff --git a/gooddata-java-model/src/test/resources/project/projects.json b/gooddata-java-model/src/test/resources/project/projects.json index 5db4b0093..46ccd0b3d 100644 --- a/gooddata-java-model/src/test/resources/project/projects.json +++ b/gooddata-java-model/src/test/resources/project/projects.json @@ -41,7 +41,6 @@ "connectors": "/gdc/projects/defaultEmptyProject/connectors", "schedules": "/gdc/projects/defaultEmptyProject/schedules", "dataload": "/gdc/projects/defaultEmptyProject/dataload", - "eventstores": "/gdc/projects/defaultEmptyProject/dataload/eventstore/stores", "execute": "/gdc/projects/defaultEmptyProject/execute", "clearCaches": "/gdc/projects/defaultEmptyProject/clearCaches", "projectFeatureFlags": "/gdc/projects/defaultEmptyProject/projectFeatureFlags", diff --git a/gooddata-java/src/test/resources/project/project-deleted.json b/gooddata-java/src/test/resources/project/project-deleted.json index 789cd5ae2..f883e00b5 100644 --- a/gooddata-java/src/test/resources/project/project-deleted.json +++ b/gooddata-java/src/test/resources/project/project-deleted.json @@ -22,8 +22,7 @@ "connectors": "/gdc/projects/PROJECT_ID/connectors", "execute": "/gdc/projects/PROJECT_ID/execute", "schedules": "/gdc/projects/PROJECT_ID/schedules", - "templates": "/gdc/md/PROJECT_ID/templates", - "eventstores": "/gdc/projects/PROJECT_ID/dataload/eventstore/stores" + "templates": "/gdc/md/PROJECT_ID/templates" }, "meta": { "created": "2014-06-06 19:54:16", diff --git a/gooddata-java/src/test/resources/project/project-loading.json b/gooddata-java/src/test/resources/project/project-loading.json index 3e6e4e6a6..6c52ced96 100644 --- a/gooddata-java/src/test/resources/project/project-loading.json +++ b/gooddata-java/src/test/resources/project/project-loading.json @@ -22,8 +22,7 @@ "connectors": "/gdc/projects/PROJECT_ID/connectors", "execute": "/gdc/projects/PROJECT_ID/execute", "schedules": "/gdc/projects/PROJECT_ID/schedules", - "templates": "/gdc/md/PROJECT_ID/templates", - "eventstores": "/gdc/projects/PROJECT_ID/dataload/eventstore/stores" + "templates": "/gdc/md/PROJECT_ID/templates" }, "meta": { "created": "2014-06-06 19:54:16", diff --git a/gooddata-java/src/test/resources/project/project-vertica.json b/gooddata-java/src/test/resources/project/project-vertica.json index a04bda0b3..7d8000083 100644 --- a/gooddata-java/src/test/resources/project/project-vertica.json +++ b/gooddata-java/src/test/resources/project/project-vertica.json @@ -24,8 +24,7 @@ "connectors" : "/gdc/projects/PROJECT_ID/connectors", "execute" : "/gdc/projects/PROJECT_ID/execute", "schedules" : "/gdc/projects/PROJECT_ID/schedules", - "templates" : "/gdc/md/PROJECT_ID/templates", - "eventstores" : "/gdc/projects/PROJECT_ID/dataload/eventstore/stores" + "templates" : "/gdc/md/PROJECT_ID/templates" }, "meta" : { "created" : "2014-04-11 11:43:45", diff --git a/gooddata-java/src/test/resources/project/project.json b/gooddata-java/src/test/resources/project/project.json index fa06c00c3..6f8bbf4a2 100644 --- a/gooddata-java/src/test/resources/project/project.json +++ b/gooddata-java/src/test/resources/project/project.json @@ -25,8 +25,7 @@ "connectors" : "/gdc/projects/PROJECT_ID/connectors", "execute" : "/gdc/projects/PROJECT_ID/execute", "schedules" : "/gdc/projects/PROJECT_ID/schedules", - "templates" : "/gdc/md/PROJECT_ID/templates", - "eventstores" : "/gdc/projects/PROJECT_ID/dataload/eventstore/stores" + "templates" : "/gdc/md/PROJECT_ID/templates" }, "meta" : { "created" : "2014-04-11 11:43:45", diff --git a/gooddata-java/src/test/resources/project/projects-for-user.json b/gooddata-java/src/test/resources/project/projects-for-user.json index 3e659c17a..73c4f13a0 100644 --- a/gooddata-java/src/test/resources/project/projects-for-user.json +++ b/gooddata-java/src/test/resources/project/projects-for-user.json @@ -41,7 +41,6 @@ "connectors": "/gdc/projects/defaultEmptyProject/connectors", "schedules": "/gdc/projects/defaultEmptyProject/schedules", "dataload": "/gdc/projects/defaultEmptyProject/dataload", - "eventstores": "/gdc/projects/defaultEmptyProject/dataload/eventstore/stores", "execute": "/gdc/projects/defaultEmptyProject/execute", "clearCaches": "/gdc/projects/defaultEmptyProject/clearCaches", "checkXaeCompatibility": "/gdc/projects/defaultEmptyProject/checkXaeCompatibility", From 1ecfcbfce92b6e10f3f7bb9a48a810031d09eb14 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 3 Dec 2021 14:29:08 +0100 Subject: [PATCH 079/155] Cleanup checkXaeCompatibility link from project Not on API. --- gooddata-java/src/test/resources/project/projects-for-user.json | 1 - 1 file changed, 1 deletion(-) diff --git a/gooddata-java/src/test/resources/project/projects-for-user.json b/gooddata-java/src/test/resources/project/projects-for-user.json index 73c4f13a0..3239f9976 100644 --- a/gooddata-java/src/test/resources/project/projects-for-user.json +++ b/gooddata-java/src/test/resources/project/projects-for-user.json @@ -43,7 +43,6 @@ "dataload": "/gdc/projects/defaultEmptyProject/dataload", "execute": "/gdc/projects/defaultEmptyProject/execute", "clearCaches": "/gdc/projects/defaultEmptyProject/clearCaches", - "checkXaeCompatibility": "/gdc/projects/defaultEmptyProject/checkXaeCompatibility", "projectFeatureFlags": "/gdc/projects/defaultEmptyProject/projectFeatureFlags", "config": "/gdc/projects/defaultEmptyProject/config" } From ddaa5298d3f29549ce01c4dbfeb4cbab4b75e29e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Mon, 6 Dec 2021 14:46:49 +0100 Subject: [PATCH 080/155] Update LICENSE file with the year of last update --- LICENSE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.txt b/LICENSE.txt index 33b622ec7..b8d61547b 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ GoodData Java SDK BSD License -Copyright (c) 2014, GoodData Corporation +Copyright (c) 2014-2021, GoodData Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: From 96bd284ccfc30d6223629811476d15b4c21033c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Dec 2021 09:09:27 +0000 Subject: [PATCH 081/155] Bump httpcore from 4.4.14 to 4.4.15 Bumps httpcore from 4.4.14 to 4.4.15. --- updated-dependencies: - dependency-name: org.apache.httpcomponents:httpcore dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 763b29195..82c600f94 100644 --- a/pom.xml +++ b/pom.xml @@ -48,7 +48,7 @@ 4.5.13 - 4.4.14 + 4.4.15 2.13.0 1.7.32 5.3.13 From 083b4f5652831636364244dbc029467f69feb302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Libor=20Ry=C5=A1av=C3=BD?= Date: Wed, 2 Mar 2022 13:29:31 +0100 Subject: [PATCH 082/155] Add FOSSA badge to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ba44ceb88..678051bf9 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Coverage Status](https://codecov.io/gh/gooddata/gooddata-java/branch/master/graph/badge.svg)](https://app.codecov.io/gh/gooddata/gooddata-java/branch/master) [![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) [![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE.txt) +[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fgooddata%2Fgooddata-java.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fgooddata%2Fgooddata-java?ref=badge_shield) [![Javadocs](http://javadoc.io/badge/com.gooddata/gooddata-java.svg)](http://javadoc.io/doc/com.gooddata/gooddata-java) [![Javadocs Model](https://javadoc.io/badge2/com.gooddata/gooddata-java-model/javadoc--model.svg)](https://javadoc.io/doc/com.gooddata/gooddata-java-model) From 2e9c9e962bbfee320ac3cba56110151a9778c80b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jun 2022 09:56:29 +0000 Subject: [PATCH 083/155] Bump mockito-core from 4.1.0 to 4.6.1 Bumps [mockito-core](https://github.com/mockito/mockito) from 4.1.0 to 4.6.1. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.1.0...v4.6.1) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 763b29195..c3900b445 100644 --- a/pom.xml +++ b/pom.xml @@ -342,7 +342,7 @@ org.mockito mockito-core - 4.1.0 + 4.6.1 test From 1087630def892e6ea3a6b67e526cfbfd6886d696 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Jun 2022 09:15:05 +0000 Subject: [PATCH 084/155] Bump spring.version from 5.3.13 to 5.3.21 Bumps `spring.version` from 5.3.13 to 5.3.21. Updates `spring-core` from 5.3.13 to 5.3.21 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.13...v5.3.21) Updates `spring-beans` from 5.3.13 to 5.3.21 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.13...v5.3.21) Updates `spring-web` from 5.3.13 to 5.3.21 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.13...v5.3.21) Updates `spring-context` from 5.3.13 to 5.3.21 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.13...v5.3.21) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 763b29195..951e3c5ab 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.14 2.13.0 1.7.32 - 5.3.13 + 5.3.21 1.3.0 2.28.0 2.22.2 From 650984480989431bbf47cd50db1fa5e4483e89e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jun 2022 09:09:53 +0000 Subject: [PATCH 085/155] Bump gooddata-parent from 2.0.3 to 3.1.0 Bumps [gooddata-parent](https://github.com/gooddata/gooddata-parent) from 2.0.3 to 3.1.0. - [Release notes](https://github.com/gooddata/gooddata-parent/releases) - [Changelog](https://github.com/gooddata/gooddata-parent/blob/master/RELEASENOTES.md) - [Commits](https://github.com/gooddata/gooddata-parent/compare/gooddata-parent-2.0.3...gooddata-parent-3.1.0) --- updated-dependencies: - dependency-name: com.gooddata:gooddata-parent dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 763b29195..03b7645bb 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ com.gooddata gooddata-parent - 2.0.3 + 3.1.0 From a6b309d4bd7baa77baef71a86bc8c5cc65b84845 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Jul 2022 09:12:19 +0000 Subject: [PATCH 086/155] Bump testng from 7.3.0 to 7.6.1 Bumps [testng](https://github.com/cbeust/testng) from 7.3.0 to 7.6.1. - [Release notes](https://github.com/cbeust/testng/releases) - [Changelog](https://github.com/cbeust/testng/blob/master/CHANGES.txt) - [Commits](https://github.com/cbeust/testng/commits) --- updated-dependencies: - dependency-name: org.testng:testng dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 763b29195..08d672283 100644 --- a/pom.xml +++ b/pom.xml @@ -336,7 +336,7 @@ org.testng testng - 7.3.0 + 7.6.1 test From f926e9848d6a7eb377242c43676f684bce75c343 Mon Sep 17 00:00:00 2001 From: Petr Jeske Date: Fri, 15 Jul 2022 11:05:26 +0200 Subject: [PATCH 087/155] Bumps gooddata-rest-common from 2.0.0 to 2.0.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 763b29195..3b40f69a3 100644 --- a/pom.xml +++ b/pom.xml @@ -226,7 +226,7 @@ com.gooddata gooddata-rest-common - 2.0.0 + 2.0.1 joda-time From 33ef60e678990622c33db780c91ee657ce2e78b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Jul 2022 13:47:32 +0000 Subject: [PATCH 088/155] Bump jackson.version from 2.13.0 to 2.13.3 Bumps `jackson.version` from 2.13.0 to 2.13.3. Updates `jackson-core` from 2.13.0 to 2.13.3 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.0...jackson-core-2.13.3) Updates `jackson-databind` from 2.13.0 to 2.13.3 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.0 to 2.13.3 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 98a68fc76..4995fc91d 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 4.5.13 4.4.15 - 2.13.0 + 2.13.3 1.7.32 5.3.21 1.3.0 From 888992c29767561a8cab86b10c1349e719724fa3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Jul 2022 13:48:48 +0000 Subject: [PATCH 089/155] Bump jacoco-maven-plugin from 0.8.7 to 0.8.8 Bumps [jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.7 to 0.8.8. - [Release notes](https://github.com/jacoco/jacoco/releases) - [Commits](https://github.com/jacoco/jacoco/compare/v0.8.7...v0.8.8) --- updated-dependencies: - dependency-name: org.jacoco:jacoco-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 98a68fc76..4be6aced8 100644 --- a/pom.xml +++ b/pom.xml @@ -181,7 +181,7 @@ org.jacoco jacoco-maven-plugin - 0.8.7 + 0.8.8 jacoco-prepare-agent From 66808cb12dc3ad44e998f1dfd71814576a8a911d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 09:11:43 +0000 Subject: [PATCH 090/155] Bump spring.version from 5.3.21 to 5.3.22 Bumps `spring.version` from 5.3.21 to 5.3.22. Updates `spring-core` from 5.3.21 to 5.3.22 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.21...v5.3.22) Updates `spring-beans` from 5.3.21 to 5.3.22 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.21...v5.3.22) Updates `spring-web` from 5.3.21 to 5.3.22 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.21...v5.3.22) Updates `spring-context` from 5.3.21 to 5.3.22 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.21...v5.3.22) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 41fa8b403..25207292f 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.15 2.13.3 1.7.32 - 5.3.21 + 5.3.22 1.3.0 2.28.0 2.22.2 From f8d18a960f76dfe435900ee60fb72cf264a5c61f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 09:12:06 +0000 Subject: [PATCH 091/155] Bump json-unit.version from 2.28.0 to 2.35.0 Bumps `json-unit.version` from 2.28.0 to 2.35.0. Updates `json-unit` from 2.28.0 to 2.35.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.28.0...json-unit-parent-2.35.0) Updates `json-unit-core` from 2.28.0 to 2.35.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.28.0...json-unit-parent-2.35.0) --- updated-dependencies: - dependency-name: net.javacrumbs.json-unit:json-unit dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: net.javacrumbs.json-unit:json-unit-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 41fa8b403..209210a81 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 1.7.32 5.3.21 1.3.0 - 2.28.0 + 2.35.0 2.22.2 2.22.2 From be06b77bb0c2638a4cb01db2bac2745a6460b2df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 09:12:11 +0000 Subject: [PATCH 092/155] Bump spring-retry from 1.3.1 to 1.3.3 Bumps [spring-retry](https://github.com/spring-projects/spring-retry) from 1.3.1 to 1.3.3. - [Release notes](https://github.com/spring-projects/spring-retry/releases) - [Commits](https://github.com/spring-projects/spring-retry/commits/v1.3.3) --- updated-dependencies: - dependency-name: org.springframework.retry:spring-retry dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- gooddata-java/pom.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 6a125e784..cd216e670 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -64,7 +64,7 @@ org.springframework.retry spring-retry - 1.3.1 + 1.3.3 true diff --git a/pom.xml b/pom.xml index 41fa8b403..dccc397f2 100644 --- a/pom.xml +++ b/pom.xml @@ -297,7 +297,7 @@ org.springframework.retry spring-retry - 1.3.1 + 1.3.3 true From 4d77c9179b468cc6bd8b96587ace4514706a41d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Jul 2022 11:08:47 +0000 Subject: [PATCH 093/155] Bump jadler.version from 1.3.0 to 1.3.1 Bumps `jadler.version` from 1.3.0 to 1.3.1. Updates `jadler-core` from 1.3.0 to 1.3.1 - [Release notes](https://github.com/jadler-mocking/jadler/releases) - [Changelog](https://github.com/jadler-mocking/jadler/blob/master/RELEASENOTES.md) - [Commits](https://github.com/jadler-mocking/jadler/compare/jadler-pom-1.3.0...jadler-pom-1.3.1) Updates `jadler-all` from 1.3.0 to 1.3.1 - [Release notes](https://github.com/jadler-mocking/jadler/releases) - [Changelog](https://github.com/jadler-mocking/jadler/blob/master/RELEASENOTES.md) - [Commits](https://github.com/jadler-mocking/jadler/compare/jadler-pom-1.3.0...jadler-pom-1.3.1) --- updated-dependencies: - dependency-name: net.jadler:jadler-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: net.jadler:jadler-all dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ef2358a6b..f35473a44 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ 2.13.3 1.7.32 5.3.22 - 1.3.0 + 1.3.1 2.35.0 2.22.2 2.22.2 From 8bcd972c02478a890ed6ede86622e9e964dab5e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Jul 2022 11:19:55 +0000 Subject: [PATCH 094/155] Bump slf4j.version from 1.7.32 to 1.7.36 Bumps `slf4j.version` from 1.7.32 to 1.7.36. Updates `slf4j-api` from 1.7.32 to 1.7.36 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.32...v_1.7.36) Updates `slf4j-simple` from 1.7.32 to 1.7.36 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.32...v_1.7.36) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.slf4j:slf4j-simple dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a84d3197b..1cb1bf354 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ 4.5.13 4.4.15 2.13.3 - 1.7.32 + 1.7.36 5.3.22 1.3.0 2.35.0 From 6586fae8f82fd129a3dfef721ef3971e91cba0f5 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Tue, 19 Jul 2022 13:31:50 +0200 Subject: [PATCH 095/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.1+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 6bba4e6df..2ef3fc048 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.1+api3-SNAPSHOT + 3.11.1+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index cd216e670..72fe12da1 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.1+api3-SNAPSHOT + 3.11.1+api3 diff --git a/pom.xml b/pom.xml index 18fd2d1f1..59b332334 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.1+api3-SNAPSHOT + 3.11.1+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.1+api3 From 86124aadab0c4e1af4e5f910e5d2f6746b8c7c07 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Tue, 19 Jul 2022 13:31:54 +0200 Subject: [PATCH 096/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 2ef3fc048..83e79aa77 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.1+api3 + 3.11.2+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 72fe12da1..02df0eeff 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.1+api3 + 3.11.2+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 59b332334..7f834de48 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.1+api3 + 3.11.2+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.1+api3 + HEAD From 9c408d32ce8efa1076fa46d8f8ac01ec98be7db7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Jul 2022 09:21:09 +0000 Subject: [PATCH 097/155] Bump equalsverifier from 3.7.2 to 3.10.1 Bumps [equalsverifier](https://github.com/jqno/equalsverifier) from 3.7.2 to 3.10.1. - [Release notes](https://github.com/jqno/equalsverifier/releases) - [Changelog](https://github.com/jqno/equalsverifier/blob/main/CHANGELOG.md) - [Commits](https://github.com/jqno/equalsverifier/compare/equalsverifier-3.7.2...equalsverifier-3.10.1) --- updated-dependencies: - dependency-name: nl.jqno.equalsverifier:equalsverifier dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f834de48..332a19fe8 100644 --- a/pom.xml +++ b/pom.xml @@ -402,7 +402,7 @@ nl.jqno.equalsverifier equalsverifier - 3.7.2 + 3.10.1 test From bb0944e37a78516a6ca0f6a9e4e062b940ee5e88 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Thu, 28 Jul 2022 18:30:54 +0200 Subject: [PATCH 098/155] Update copyright headers to simplified form --- .../src/main/java/com/gooddata/sdk/model/account/Account.java | 2 +- .../main/java/com/gooddata/sdk/model/account/Accounts.java | 2 +- .../com/gooddata/sdk/model/account/AccountsDeserializer.java | 2 +- .../com/gooddata/sdk/model/account/SeparatorSettings.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AccessLog.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AccessLogs.java | 2 +- .../gooddata/sdk/model/auditevent/AccessLogsDeserializer.java | 2 +- .../gooddata/sdk/model/auditevent/AccessLogsSerializer.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AuditEvent.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AuditEvents.java | 2 +- .../sdk/model/auditevent/AuditEventsDeserializer.java | 2 +- .../gooddata/sdk/model/auditevent/AuditEventsSerializer.java | 2 +- .../java/com/gooddata/sdk/model/connector/ConnectorType.java | 2 +- .../java/com/gooddata/sdk/model/connector/Integration.java | 2 +- .../sdk/model/connector/IntegrationProcessStatus.java | 2 +- .../com/gooddata/sdk/model/connector/ProcessExecution.java | 2 +- .../java/com/gooddata/sdk/model/connector/ProcessStatus.java | 2 +- .../main/java/com/gooddata/sdk/model/connector/Reload.java | 2 +- .../main/java/com/gooddata/sdk/model/connector/Settings.java | 2 +- .../main/java/com/gooddata/sdk/model/connector/Status.java | 2 +- .../sdk/model/connector/Zendesk4ProcessExecution.java | 2 +- .../com/gooddata/sdk/model/connector/Zendesk4Settings.java | 2 +- .../java/com/gooddata/sdk/model/dataload/OutputStage.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/AsyncTask.java | 2 +- .../sdk/model/dataload/processes/DataloadProcess.java | 2 +- .../sdk/model/dataload/processes/DataloadProcesses.java | 2 +- .../sdk/model/dataload/processes/ProcessExecution.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionDetail.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionTask.java | 2 +- .../gooddata/sdk/model/dataload/processes/ProcessType.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/Schedule.java | 2 +- .../sdk/model/dataload/processes/ScheduleExecution.java | 2 +- .../gooddata/sdk/model/dataload/processes/ScheduleState.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/Schedules.java | 2 +- .../sdk/model/dataload/processes/SchedulesDeserializer.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetLinks.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetManifest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetManifests.java | 2 +- .../gooddata/sdk/model/dataset/DatasetNotFoundException.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/EtlModeType.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/LookupMode.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/Pull.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/PullTask.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/TaskState.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/Upload.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/UploadMode.java | 2 +- .../java/com/gooddata/sdk/model/dataset/UploadStatistics.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/Uploads.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/Execution.java | 2 +- .../gooddata/sdk/model/executeafm/IdentifierObjQualifier.java | 2 +- .../sdk/model/executeafm/LocalIdentifierQualifier.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/ObjQualifier.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/Qualifier.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/ResultPage.java | 2 +- .../com/gooddata/sdk/model/executeafm/UriObjQualifier.java | 2 +- .../gooddata/sdk/model/executeafm/VisualizationExecution.java | 2 +- .../main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java | 2 +- .../com/gooddata/sdk/model/executeafm/afm/Aggregation.java | 2 +- .../sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java | 2 +- .../com/gooddata/sdk/model/executeafm/afm/AttributeItem.java | 2 +- .../sdk/model/executeafm/afm/DerivedMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/LocallyIdentifiable.java | 2 +- .../gooddata/sdk/model/executeafm/afm/MeasureDefinition.java | 2 +- .../com/gooddata/sdk/model/executeafm/afm/MeasureItem.java | 2 +- .../gooddata/sdk/model/executeafm/afm/NativeTotalItem.java | 2 +- .../sdk/model/executeafm/afm/ObjIdentifierUtilities.java | 2 +- .../sdk/model/executeafm/afm/ObjQualifierConverter.java | 2 +- .../sdk/model/executeafm/afm/OverPeriodDateAttribute.java | 2 +- .../sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/PopMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java | 2 +- .../model/executeafm/afm/PreviousPeriodMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/SimpleMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/AttributeFilter.java | 2 +- .../model/executeafm/afm/filter/AttributeFilterElements.java | 2 +- .../sdk/model/executeafm/afm/filter/ComparisonCondition.java | 2 +- .../executeafm/afm/filter/ComparisonConditionOperator.java | 2 +- .../sdk/model/executeafm/afm/filter/CompatibilityFilter.java | 2 +- .../gooddata/sdk/model/executeafm/afm/filter/DateFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/ExpressionFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/ExtendedFilter.java | 2 +- .../gooddata/sdk/model/executeafm/afm/filter/FilterItem.java | 2 +- .../sdk/model/executeafm/afm/filter/MeasureValueFilter.java | 2 +- .../executeafm/afm/filter/MeasureValueFilterCondition.java | 2 +- .../model/executeafm/afm/filter/NegativeAttributeFilter.java | 2 +- .../model/executeafm/afm/filter/PositiveAttributeFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/RangeCondition.java | 2 +- .../model/executeafm/afm/filter/RangeConditionOperator.java | 2 +- .../sdk/model/executeafm/afm/filter/RankingFilter.java | 2 +- .../model/executeafm/afm/filter/RankingFilterOperator.java | 2 +- .../sdk/model/executeafm/afm/filter/RelativeDateFilter.java | 2 +- .../executeafm/afm/filter/SimpleAttributeFilterElements.java | 2 +- .../executeafm/afm/filter/UriAttributeFilterElements.java | 2 +- .../executeafm/afm/filter/ValueAttributeFilterElements.java | 2 +- .../sdk/model/executeafm/response/AttributeHeader.java | 2 +- .../sdk/model/executeafm/response/AttributeInHeader.java | 2 +- .../sdk/model/executeafm/response/ExecutionResponse.java | 2 +- .../com/gooddata/sdk/model/executeafm/response/Header.java | 2 +- .../sdk/model/executeafm/response/MeasureGroupHeader.java | 2 +- .../sdk/model/executeafm/response/MeasureHeaderItem.java | 2 +- .../sdk/model/executeafm/response/ResultDimension.java | 2 +- .../sdk/model/executeafm/response/TotalHeaderItem.java | 2 +- .../sdk/model/executeafm/result/AttributeHeaderItem.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/result/Data.java | 2 +- .../com/gooddata/sdk/model/executeafm/result/DataList.java | 2 +- .../com/gooddata/sdk/model/executeafm/result/DataValue.java | 2 +- .../gooddata/sdk/model/executeafm/result/ExecutionResult.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/result/Paging.java | 2 +- .../sdk/model/executeafm/result/ResultHeaderItem.java | 2 +- .../sdk/model/executeafm/result/ResultMeasureHeaderItem.java | 2 +- .../sdk/model/executeafm/result/ResultTotalHeaderItem.java | 2 +- .../com/gooddata/sdk/model/executeafm/result/Warning.java | 2 +- .../sdk/model/executeafm/resultspec/AttributeLocatorItem.java | 2 +- .../model/executeafm/resultspec/AttributeSortAggregation.java | 2 +- .../sdk/model/executeafm/resultspec/AttributeSortItem.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/Dimension.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/Direction.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/LocatorItem.java | 2 +- .../sdk/model/executeafm/resultspec/MeasureLocatorItem.java | 2 +- .../sdk/model/executeafm/resultspec/MeasureSortItem.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/ResultSpec.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/SortItem.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/TotalItem.java | 2 +- .../sdk/model/executeafm/resultspec/TotalLocatorItem.java | 2 +- .../main/java/com/gooddata/sdk/model/export/ClientExport.java | 2 +- .../java/com/gooddata/sdk/model/export/ExecuteReport.java | 2 +- .../gooddata/sdk/model/export/ExecuteReportDefinition.java | 2 +- .../main/java/com/gooddata/sdk/model/export/ExportFormat.java | 2 +- .../java/com/gooddata/sdk/model/export/ReportRequest.java | 2 +- .../java/com/gooddata/sdk/model/featureflag/FeatureFlag.java | 2 +- .../java/com/gooddata/sdk/model/featureflag/FeatureFlags.java | 2 +- .../gooddata/sdk/model/featureflag/ProjectFeatureFlag.java | 2 +- .../gooddata/sdk/model/featureflag/ProjectFeatureFlags.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java | 2 +- .../main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java | 2 +- .../com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java | 2 +- .../gooddata/sdk/model/hierarchicalconfig/ConfigItems.java | 2 +- .../com/gooddata/sdk/model/hierarchicalconfig/SourceType.java | 2 +- .../src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java | 2 +- .../src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java | 2 +- .../main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/AbstractObj.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Attachment.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Attribute.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeDisplayForm.java | 2 +- .../main/java/com/gooddata/sdk/model/md/AttributeElement.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeElements.java | 2 +- .../main/java/com/gooddata/sdk/model/md/AttributeSort.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/BulkGet.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Column.java | 2 +- .../java/com/gooddata/sdk/model/md/DashboardAttachment.java | 2 +- .../java/com/gooddata/sdk/model/md/DataLoadingColumn.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Dataset.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Dimension.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/DisplayForm.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Entry.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Expression.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Fact.java | 2 +- .../main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java | 2 +- .../main/java/com/gooddata/sdk/model/md/IdentifierToUri.java | 2 +- .../java/com/gooddata/sdk/model/md/IdentifiersAndUris.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/InUseMany.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Key.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/MaqlAst.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Meta.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Metric.java | 2 +- .../main/java/com/gooddata/sdk/model/md/NestedAttribute.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Obj.java | 2 +- .../main/java/com/gooddata/sdk/model/md/ProjectDashboard.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Query.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Queryable.java | 2 +- .../main/java/com/gooddata/sdk/model/md/ReportAttachment.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Restriction.java | 2 +- .../main/java/com/gooddata/sdk/model/md/ScheduledMail.java | 2 +- .../java/com/gooddata/sdk/model/md/ScheduledMailWhen.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Service.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Table.java | 2 +- .../main/java/com/gooddata/sdk/model/md/TableDataLoad.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Updatable.java | 2 +- .../main/java/com/gooddata/sdk/model/md/UriToIdentifier.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Usage.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/UseMany.java | 2 +- .../main/java/com/gooddata/sdk/model/md/UseManyEntries.java | 2 +- .../gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java | 2 +- .../main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java | 2 +- .../java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java | 2 +- .../model/md/dashboard/filter/AttributeFilterReference.java | 2 +- .../model/md/dashboard/filter/DashboardAttributeFilter.java | 2 +- .../sdk/model/md/dashboard/filter/DashboardDateFilter.java | 2 +- .../sdk/model/md/dashboard/filter/DashboardFilter.java | 2 +- .../sdk/model/md/dashboard/filter/DashboardFilterContext.java | 2 +- .../sdk/model/md/dashboard/filter/DateFilterReference.java | 2 +- .../sdk/model/md/dashboard/filter/FilterReference.java | 2 +- .../com/gooddata/sdk/model/md/maintenance/ExportProject.java | 2 +- .../sdk/model/md/maintenance/ExportProjectArtifact.java | 2 +- .../gooddata/sdk/model/md/maintenance/ExportProjectToken.java | 2 +- .../gooddata/sdk/model/md/maintenance/PartialMdArtifact.java | 2 +- .../gooddata/sdk/model/md/maintenance/PartialMdExport.java | 2 +- .../sdk/model/md/maintenance/PartialMdExportToken.java | 2 +- .../com/gooddata/sdk/model/md/report/AttributeInGrid.java | 2 +- .../main/java/com/gooddata/sdk/model/md/report/Filter.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/report/Grid.java | 2 +- .../java/com/gooddata/sdk/model/md/report/GridElement.java | 2 +- .../gooddata/sdk/model/md/report/GridElementDeserializer.java | 2 +- .../gooddata/sdk/model/md/report/GridElementSerializer.java | 2 +- .../sdk/model/md/report/GridReportDefinitionContent.java | 2 +- .../java/com/gooddata/sdk/model/md/report/MetricElement.java | 2 +- .../java/com/gooddata/sdk/model/md/report/MetricGroup.java | 2 +- .../sdk/model/md/report/OneNumberReportDefinitionContent.java | 2 +- .../main/java/com/gooddata/sdk/model/md/report/Report.java | 2 +- .../com/gooddata/sdk/model/md/report/ReportDefinition.java | 2 +- .../gooddata/sdk/model/md/report/ReportDefinitionContent.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/report/Total.java | 2 +- .../java/com/gooddata/sdk/model/md/visualization/Bucket.java | 2 +- .../com/gooddata/sdk/model/md/visualization/BucketItem.java | 2 +- .../gooddata/sdk/model/md/visualization/CollectionType.java | 2 +- .../java/com/gooddata/sdk/model/md/visualization/Measure.java | 2 +- .../sdk/model/md/visualization/VOPopMeasureDefinition.java | 2 +- .../sdk/model/md/visualization/VOSimpleMeasureDefinition.java | 2 +- .../sdk/model/md/visualization/VisualizationAttribute.java | 2 +- .../sdk/model/md/visualization/VisualizationClass.java | 2 +- .../sdk/model/md/visualization/VisualizationConverter.java | 2 +- .../sdk/model/md/visualization/VisualizationObject.java | 2 +- .../sdk/model/md/visualization/VisualizationType.java | 2 +- .../java/com/gooddata/sdk/model/notification/Channel.java | 2 +- .../com/gooddata/sdk/model/notification/Configuration.java | 2 +- .../gooddata/sdk/model/notification/EmailConfiguration.java | 2 +- .../com/gooddata/sdk/model/notification/MessageTemplate.java | 2 +- .../com/gooddata/sdk/model/notification/ProjectEvent.java | 2 +- .../com/gooddata/sdk/model/notification/Subscription.java | 2 +- .../java/com/gooddata/sdk/model/notification/TimerEvent.java | 2 +- .../java/com/gooddata/sdk/model/notification/Trigger.java | 2 +- .../com/gooddata/sdk/model/notification/TriggerCondition.java | 2 +- .../com/gooddata/sdk/model/project/CreatedInvitations.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Environment.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Invitation.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Invitations.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Project.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectDriver.java | 2 +- .../com/gooddata/sdk/model/project/ProjectEnvironment.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectTemplate.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectTemplates.java | 2 +- .../gooddata/sdk/model/project/ProjectUsersUpdateResult.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationResult.java | 2 +- .../model/project/ProjectValidationResultGdcTimeElParam.java | 2 +- .../sdk/model/project/ProjectValidationResultItem.java | 2 +- .../sdk/model/project/ProjectValidationResultObjectParam.java | 2 +- .../sdk/model/project/ProjectValidationResultParam.java | 2 +- .../sdk/model/project/ProjectValidationResultSliElParam.java | 2 +- .../sdk/model/project/ProjectValidationResultStringParam.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationResults.java | 2 +- .../com/gooddata/sdk/model/project/ProjectValidationType.java | 2 +- .../com/gooddata/sdk/model/project/ProjectValidations.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Projects.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Role.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Roles.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/User.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Users.java | 2 +- .../com/gooddata/sdk/model/project/UsersDeserializer.java | 2 +- .../java/com/gooddata/sdk/model/project/UsersSerializer.java | 2 +- .../com/gooddata/sdk/model/project/model/DiffRequest.java | 2 +- .../java/com/gooddata/sdk/model/project/model/MaqlDdl.java | 2 +- .../com/gooddata/sdk/model/project/model/MaqlDdlLinks.java | 2 +- .../java/com/gooddata/sdk/model/project/model/ModelDiff.java | 2 +- .../java/com/gooddata/sdk/model/projecttemplate/Template.java | 2 +- .../com/gooddata/sdk/model/projecttemplate/Templates.java | 2 +- .../java/com/gooddata/sdk/model/util/TagsDeserializer.java | 2 +- .../main/java/com/gooddata/sdk/model/util/TagsSerializer.java | 2 +- .../src/main/java/com/gooddata/sdk/model/util/UriHelper.java | 2 +- .../main/java/com/gooddata/sdk/model/warehouse/Warehouse.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseSchema.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseSchemas.java | 2 +- .../sdk/model/warehouse/WarehouseSchemasDeserializer.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseTask.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseUser.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseUserRole.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java | 2 +- .../sdk/model/warehouse/WarehouseUsersDeserializer.java | 2 +- .../sdk/model/warehouse/WarehouseUsersSerializer.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/Warehouses.java | 2 +- .../gooddata/sdk/model/warehouse/WarehousesDeserializer.java | 2 +- .../gooddata/sdk/model/warehouse/WarehousesSerializer.java | 2 +- .../gooddata/sdk/model/account/SeparatorSettingsTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/ExecutionTest.groovy | 2 +- .../sdk/model/executeafm/IdentifierObjQualifierTest.groovy | 2 +- .../sdk/model/executeafm/LocalIdentifierQualifierTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/QualifierTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/ResultPageTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy | 2 +- .../sdk/model/executeafm/VisualizationExecutionTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy | 2 +- .../executeafm/afm/ArithmeticMeasureDefinitionTest.groovy | 2 +- .../sdk/model/executeafm/afm/AttributeItemTest.groovy | 2 +- .../sdk/model/executeafm/afm/MeasureDefinitionTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy | 2 +- .../sdk/model/executeafm/afm/NativeTotalItemTest.groovy | 2 +- .../model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy | 2 +- .../model/executeafm/afm/OverPeriodDateAttributeTest.groovy | 2 +- .../executeafm/afm/OverPeriodMeasureDefinitionTest.groovy | 2 +- .../sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy | 2 +- .../model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy | 2 +- .../executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy | 2 +- .../model/executeafm/afm/SimpleMeasureDefinitionTest.groovy | 2 +- .../model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy | 2 +- .../executeafm/afm/filter/ComparisonConditionTest.groovy | 2 +- .../executeafm/afm/filter/CompatibilityFilterTest.groovy | 2 +- .../model/executeafm/afm/filter/ExpressionFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/FilterItemTest.groovy | 2 +- .../afm/filter/MeasureValueFilterConditionTest.groovy | 2 +- .../model/executeafm/afm/filter/MeasureValueFilterTest.groovy | 2 +- .../executeafm/afm/filter/NegativeAttributeFilterTest.groovy | 2 +- .../executeafm/afm/filter/PositiveAttributeFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/RangeConditionTest.groovy | 2 +- .../executeafm/afm/filter/RankingFilterOperatorTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/RankingFilterTest.groovy | 2 +- .../model/executeafm/afm/filter/RelativeDateFilterTest.groovy | 2 +- .../afm/filter/UriAttributeFilterElementsTest.groovy | 2 +- .../afm/filter/ValueAttributeFilterElementsTest.groovy | 2 +- .../sdk/model/executeafm/response/AttributeHeaderTest.groovy | 2 +- .../model/executeafm/response/AttributeInHeaderTest.groovy | 2 +- .../model/executeafm/response/ExecutionResponseTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/response/HeaderTest.groovy | 2 +- .../model/executeafm/response/MeasureGroupHeaderTest.groovy | 2 +- .../model/executeafm/response/MeasureHeaderItemTest.groovy | 2 +- .../sdk/model/executeafm/response/ResultDimensionTest.groovy | 2 +- .../sdk/model/executeafm/response/TotalHeaderItemTest.groovy | 2 +- .../model/executeafm/result/AttributeHeaderItemTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/result/DataListTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/result/DataTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/result/DataValueTest.groovy | 2 +- .../sdk/model/executeafm/result/ExecutionResultTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/result/PagingTest.groovy | 2 +- .../sdk/model/executeafm/result/ResultHeaderItemTest.groovy | 2 +- .../executeafm/result/ResultMeasureHeaderItemTest.groovy | 2 +- .../model/executeafm/result/ResultTotalHeaderItemTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/result/WarningTest.groovy | 2 +- .../executeafm/resultspec/AttributeLocatorItemTest.groovy | 2 +- .../model/executeafm/resultspec/AttributeSortItemTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/DimensionTest.groovy | 2 +- .../model/executeafm/resultspec/MeasureLocatorItemTest.groovy | 2 +- .../model/executeafm/resultspec/MeasureSortItemTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/ResultSpecTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/TotalItemTest.groovy | 2 +- .../model/executeafm/resultspec/TotalLocatorItemTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy | 2 +- .../com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy | 2 +- .../com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy | 2 +- .../com/gooddata/sdk/model/md/UriToIdentifierTest.groovy | 2 +- .../sdk/model/md/dashboard/AnalyticalDashboardTest.groovy | 2 +- .../com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy | 2 +- .../md/dashboard/filter/AttributeFilterReferenceTest.groovy | 2 +- .../md/dashboard/filter/DashboardAttributeFilterTest.groovy | 2 +- .../model/md/dashboard/filter/DashboardDateFilterTest.groovy | 2 +- .../md/dashboard/filter/DashboardFilterContextTest.groovy | 2 +- .../model/md/dashboard/filter/DateFilterReferenceTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy | 2 +- .../com/gooddata/sdk/model/md/visualization/BucketTest.groovy | 2 +- .../gooddata/sdk/model/md/visualization/MeasureTest.groovy | 2 +- .../model/md/visualization/VisualizationAttributeTest.groovy | 2 +- .../sdk/model/md/visualization/VisualizationClassTest.groovy | 2 +- .../model/md/visualization/VisualizationConverterTest.groovy | 2 +- .../sdk/model/md/visualization/VisualizationObjectTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy | 2 +- .../test/java/com/gooddata/sdk/model/account/AccountTest.java | 2 +- .../java/com/gooddata/sdk/model/account/AccountsTest.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AccessLogTest.java | 2 +- .../com/gooddata/sdk/model/auditevent/AccessLogsTest.java | 2 +- .../com/gooddata/sdk/model/auditevent/AuditEventTest.java | 2 +- .../com/gooddata/sdk/model/auditevent/AuditEventsTest.java | 2 +- .../sdk/model/connector/IntegrationProcessStatusTest.java | 2 +- .../com/gooddata/sdk/model/connector/IntegrationTest.java | 2 +- .../gooddata/sdk/model/connector/ProcessExecutionTest.java | 2 +- .../com/gooddata/sdk/model/connector/ProcessStatusTest.java | 2 +- .../java/com/gooddata/sdk/model/connector/ReloadTest.java | 2 +- .../java/com/gooddata/sdk/model/connector/StatusTest.java | 2 +- .../sdk/model/connector/Zendesk4ProcessExecutionTest.java | 2 +- .../gooddata/sdk/model/connector/Zendesk4SettingsTest.java | 2 +- .../java/com/gooddata/sdk/model/dataload/OutputStageTest.java | 2 +- .../sdk/model/dataload/processes/DataloadProcessTest.java | 2 +- .../sdk/model/dataload/processes/DataloadProcessesTest.java | 2 +- .../model/dataload/processes/ProcessExecutionDetailTest.java | 2 +- .../model/dataload/processes/ProcessExecutionTaskTest.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionTest.java | 2 +- .../sdk/model/dataload/processes/ScheduleExecutionTest.java | 2 +- .../gooddata/sdk/model/dataload/processes/ScheduleTest.java | 2 +- .../gooddata/sdk/model/dataload/processes/SchedulesTest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java | 2 +- .../com/gooddata/sdk/model/dataset/DatasetManifestTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/PullTaskTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/PullTest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/TaskStateTest.java | 2 +- .../com/gooddata/sdk/model/dataset/UploadStatisticsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/UploadTest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/UploadsTest.java | 2 +- .../java/com/gooddata/sdk/model/export/ClientExportTest.java | 2 +- .../sdk/model/export/ExecuteReportDefinitionTest.java | 2 +- .../java/com/gooddata/sdk/model/export/ExecuteReportTest.java | 2 +- .../java/com/gooddata/sdk/model/export/ExportFormatTest.java | 2 +- .../com/gooddata/sdk/model/featureflag/FeatureFlagTest.java | 2 +- .../com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java | 2 +- .../sdk/model/featureflag/ProjectFeatureFlagTest.java | 2 +- .../sdk/model/featureflag/ProjectFeatureFlagsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java | 2 +- .../gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java | 2 +- .../sdk/model/hierarchicalconfig/ConfigItemsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/AttachmentTest.java | 2 +- .../com/gooddata/sdk/model/md/AttributeDisplayFormTest.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeElementTest.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeElementsTest.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeSortTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/AttributeTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ColumnTest.java | 2 +- .../com/gooddata/sdk/model/md/DashboardAttachmentTest.java | 2 +- .../java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/DatasetTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/DimensionTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/DisplayFormTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/EntryTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/ExpressionTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/FactTest.java | 2 +- .../java/com/gooddata/sdk/model/md/IdentifierToUriTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/InUseManyTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/KeyTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/MetaTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/MetricTest.java | 2 +- .../java/com/gooddata/sdk/model/md/NestedAttributeTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ObjTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ProjectDashboardTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/QueryTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ReportAttachmentTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/RestrictionTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ScheduledMailTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ServiceTest.java | 2 +- .../java/com/gooddata/sdk/model/md/TableDataLoadTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/TableTest.java | 2 +- .../sdk/model/md/maintenance/ExportProjectArtifactTest.java | 2 +- .../gooddata/sdk/model/md/maintenance/ExportProjectTest.java | 2 +- .../sdk/model/md/maintenance/ExportProjectTokenTest.java | 2 +- .../sdk/model/md/maintenance/PartialMdArtifactTest.java | 2 +- .../sdk/model/md/maintenance/PartialMdExportTest.java | 2 +- .../sdk/model/md/maintenance/PartialMdExportTokenTest.java | 2 +- .../com/gooddata/sdk/model/md/report/AttributeInGridTest.java | 2 +- .../sdk/model/md/report/GridElementDeserializerTest.java | 2 +- .../sdk/model/md/report/GridElementSerializerTest.java | 2 +- .../sdk/model/md/report/GridReportDefinitionContentTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/report/GridTest.java | 2 +- .../com/gooddata/sdk/model/md/report/MetricElementTest.java | 2 +- .../model/md/report/OneNumberReportDefinitionContentTest.java | 2 +- .../sdk/model/md/report/ReportDefinitionContentTest.java | 2 +- .../gooddata/sdk/model/md/report/ReportDefinitionTest.java | 2 +- .../java/com/gooddata/sdk/model/md/report/ReportTest.java | 2 +- .../java/com/gooddata/sdk/model/notification/ChannelTest.java | 2 +- .../com/gooddata/sdk/model/notification/ConditionTest.java | 2 +- .../sdk/model/notification/EmailConfigurationTest.java | 2 +- .../gooddata/sdk/model/notification/MessageTemplateTest.java | 2 +- .../com/gooddata/sdk/model/notification/ProjectEventTest.java | 2 +- .../com/gooddata/sdk/model/notification/SubscriptionTest.java | 2 +- .../com/gooddata/sdk/model/notification/TimerEventTest.java | 2 +- .../gooddata/sdk/model/project/CreatedInvitationsTest.java | 2 +- .../java/com/gooddata/sdk/model/project/InvitationsTest.java | 2 +- .../com/gooddata/sdk/model/project/ProjectTemplateTest.java | 2 +- .../com/gooddata/sdk/model/project/ProjectTemplatesTest.java | 2 +- .../test/java/com/gooddata/sdk/model/project/ProjectTest.java | 2 +- .../sdk/model/project/ProjectUsersUpdateResultTest.java | 2 +- .../project/ProjectValidationResultGdcTimeElParamTest.java | 2 +- .../sdk/model/project/ProjectValidationResultItemTest.java | 2 +- .../model/project/ProjectValidationResultObjectParamTest.java | 2 +- .../sdk/model/project/ProjectValidationResultParamTest.java | 2 +- .../model/project/ProjectValidationResultSliElParamTest.java | 2 +- .../model/project/ProjectValidationResultStringParamTest.java | 2 +- .../sdk/model/project/ProjectValidationResultTest.java | 2 +- .../sdk/model/project/ProjectValidationResultsTest.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationTypeTest.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/project/RoleTest.java | 2 +- .../test/java/com/gooddata/sdk/model/project/RolesTest.java | 2 +- .../test/java/com/gooddata/sdk/model/project/UserTest.java | 2 +- .../test/java/com/gooddata/sdk/model/project/UsersTest.java | 2 +- .../com/gooddata/sdk/model/project/model/DiffRequestTest.java | 2 +- .../gooddata/sdk/model/project/model/MaqlDdlLinksTest.java | 2 +- .../com/gooddata/sdk/model/project/model/MaqlDdlTest.java | 2 +- .../com/gooddata/sdk/model/project/model/ModelDiffTest.java | 2 +- .../com/gooddata/sdk/model/projecttemplate/TemplateTest.java | 2 +- .../com/gooddata/sdk/model/util/TagsDeserializerTest.java | 2 +- .../java/com/gooddata/sdk/model/util/TagsSerializerTest.java | 2 +- .../test/java/com/gooddata/sdk/model/util/TagsTestClass.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java | 2 +- .../gooddata/sdk/model/warehouse/WarehouseSchemasTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseUserTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehousesTest.java | 2 +- .../java/com/gooddata/sdk/service/AbstractPollHandler.java | 2 +- .../com/gooddata/sdk/service/AbstractPollHandlerBase.java | 2 +- .../main/java/com/gooddata/sdk/service/AbstractService.java | 2 +- .../sdk/service/DeprecationWarningRequestInterceptor.java | 2 +- .../src/main/java/com/gooddata/sdk/service/FutureResult.java | 2 +- .../src/main/java/com/gooddata/sdk/service/GoodData.java | 2 +- .../main/java/com/gooddata/sdk/service/GoodDataEndpoint.java | 2 +- .../java/com/gooddata/sdk/service/GoodDataRestProvider.java | 2 +- .../main/java/com/gooddata/sdk/service/GoodDataServices.java | 2 +- .../main/java/com/gooddata/sdk/service/GoodDataSettings.java | 2 +- .../gooddata/sdk/service/HeaderSettingRequestInterceptor.java | 2 +- .../src/main/java/com/gooddata/sdk/service/PollHandler.java | 2 +- .../src/main/java/com/gooddata/sdk/service/PollResult.java | 2 +- .../java/com/gooddata/sdk/service/RequestIdInterceptor.java | 2 +- .../sdk/service/ResponseMissingRequestIdInterceptor.java | 2 +- .../main/java/com/gooddata/sdk/service/SimplePollHandler.java | 2 +- .../sdk/service/account/AccountNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/account/AccountService.java | 2 +- .../sdk/service/auditevent/AuditEventPageRequest.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventService.java | 2 +- .../sdk/service/auditevent/AuditEventsForbiddenException.java | 2 +- .../sdk/service/auditevent/TimeFilterPageRequest.java | 2 +- .../gooddata/sdk/service/connector/ConnectorException.java | 2 +- .../com/gooddata/sdk/service/connector/ConnectorService.java | 2 +- .../sdk/service/connector/IntegrationNotFoundException.java | 2 +- .../com/gooddata/sdk/service/dataload/OutputStageService.java | 2 +- .../service/dataload/processes/ProcessExecutionException.java | 2 +- .../service/dataload/processes/ProcessNotFoundException.java | 2 +- .../sdk/service/dataload/processes/ProcessService.java | 2 +- .../dataload/processes/ScheduleExecutionException.java | 2 +- .../service/dataload/processes/ScheduleNotFoundException.java | 2 +- .../com/gooddata/sdk/service/dataset/DatasetException.java | 2 +- .../java/com/gooddata/sdk/service/dataset/DatasetService.java | 2 +- .../gooddata/sdk/service/executeafm/ExecuteAfmService.java | 2 +- .../sdk/service/executeafm/ExecutionResultException.java | 2 +- .../java/com/gooddata/sdk/service/export/ExportException.java | 2 +- .../java/com/gooddata/sdk/service/export/ExportService.java | 2 +- .../gooddata/sdk/service/export/NoDataExportException.java | 2 +- .../gooddata/sdk/service/featureflag/FeatureFlagService.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DataStoreException.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DataStoreService.java | 2 +- .../main/java/com/gooddata/sdk/service/gdc/GdcSardine.java | 2 +- .../com/gooddata/sdk/service/gdc/GdcSardineException.java | 4 +++- .../gooddata/sdk/service/gdc/GdcSardineResponseHandler.java | 2 +- .../main/java/com/gooddata/sdk/service/gdc/GdcService.java | 2 +- .../service/hierarchicalconfig/HierarchicalConfigService.java | 2 +- .../sdk/service/httpcomponents/GoodDataHttpClientBuilder.java | 2 +- .../httpcomponents/LoginPasswordGoodDataRestProvider.java | 2 +- .../httpcomponents/SingleEndpointGoodDataRestProvider.java | 2 +- .../sdk/service/httpcomponents/SstGoodDataRestProvider.java | 2 +- .../main/java/com/gooddata/sdk/service/lcm/LcmService.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataService.java | 2 +- .../com/gooddata/sdk/service/md/NonUniqueObjException.java | 2 +- .../java/com/gooddata/sdk/service/md/ObjCreateException.java | 2 +- .../com/gooddata/sdk/service/md/ObjNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/md/ObjUpdateException.java | 2 +- .../sdk/service/md/maintenance/ExportImportException.java | 2 +- .../sdk/service/md/maintenance/ExportImportService.java | 2 +- .../sdk/service/notification/NotificationService.java | 2 +- .../sdk/service/project/ProjectNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/project/ProjectService.java | 2 +- .../sdk/service/project/ProjectUsersUpdateException.java | 2 +- .../gooddata/sdk/service/project/RoleNotFoundException.java | 2 +- .../sdk/service/project/UserInProjectNotFoundException.java | 2 +- .../gooddata/sdk/service/project/model/ModelException.java | 2 +- .../com/gooddata/sdk/service/project/model/ModelService.java | 2 +- .../sdk/service/projecttemplate/ProjectTemplateService.java | 2 +- .../sdk/service/retry/GetServerErrorRetryStrategy.java | 2 +- .../java/com/gooddata/sdk/service/retry/RetrySettings.java | 2 +- .../java/com/gooddata/sdk/service/retry/RetryStrategy.java | 2 +- .../com/gooddata/sdk/service/retry/RetryableRestTemplate.java | 2 +- .../com/gooddata/sdk/service/util/ResponseErrorHandler.java | 2 +- .../main/java/com/gooddata/sdk/service/util/ZipHelper.java | 2 +- .../sdk/service/warehouse/WarehouseNotFoundException.java | 2 +- .../service/warehouse/WarehouseSchemaNotFoundException.java | 2 +- .../com/gooddata/sdk/service/warehouse/WarehouseService.java | 2 +- .../sdk/service/warehouse/WarehouseUserNotFoundException.java | 2 +- gooddata-java/src/main/javadoc/overview.html | 2 +- .../com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy | 2 +- .../test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy | 2 +- .../groovy/com/gooddata/sdk/service/GoodDataITBase.groovy | 2 +- .../com/gooddata/sdk/service/GoodDataServicesTest.groovy | 2 +- .../com/gooddata/sdk/service/GoodDataSettingsTest.groovy | 2 +- .../sdk/service/connector/ConnectorServiceTest.groovy | 2 +- .../sdk/service/executeafm/ExecuteAfmServiceIT.groovy | 2 +- .../service/executeafm/ExecutionResultExceptionTest.groovy | 2 +- .../com/gooddata/sdk/service/export/ExportServiceIT.groovy | 2 +- .../com/gooddata/sdk/service/export/ExportServiceTest.groovy | 2 +- .../LoginPasswordGoodDataRestProviderTest.groovy | 2 +- .../SingleEndpointGoodDataRestProviderTest.groovy | 2 +- .../service/httpcomponents/SstGoodDataRestProviderTest.groovy | 2 +- .../groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy | 2 +- .../com/gooddata/sdk/service/retry/RetrySettingsTest.groovy | 2 +- .../sdk/service/retry/RetryableRestTemplateTest.groovy | 2 +- .../java/com/gooddata/sdk/service/AbstractGoodDataAT.java | 2 +- .../java/com/gooddata/sdk/service/AbstractGoodDataIT.java | 2 +- .../java/com/gooddata/sdk/service/AbstractServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/GoodDataEndpointTest.java | 2 +- .../src/test/java/com/gooddata/sdk/service/PollHandlerIT.java | 2 +- .../com/gooddata/sdk/service/account/AccountServiceAT.java | 2 +- .../com/gooddata/sdk/service/account/AccountServiceIT.java | 2 +- .../sdk/service/auditevent/AuditEventPageRequestTest.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventServiceAT.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventServiceIT.java | 2 +- .../sdk/service/auditevent/AuditEventServiceTest.java | 2 +- .../sdk/service/auditevent/TimeFilterPageRequestTest.java | 2 +- .../gooddata/sdk/service/connector/ConnectorServiceIT.java | 2 +- .../gooddata/sdk/service/dataload/OutputStageServiceAT.java | 2 +- .../gooddata/sdk/service/dataload/OutputStageServiceIT.java | 2 +- .../gooddata/sdk/service/dataload/OutputStageServiceTest.java | 2 +- .../sdk/service/dataload/processes/ProcessIdMatcher.java | 2 +- .../sdk/service/dataload/processes/ProcessServiceAT.java | 2 +- .../sdk/service/dataload/processes/ProcessServiceIT.java | 2 +- .../sdk/service/dataload/processes/ProcessServiceTest.java | 2 +- .../sdk/service/dataload/processes/ScheduleIdMatcher.java | 2 +- .../com/gooddata/sdk/service/dataset/DatasetServiceAT.java | 2 +- .../com/gooddata/sdk/service/dataset/DatasetServiceIT.java | 2 +- .../com/gooddata/sdk/service/dataset/DatasetServiceTest.java | 2 +- .../gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/export/ExportServiceAT.java | 2 +- .../sdk/service/featureflag/FeatureFlagServiceAT.java | 2 +- .../sdk/service/featureflag/FeatureFlagServiceIT.java | 2 +- .../sdk/service/featureflag/FeatureFlagServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java | 2 +- .../test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java | 2 +- .../hierarchicalconfig/HierarchicalConfigServiceAT.java | 2 +- .../hierarchicalconfig/HierarchicalConfigServiceIT.java | 2 +- .../hierarchicalconfig/HierarchicalConfigServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataServiceIT.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataServiceTest.java | 2 +- .../sdk/service/md/maintenance/ExportImportServiceAT.java | 2 +- .../sdk/service/md/maintenance/ExportImportServiceIT.java | 2 +- .../sdk/service/md/maintenance/ExportImportServiceTest.java | 2 +- .../sdk/service/notification/NotificationServiceAT.java | 2 +- .../sdk/service/notification/NotificationServiceIT.java | 2 +- .../sdk/service/notification/NotificationServiceTest.java | 2 +- .../com/gooddata/sdk/service/project/ProjectIdMatcher.java | 2 +- .../com/gooddata/sdk/service/project/ProjectServiceAT.java | 2 +- .../com/gooddata/sdk/service/project/ProjectServiceIT.java | 2 +- .../com/gooddata/sdk/service/project/ProjectServiceTest.java | 2 +- .../gooddata/sdk/service/project/model/ModelServiceAT.java | 2 +- .../gooddata/sdk/service/project/model/ModelServiceIT.java | 2 +- .../sdk/service/projecttemplate/ProjectTemplateServiceIT.java | 2 +- .../gooddata/sdk/service/util/ResponseErrorHandlerTest.java | 2 +- .../java/com/gooddata/sdk/service/util/ZipHelperTest.java | 2 +- .../gooddata/sdk/service/warehouse/WarehouseIdMatcher.java | 2 +- .../gooddata/sdk/service/warehouse/WarehouseServiceAT.java | 2 +- .../gooddata/sdk/service/warehouse/WarehouseServiceIT.java | 2 +- 667 files changed, 669 insertions(+), 667 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index ea52b1aa1..99c7c3c26 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java index 9f20cfc76..350793292 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java index af0409301..7fb235325 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java index e49dd83dc..8cabd3f2c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java index 316629d86..dc6f0d1a3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java index def336394..041170f61 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java index 70f73ebaa..1de5696cb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java index 3103b9490..6669981f2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java index 23f837454..1b54dea6e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java index da42bbb18..08846812b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java index 46d2efada..dbdfae95b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java index 0f7de8bef..5cdacdae8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java index d6aa0ea45..e01463ecb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java index f2722856c..e28ac50bb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java index 28fe7a43f..11f45fd89 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java index 3bc7c78f6..f96bc11e8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java index 7d73aed6f..d28c95947 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java index 87c917001..6390ac28f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java index cb9427a6d..a9d6d381c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java index 86ea1e793..ec8c21da8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java index c15ceac58..74dedf86a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java index e0a8ed296..596d3240b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java index fd5e0a931..778090850 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java index 53ea2477c..ec44296a7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java index d85e38d85..3d764ead2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java index 57f19b1d0..3e35c0a67 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java index c0187085e..d6e2b552e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java index 5978cd1e6..51bb247c4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java index e8c08cd9c..0d0702674 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java index 1605741af..3da513aad 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java index 7b4c85416..ccf28344a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java index 7f8bc61ee..50a4b8b73 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java index 973216d7e..4f6d2663d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java index d7cc018e3..0fb048955 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java index 3cb92b0bf..882c9c9d2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java index cf74439ed..8f8b158ef 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java index f8ce4eb87..ae8ed07ab 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java index 3b3d1a96c..a22d93a11 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java index 30f47db60..3134b7d3a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java index 860d86ae6..2d5044e83 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java index 6adbbe42e..36504c4bb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java index ca77b4532..a896d5a2a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java index 8693ca76c..d896f3ac9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java index 957abb9ec..610777ca1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java index a38d0f070..b0951575b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java index d93ea1430..58b84778c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java index 31e540aa0..fe074b403 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java index fd573ac2b..5fae9a123 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java index 146e1df99..c0c3d3937 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java index 266dc5686..cd811ecda 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java index b0d4f413f..adeb884c8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java index 275c1c1dc..d010aa5aa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java index fd2a00e44..b0915cbb6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java index ef33ae1d4..f24801d31 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java index cf7a5d61c..2f6e1a771 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java index 2a8635a3d..6d8ea8127 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java index 5de0229dd..5c26c3bdb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java index fc5db773f..faa5002da 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java index 6ebdec422..920560ae5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java index 6f66c6185..4b02e73a6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java index 10d32e84e..f04b6229d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java index 473df358e..51348c67f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java index ba7a4fe1d..9c67d599f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java index cb00178fe..2667b7078 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java index 9a754ea1b..983ff6751 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java index 76489c3ee..10beab093 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java index 4bd0566eb..6ac071cbd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java index f3b7742c9..765783ca7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java index 0194229f1..8cfefcd53 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java index 884f27545..9ab893ae7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java index 3062982a0..d7f3e42a4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java index a54837543..18929485c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java index ea8039471..e037fd588 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java index 936cfeaf9..fc0a69c3e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java index 8160e304b..ce3276056 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java index 85b12f93a..a168636c2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java index fe9b0d8a7..6ef9107a8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java index c78c9baad..32d165f98 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java index 5082f1d5a..bbe58b664 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java index caae5c588..7fc6c2ba2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java index 0ddfdea46..24b1fdee8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java index 4b55b4eb6..d6dbafe72 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java index f3e4e0b8a..7d1859cfa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java index 196377156..eac6e3a13 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java index 247c34858..39e5e9040 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java index 3f7be112d..24c68eaa7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java index 66a03f6e0..f45f77c99 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java index be596e189..93256fa59 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java index 1fdd3f6f2..87e6655cf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java index 70d7f9064..85061f14b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java index 13e74ddc2..d77a38ace 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java index bbf3d5f17..5e7c0248f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java index 7250a4330..9657cbf46 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java index 503bb80b6..a13e9ebde 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java index 4137e99a0..cfba630d8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java index 3193a3bec..d64f20ada 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java index 20c01abd5..b9da33ee6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java index a25422f47..11dacb692 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java index df721fea5..43e8dd55a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java index c760a5924..194c4604b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java index 6dab259d9..ffe915e7c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java index cb6f82ea9..8e768c14c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java index 3779e95ef..157c4ff4a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java index cedcb7721..817f175ca 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java index c69aadc70..db5bee51f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java index 3f9574488..e23a08a7d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java index 6f55c823d..9dbafa8e7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java index 8adee2ab0..63af90ee5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java index a27e4ebc0..73d713abe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java index 454fa1902..c5949f73c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java index dd186ad8f..0b6db9002 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java index 75590dfd2..0bbf31081 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java index a043c5138..565da8e28 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java index cbf241196..d81062c7c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java index b0170e64b..61131158c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java index 8aa6f3559..d1d86b127 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java index 6a315f2ee..a08c49c93 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java index 58f7a252a..12481f559 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java index 36a0ea559..cf52c535a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java index 7b17e511e..ffe32b82c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java index f95b6e463..e1bea0db1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java index 0a10b0eec..0e4301132 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java index c767499c9..ad1071f24 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java index 2173cf419..4c3680721 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java index 617b6b180..cc827900a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java index bac702583..b46b531e9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java index 5be6aca30..9d3a801b8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java index 1aa6437a3..189fab22d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java index 0d56cf8e9..599379ed2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java index 380fbd6f2..b58027f36 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java index 89212cfc3..50ca2606a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java index 815dd02bf..b6df3da4b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java index 7f067c3b2..cc8c62afb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java index bfa85b1e8..85c54704a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java index 639cad79a..7ea18274c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java index c59d92ef3..638a25dfe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java index 0881b40b2..d6e6adc35 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java index e49efe2ab..999b27621 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java index 218ee9669..ed404bc0d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java index 60388ee5d..e0914730d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java index 95d0525c1..acb369806 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java index d03271eb9..76e185a9a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java index 9131e38f6..d648ebe7d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java index 6e2155fb5..5d5c9d083 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java index e4f6e5f2e..76cf5d2dc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java index 6c94b945a..323c1af57 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java index e0151826c..41eb37640 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java index 8d397b6fb..308331ba8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java index 9cf70d382..3310d2ddd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java index 0d0cb9f4e..edbe8bf8e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java index 95358308c..e50b88d52 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java index b81a7c426..f2e56ddeb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java index dd62e4ab0..a61c19aa8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java index 024a7b979..bd7e5eb37 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java index 3f4296372..469b8130c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java index 97ea4dedc..79ab19e8f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java index 8b43f8221..a591ca74c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java index 5eba715e6..6a4004493 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java index 92028b215..1198d8b2e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java index fabfa4983..5221ee295 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java index 1a59ae25b..e61ce597f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java index bb2935e72..f933bb462 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java index 246581e9c..f2aa7ffc8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java index fbe3284b4..0a745e5ca 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java index 061949229..df37197ef 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java index 0300a1e64..848fe7254 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java index a815ee415..e7a7054c6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java index 34146b9d8..3c9d60936 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java index 0b47ce677..0356da1c8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java index 915e84db8..fd0543c46 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java index dd4f70cc9..2a4e7dcac 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java index 11837aaf4..432cc9f2a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java index 0bad4af4a..74b6f2d42 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java index b95b3d3ed..7f074530b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java index 34ead8938..d7ba3fe92 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java index 59f3693a0..4cee7722e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java index 1194d72e4..ccb2f57d8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java index 0467a533d..dd2be944b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java index 38f99de83..c2d0524a9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java index 30d685295..70b1818c8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java index 6e7ed8434..e4dbb6cb4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java index 359d78d51..d0cbc5510 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java index acfbcf1d3..de9f5b391 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java index 11d524142..99dbb38de 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java index 32ef2a3d8..4e7d9a242 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java index 9ff74ec15..3d73b892a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java index ebea9aee2..3be9831eb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java index 9dcb0ab3d..628c97388 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java index e27b62dcf..942183896 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java index 6ac2dd9f1..02803733a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java index fc8169b84..bda90bc3d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java index 8c5ea98d3..6ff4b0f73 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java index 99ccd2acb..d1e8eee38 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java index 93b334804..8b841c131 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java index e3b247357..bbf0f374b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java index 5a98793ba..af0da8372 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java index 1c8e2d46f..caa1f83c6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java index 53b550242..a1c1fd71b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java index b21bc9527..760939296 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java index 6ca5ad78b..87c8cc639 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java index 90b476ca2..70a41911f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java index 3ae8b894d..37b76d1ef 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java index 540015365..1fdfbcf94 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java index 46cd82cc9..59e989640 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java index fe573f656..42b7b4089 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java index dfa4b6c32..686ba4210 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java index d66deac45..407d1695b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java index 525e0f794..fae019295 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java index fae6dd429..fa5db7b62 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java index 06ebdcc99..ec23066d8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java index 7d8ef572f..79efac435 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java index da2ca0786..448016ec3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java index cbb547c1c..f201884e7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java index a992f4ea3..d4c65640a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java index abb52245a..c8911ac62 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java index ca86ebd1b..0519371be 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java index 0c51fc205..740b7ede9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java index ea3765235..bcde6ed5f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java index 55cd91e26..5e9c6e60f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java index 99fea65e5..7baaacb10 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java index 3e2f6c525..2cbad585f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java index 94df1d9f0..ae86c74b1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java index 6c058d057..64b5109e0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java index 5e3dc5c13..624f7e4a6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java index 479d92953..f311cbbd0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java index 3f08ad751..e786b1dc7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java index b165dbac2..11e05bf9a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java index a9dc7f894..5d16cad66 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java index 18ef3aa4f..9d1fc0720 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java index afd88aade..b299be930 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java index 40f939833..b337dc132 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java index 97babe385..8a3138350 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java index 0111c44bb..69bdb5031 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java index ed023e541..4dd966463 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java index 9ae764ced..c550b4739 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java index 658cc4684..32ce1fe5c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java index 172b17e0a..1ad14ff70 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java index 818956642..8fb2ef69a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java index 78a397b82..e6bd8e8e5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java index 076331378..b9bd32634 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java index 539e8b1d6..c2b1116a0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java index eed7023ae..9edf41924 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java index 354a69aaa..c8c536698 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java index c7609935f..fb180f9c4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java index 2acab64fd..2a3ee0291 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java index 7559843ac..9a69443c9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java index 99904446a..dabd77cd8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java index a34a38b45..bcef5e7f7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java index 6c2ab2279..e07e742df 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java index 9124548fa..0d723da22 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java index 903fe3ca6..de0b5bc34 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java index 6eadfad94..f8d9a2a7b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java index b3c534326..86304b1e3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java index d7b9756ce..69b4ec970 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java index 48a49562d..9a6c05f6f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java index 667f8a2e6..3347d8d06 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java index 004514364..3dd6dfb07 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java index a6ffdb6ff..e102a0ae5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java index d71026680..7177aba9f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java index a7635df0e..4963d1dcc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java index 74fc0af4b..e977d8a29 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java index 8828814b5..b639e7694 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java index 9f26cfbb5..84f866d59 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java index f22ca5f83..eb550d41b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java index 4261aff96..cb2b9e672 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java index 3567be8e2..c61915c2e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java index f0b53d583..b4564fe89 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java index c955d82b5..04218e09d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java index 6757094d7..8c09ef2f2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java index 20ff203f1..71459ec2e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java index a914899a1..6f9cac926 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java index 3fa91618e..9b7a44b5d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java index 3e3f41a5d..cc4076ace 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java index e50e80c34..e7a397487 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java index 3ecf99ba4..16ec651e1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java index e3044f8b5..f7beceaf7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java index 6d67f82f7..180504ae7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java index 9dedb2afe..e1eb58493 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java index 738223919..1dd07ab44 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java index 83f4fcd54..cf8c90c3c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java index 4179e8607..54bc200f3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java index ff8da5a17..0c67f072e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java index d074852a9..dcc830619 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java index 52da7ac66..73568394b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java index f89c0cf0f..df0bb0d66 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java index 985979411..751f0072d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java index 6485c136e..44b05a4c2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java index e1593a3b6..1c7579914 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java index 6b9127d1b..ae60960ac 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java index afc2dcec9..9e23146db 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java index 557362657..0e7bcbad7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java index 5a833bd0c..04829cbd2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy index 8d35a2b51..e84e47c03 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy index d09458ea5..d5e722834 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy index c9164004b..c928169b2 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy index 87bb37832..2c36f6553 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy index 08019fade..4a5f59fd8 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy index d42030b39..e3ccaab37 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy index 07021d213..04365d973 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy index 77b74f0b9..b95b429d1 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy index 557e3098a..0ceaf090f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy index 7c9d54c09..152166081 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy index ed7e0e258..3c3b156b5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy index 904ade73c..16c12bc1d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy index 0fbe0d1d4..c939b3ecb 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy index 76fc2a2e6..7395c7734 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy index a4a38a9ed..ef086dded 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy index 55a5efc28..14fd5702b 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy index c23701a35..0db56f062 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy index 77b664e0c..7c47db337 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy index 11e6f201e..3cee6043e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy index 136fd1171..1bd72a7e2 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy index 1bdcc151d..2bf1246f2 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy index 944d355f4..b929c9b34 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy index ad32ae3d6..f7000d2ea 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy index 2b8b583d4..1699d765b 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy index 7fe0086d6..191e409e3 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy index a9c173912..e45c52822 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy index a3e454813..159ed506c 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy index 83305eb4c..3d967d74b 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy index ee490d10e..f75f2a33f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy index 5bc46298e..182b194ce 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy index 77997756d..f462a7404 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy index b94251f06..b50aeae6a 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy index 09246cd67..27d45d7e6 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy index 79c60ce5a..5108ca41d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy index 4ce836e57..5c8bea6ae 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy index c0a640167..1440ed463 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy index b8d18e917..03e4ff0b0 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy index 98faac675..879dce19e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy index 5a8693c07..441bfda47 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy index ae1f82e7b..15beea72f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy index 0e711e2f6..40330bb6d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy index 96f34962c..68e30ea9f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy index 5d3067a60..9cb586ce6 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy index 0ab321411..406d3cfc0 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy index fd29e527f..4004da1b1 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy index d0d52aa53..386729f6c 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy index 58e227227..c7e772793 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy index f6a9db066..e905aefa4 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy index 775fdb880..42eee3a93 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy index 0fbed21f9..45e397a79 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy index d78152ffc..532c9d0f5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy index 6f2ad7bb0..53e515ef5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy index b3ca7bc71..f7c0e2a9f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy index 40593c7e5..ca1b5473a 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy index 6dc643a24..864369f7e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy index 8a292f927..b3bfe0547 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy index 31f594545..43465645d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy index 9b561c214..e25789ea1 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy index 719c55cfe..956ffa160 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy index 14d07392d..66d2afa84 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy index ccc95f987..738005733 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy index 8fd2d02ff..4ff924d80 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy index 8ab2b1198..ba87b7b7d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy index 4a7475d50..1adc57147 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy index d4ba9c090..b64b4c0cd 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy index b9657907a..e17dbbbe0 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy index 353a61dcd..2370d15c4 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy index c6e801e62..e07b26ff6 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy index c553de083..1c0c5c1a9 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy index 7ac52bd6e..a686dae62 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy index c7fbb69a2..a0ad042c9 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy index 4837468b1..27b254379 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy index 16e968430..f1113d21d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy index 85431cf80..69aef4217 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy index 37b9ae4e5..e73ef98d2 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy index b5bd21aa2..bf8c9f2a4 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy index a8a5fd168..126ad85c6 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy index d1bf48dd6..974dc97ee 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy index 10d19eb3d..589595589 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy index 0d47a17e7..119607cd5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy index 8e2e12145..ea31f83fa 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy index 3d21251a6..6d512a1b0 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy index 9e11be22c..5eaa2eae7 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy index e3a05b466..97aa176d6 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy index 20ed17184..df59c1e8c 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy index 5a957791f..6afa540e1 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java index c04f8c53c..d42f0d065 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java index 2d1778cb7..42d74b966 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java index d9269afa5..e0ec1cefd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java index b5f75a042..9ba19ca99 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java index 8a2bf1d5d..06da094a7 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java index bff23adc9..017f7c401 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java index 05eb2b227..db232b9f8 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java index 2962a358a..183a49b8d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java index 0457133d4..3151b891d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java index c5a6dec33..2b55355eb 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java index eaf98de69..11a7923aa 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java index 9f4e1fdf4..734c04e73 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java index c111f25e6..82426f443 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java index c679645b5..088d04289 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java index 34d11bd02..5a8a47d8e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java index 778c6a7e3..ac75ce01a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java index 191ed9a8c..fd2a45c5b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java index bfc03dfec..9fb78d41d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java index f3b5d922a..e183cc8f6 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java index 1fb0ba441..c7d61e9a1 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java index 670767c92..e7cfd5f04 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java index 40e44395a..1323aaf5f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java index fe18ef031..9227764e8 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java index 4f8dcc3c0..f5c348b05 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java index 5526d481c..ae42aba3e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java index 19ccc3476..524a80f83 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java index 7166b20cc..68c50a264 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java index 26eb13a5c..af2729609 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java index aeceaaf2e..3ca1a2cb0 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java index 41496469d..2dade6b40 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java index 5e5ef4ed0..c39c6d0cc 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java index 6074edc8d..bcb7f743a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java index c361aff7d..96097b09c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java index fb3269825..cd3213ab3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java index 7c213ec91..b50eead7c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java index 6557f1b64..f43d48ab1 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java index 1ff85c6fc..c7a300f02 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java index d461063c2..8b705aa95 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java index 7162dc762..c2d798d45 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java index 4119824c2..b9f16daa4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java index 7d6470ec8..168fe94e7 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java index 820bc9adf..7a2767644 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java index a1a17578d..c6b40ce06 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java index b986431b3..765ecff00 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java index 31bafb4a6..c38691ed9 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java index 4d67fbabc..981cb3024 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java index 25513caa7..6201c6ac2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java index 53dfa69ac..90fd6ab48 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java index d935a161f..102fd0028 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java index 62ff416d9..e0bad9b78 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java index 3ca6ea9b3..cd6ead0ce 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java index c84e4e1d2..77d545438 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java index 2c349a592..2a3f901b0 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java index 4e33bc762..43df06bb4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java index ef0595073..3ae38ead9 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java index 05a023599..dae0702d0 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java index 44af173b2..2b882a83c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java index 6fa78b918..74c1c3080 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java index 06292db96..8d6c334b1 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java index 2e4f6bb9a..5c4e52137 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java index 2863ca5a1..d8eab4bae 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java index 132f6c685..32090cdad 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java index e6fc3e654..6064c83a5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java index bc9f1fa8c..4268e9f02 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java index 89acf5f11..809781cdd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java index ab2d83af3..662269f31 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java index 0119526f8..d79b4d90c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java index 09b232f1e..2ebf30d99 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java index 58935d879..580b08290 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java index 536983acd..a70515aaa 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java index d52198906..56c19a75c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java index 6fe422704..f8fc51204 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java index a3aca00b5..dff010fe4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java index a81e0e1e0..56251972e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java index 68de4fdd5..0f8242080 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java index d09993b03..06fa7c164 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java index bbcb73bd2..87eb01236 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java index a2722133f..f16118714 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java index 3f7eeaa44..6defe5a37 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java index b727d39fa..20a217d0c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java index 83fb12486..b0e854d56 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java index 9de2028d0..6fc4c48c3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java index 5f7f9677a..422fc973b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java index e2f9cfb23..f7e4395cd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java index de3bc429f..5a156b438 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java index 6b29513e5..c76918272 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java index 895db8225..9d1d2d60d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java index 88d6f5489..39880f0c4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java index 884b27ce0..27c3738ad 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java index 734a1ab2f..bd4833793 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java index 1840d4c09..e6333c1e4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java index 4d41d1820..82a4538d8 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java index 849377e37..7162084e2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java index c778bfe46..e1c9da278 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java index a4b2e05b3..06632d6f0 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java index 9e9b5069d..f365ec1fb 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java index 562da79e8..23fb4d3bf 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java index 8d0447b11..308dc0fa6 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java index 681545dde..7456010cd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java index eea60ba99..46c89b5d6 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java index df102da41..638afdf58 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java index 21a1fdb97..226800700 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java index dceb4082a..044f9c841 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java index 746027cb2..d09c9ab69 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java index 32bc7841c..c1fb0743e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java index 9d1e4d24b..12e278bc2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java index 9336c2e6f..3e69dd9ae 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java index 6eebcbaee..9d9e8f6b8 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java index bfe72ec33..0e7461df2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java index f3ddb752c..e210258ac 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java index a0ed9e7c5..1c513525e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java index 0b8863ff7..d38863ecc 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java index 9c245938f..a5aee6bbc 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java index acaac41a7..79d00697c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java index 2548c32ef..8a00fd66e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java index a53a2845b..29fd14ec5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java index 10cb682f7..20ba01f08 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java index 55a7b8939..d830bf20d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java index 1b502a7a6..5075aad30 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java index 2e9e98dad..4829eb44c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java index 97a8e3c45..5ae8643c1 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java index caf05fd09..4f8d9a890 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java index 8f95942e8..d9fbc45ad 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java index 9a1376c33..b1a5ae550 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java index 4b6b4dd4e..17b8d8b40 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java index 77cea6065..74349d847 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java index 3a3cbb5fd..8e593f8e3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java index 8ecfe194f..6f5d5d09f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java index b077ed44b..ec6e19df1 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java index c7c3df7c5..f40651839 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java index 892b19dd4..717017af5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java index 1b82b66ed..fdf757822 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java index 7d8aee6e9..2d22e724b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java index 292bd8ac5..0878d7e8d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java index 06ce3dac0..deb3252c5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java index dc24cd046..22dfd2130 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java index 428bd0848..74cb30f6e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java index 960500044..d27413846 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java index b9c88d291..1389a14d6 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java index b93d87653..ef5366f5a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java index d70310f6b..16ccdb14b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java index 0d714d2cc..a79b61220 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java index 681817069..c443bab8e 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2018, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java index 45a7af5a5..1ed86d895 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java index ddffd067e..6569f51ec 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java index f861cada7..71413e7fd 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java index 461054a1b..523aa7504 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java index d9afb3ca0..e4d4278fa 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java index c88fa36ad..6df2c43f2 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java index 05c042aa7..349968cdd 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java index 0a26a0ac3..c0cf9661a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java index 05073be4c..150902818 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java index ac5a0ade6..049118449 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java index e78ca5444..1f7f8118e 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java index 29d014c24..c95928574 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java index aeb276bfa..63dcc2a18 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java index 8865f6096..8a8c80a88 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java index 4b13de613..0c1ef5fc2 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java index 664b552f6..4f6e5e4df 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java index 163f61cb3..8dc8bd537 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java index 721f5d69c..82e36e7e5 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java index e53043a2b..9c8eec912 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java index ea75bd47f..213b77428 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java index 6d2b67ea6..63829e89a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java index b2a6d3244..87f247448 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java index c6fee4e3b..accb1be45 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java index 4b8c3ff76..c2e226ae9 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java index 3154815c1..8adbbe0b1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java index f9bc3dd5f..c49010650 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java index 0e05b13cd..42d18b0a9 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java index ed01b86fe..c6b88253f 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java index 78cfd7993..162db4df9 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java index 4a7f44427..112865246 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java index 1bf8c090a..04ba87dfd 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java index d77bef22d..ea8457049 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java index c6c5019e2..2cfba7b0d 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java index ac8157e8c..9fe3f2ef2 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java index 1303d4ae6..e36fa0255 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java index fd4699fd3..af5daf7e1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java index d7093402f..886f35366 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java index c79b077c7..a596733c5 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java index ee22ac8f1..df51dcafc 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java @@ -1,5 +1,7 @@ /* - * Copyright (C) 2007-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. + * This source code is licensed under the BSD-style license found in the + * LICENSE.txt file in the root directory of this source tree. */ package com.gooddata.sdk.service.gdc; diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java index e964872cb..881049ad0 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java index 2d7755c11..ef8838eaf 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java index 6b4d42b8e..2f10063ee 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java index bef45833e..5cd8c0d1d 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java index 0ae40d17d..8cfb1b844 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java index 7f2a803c8..5c7f5a71b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java index a376b9f66..0de92ba88 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java index 65b540dbe..cd1e85780 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java index caa39ac90..03a11e152 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java index 7f58e75c1..06e1e4e0a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java index 291da9f12..32fe9e5dd 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java index 42164a311..a9f70607b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java index 72d955a86..87ecf6d92 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java index a17ee1f7a..195ba6d61 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java index fc06e45ae..55329bd1e 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java index d3f330641..f1b0d7f08 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java index 06851e520..91edbfd6c 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java index 61fa309b7..6e1b3cb50 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java index 83f585c0c..52b7a56f4 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java index 205cca062..81d7c8ca0 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java index 52749453a..710e780a8 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java index ebaa5f8a6..186fc9566 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java index 10bbe5c5b..7ea3618fc 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java index f892e5d75..50fbf675b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java index b1a6cc7fa..46bf85301 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java index 3afedf831..632bef7d5 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java index ddbfa5653..09962467a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java index e4d66ee9e..0bf2b70ae 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java index dee2c062e..05b6e07bd 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java index 2fcbb2598..ad6a5c992 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java index 2c6a061f4..1259656f4 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java index 347b56f83..f0bb05147 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java index 646088c14..ca7da771d 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java index a363714a2..080957302 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/javadoc/overview.html b/gooddata-java/src/main/javadoc/overview.html index 1c8e25454..74c4c2d4d 100644 --- a/gooddata-java/src/main/javadoc/overview.html +++ b/gooddata-java/src/main/javadoc/overview.html @@ -1,5 +1,5 @@ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy index b731abf73..6d1d6bf6a 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy index 91a4a6048..884987d78 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2018, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy index 982592368..3d156e9f2 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy index 21e2d62f9..5e59b3fb7 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy index 37573be24..86f92b554 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy index f33cca250..fc9c240b8 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy index 541af24d5..759d38cd6 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy index 53b353583..9baf5eb6a 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy index 60e9b6afd..2f1a8e0cf 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy index 473ffd32a..6d5b76580 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy index ff9a557ae..081a5ab4c 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy index 7771cd3a3..b83a0a008 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy index 0e1d01469..2a4c3e774 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy index ce16424dc..074e3ee61 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy index cac31b43a..a3595d237 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy index 4af906cdb..eb3bf5854 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java index 96c578a06..e9214be21 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java index bb9f15fea..b0cbb9610 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java index 45af98393..c21010379 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java index ec671bc2d..a47ada68e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java index cdee5af9a..d2ba2c962 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java index 5f76e79ce..8f1862e2d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java index 72ca6a3df..3f51331fe 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java index 0928445c7..26a5153a5 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java index 25775f7f0..4d2816cce 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java index 736516823..1bbea9cd6 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java index 555bf533b..a0f5dc4a1 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java index 5e76a401c..68e5712da 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java index 228abee73..2006a097d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java index 91c722a91..9d2cfb761 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java index 440f1dd6c..48c78bc84 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java index dbcfed0e2..f6cab66b0 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java index ac760c6f1..695ea1ac4 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java index 4dc5f614b..5648fc79d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java index 7158c96f1..83736f111 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java index e198708d8..b5b8f3d5f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java index e1b718180..0afa5295c 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java index eec367f4d..596d0f017 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java index 4be340893..1c20af743 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java index fddfa4856..f4b3f0f5a 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java index f3343a74e..255c62a3c 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java index b6eebbfb5..c8c90978f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java index 22be1a89c..adea2d200 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java index 76bc605b7..e27823a7c 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java index 7f203f666..af0319d9b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java index 909bd28d9..1f969f2ef 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java index 9b172155f..10f0559ea 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java index 57c594e06..515d797bf 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java index 28b2f38e0..fa5bb38e4 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java index 52420e8ca..7614e72d6 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java index 2271de80e..fb7eebf0e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java index 642326cbb..ef54ffd33 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java index 4d52fd3d4..7f013420b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java index 58d04cd28..abcfed361 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2021, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java index 0cba3b670..6d90a143f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java index 7f8d51952..3806cd00f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java index 96c5a0958..2a10ff28a 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java index b5bf6c511..e3d74dfcc 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java index 19ece7d69..53fc6780a 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java index 6a1ce377a..851d39591 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java index a43495760..39f15f580 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java index dfcb86287..48c55642e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java index f1528b9d0..1a830c770 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java index 51ddeb3b7..db890ece5 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java index 6731c0b71..8e05d36d5 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java index 7cafb03e6..3bb47b96e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java index 26180d580..e74a85edd 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java index cee1dffb6..edd8e9fb2 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2020, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java index d6c93f246..11947df1d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java index bce54e881..c724bd517 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java index c500c4715..1c100519d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java index d5239a099..54a780eb0 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2019, GoodData(R) Corporation. All rights reserved. + * (C) 2022 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ From 6bd1f032c5f763f45b4dae5d5193afb233c0bdda Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 29 Jul 2022 09:17:52 +0200 Subject: [PATCH 099/155] Add OSS attribution to LICENSE.txt --- LICENSE.txt | 4081 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 4081 insertions(+) diff --git a/LICENSE.txt b/LICENSE.txt index b8d61547b..1c9ca669e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -25,3 +25,4084 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +================================================================================ +This product includes a number of subcomponents with separate copyright notices and license terms below. +Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license. +================================================================================ + +================================================================================ + TABLE OF CONTENTS + +================================================================================ +PART 1: SUBCOMPONENTS + +- AOP alliance (1.0) [public-domain] +- Apache Ant Core (1.10.3) [Apache-2.0] +- Apache Ant Launcher (1.10.3) [Apache-2.0] +- Apache Commons IO (2.11.0) [Apache-2.0] +- Apache Commons Lang (3.12.0) [Apache-2.0] +- Apache Groovy (3.0.11) [Apache-2.0] +- Apache Groovy (2.5.7) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache Groovy (2.5.4) [Apache-2.0] +- Apache HttpClient (4.5.13) [Apache-2.0] +- Apache HttpCore (4.4.15) [Apache-2.0] +- Byte Buddy (without dependencies) (1.12.1) [BSD-3-Clause, Apache-2.0] +- Byte Buddy agent (1.12.1) [Apache-2.0] +- cglib-nodep (3.3.0) [Apache-2.0] +- EqualsVerifier | release normal jar (3.7.2) [Apache-2.0] +- EqualsVerifier | release normal jar (3.10) [Apache-2.0] +- gooddata-http-client (1.0.0) [BSD-3-Clause] +- gooddata-http-client (1.0.0+java7.fix1) [BSD-3-Clause] +- gooddata-rest-common (2.0.0) [BSD-3-Clause] +- Gson (2.3.1) [Apache-2.0] +- Guava: Google Core Libraries for Java (17.0) [Apache-2.0, CC0-1.0] +- Hamcrest (2.2) [BSD-3-Clause] +- Hamcrest Core (2.2) [BSD-3-Clause] +- Jackson-annotations (2.13.0) [Apache-2.0] +- Jackson-core (2.13.0) [Apache-2.0] +- jackson-databind (2.13.0) [Apache-2.0] +- jackson-databind (2.13.3) [Apache-2.0] +- jadler-all (1.3.1) [MIT, Apache-2.0] +- jadler-core (1.3.1) [MIT, Apache-2.0] +- javax.inject (1) [Apache-2.0] +- jcommander (1.78) [Apache-2.0] +- JSON in Java (20090211) [JSON] +- json-unit (2.28.0) [Apache-2.0] +- json-unit (2.35.0) [Apache-2.0] +- json-unit-core (2.28.0) [Apache-2.0] +- json-unit-core (2.35.0) [Apache-2.0] +- JSONassert (1.2.3) [Apache-2.0] +- JUnit (4.12) [CPL-1.0] +- Mockito (4.6.1) [MIT, Apache-2.0] +- Mockito (4.1.0) [MIT, Apache-2.0] +- Objenesis (3.2) [MIT] +- Sardine WebDAV client (5.10) [Apache-2.0] +- Shazamcrest (0.11) [Apache-2.0] +- SLF4J API Module (2.0.0-alpha7) [MIT] +- SLF4J Simple Binding (2.0.0-alpha7) [MIT] +- SnakeYAML (1.21) [Apache-2.0, Multi-license: LGPL-2.1-or-later OR GPL-2.0-or-later OR EPL-1.0 OR BSD-3-Clause OR Apache-2.0] +- Spock Framework - Core Module (2.2-M1-groovy-4.0) [Apache-2.0] +- Spock Framework - Core Module (1.3-groovy-2.5) [Apache-2.0] +- Spring Beans (5.3.20) [Apache-2.0] +- Spring Beans (5.3.13) [Apache-2.0] +- Spring Commons Logging Bridge (5.3.13) [Apache-2.0] +- Spring Context (5.3.20) [Apache-2.0] +- Spring Core (5.3.20) [BSD-3-Clause, Apache-2.0] +- Spring Core (5.3.13) [BSD-3-Clause, Apache-2.0] +- Spring Retry (1.3.1) [Apache-2.0] +- Spring Web (5.3.20) [Apache-2.0] +- Spring Web (5.3.13) [Apache-2.0] +- testng (7.3.0) [Apache-2.0, AML] +- testng (7.6.0) [Apache-2.0] + +PART 2: LICENSES APPENDIX +Apache 2.0 +Creative commons Zero v1.0 Universal + +[END TABLE OF CONTENTS] +================================================================================ +PART 1: SUBCOMPONENTS +================================================================================ + +-------------------------------------------------------------------------------- +AOP alliance (1.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +public-domain + + +-------------------------------------------------------------------------------- +Apache Ant Core (1.10.3) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +/* + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "[]" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright [yyyy] [name of copyright owner] + * + * 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. + */ + +W3C� SOFTWARE NOTICE AND LICENSE +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license. By obtaining, using and/or copying this work, you (the licensee) agree +that you have read, understood, and will comply with the following terms and +conditions. + +Permission to copy, modify, and distribute this software and its documentation, +with or without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include the following on ALL copies of the +software and documentation or portions thereof, including modifications: + + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or terms + and conditions. If none exist, the W3C Software Short Notice should be + included (hypertext is preferred, text is permitted) within the body + of any redistributed or derivative code. + 3. Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from + which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE +NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT +THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY +PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or +publicity pertaining to the software without specific, written prior permission. +Title to copyright in this software and any associated documentation will at +all times remain with copyright holders. + +____________________________________ + +This formulation of W3C's notice and license became active on December 31 2002. +This version removes the copyright ownership notice such that this license can +be used with materials other than those owned by the W3C, reflects that ERCIM +is now a host of the W3C, includes references to this specific dated version of +the license, and removes the ambiguous grant of "use". Otherwise, this version +is the same as the previous version and is written so as to preserve the Free +Software Foundation's assessment of GPL compatibility and OSI's certification +under the Open Source Definition. Please see our Copyright FAQ for common +questions about using materials from our site, including specific terms and +conditions for packages like libwww, Amaya, and Jigsaw. Other questions about +this notice can be directed to site-policy@w3.org. + +Joseph Reagle + +This license came from: http://www.megginson.com/SAX/copying.html + However please note future versions of SAX may be covered + under http://saxproject.org/?selected=pd + +SAX2 is Free! + +I hereby abandon any property rights to SAX 2.0 (the Simple API for +XML), and release all of the SAX 2.0 source code, compiled code, and +documentation contained in this distribution into the Public Domain. +SAX comes with NO WARRANTY or guarantee of fitness for any +purpose. + +David Megginson, david@megginson.com +2000-05-05 + + + +-------------------------------------------------------------------------------- +Apache Ant Launcher (1.10.3) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +/* + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "[]" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright [yyyy] [name of copyright owner] + * + * 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. + */ + +W3C� SOFTWARE NOTICE AND LICENSE +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license. By obtaining, using and/or copying this work, you (the licensee) agree +that you have read, understood, and will comply with the following terms and +conditions. + +Permission to copy, modify, and distribute this software and its documentation, +with or without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include the following on ALL copies of the +software and documentation or portions thereof, including modifications: + + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or terms + and conditions. If none exist, the W3C Software Short Notice should be + included (hypertext is preferred, text is permitted) within the body + of any redistributed or derivative code. + 3. Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from + which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE +NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT +THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY +PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or +publicity pertaining to the software without specific, written prior permission. +Title to copyright in this software and any associated documentation will at +all times remain with copyright holders. + +____________________________________ + +This formulation of W3C's notice and license became active on December 31 2002. +This version removes the copyright ownership notice such that this license can +be used with materials other than those owned by the W3C, reflects that ERCIM +is now a host of the W3C, includes references to this specific dated version of +the license, and removes the ambiguous grant of "use". Otherwise, this version +is the same as the previous version and is written so as to preserve the Free +Software Foundation's assessment of GPL compatibility and OSI's certification +under the Open Source Definition. Please see our Copyright FAQ for common +questions about using materials from our site, including specific terms and +conditions for packages like libwww, Amaya, and Jigsaw. Other questions about +this notice can be directed to site-policy@w3.org. + +Joseph Reagle + +This license came from: http://www.megginson.com/SAX/copying.html + However please note future versions of SAX may be covered + under http://saxproject.org/?selected=pd + +SAX2 is Free! + +I hereby abandon any property rights to SAX 2.0 (the Simple API for +XML), and release all of the SAX 2.0 source code, compiled code, and +documentation contained in this distribution into the Public Domain. +SAX comes with NO WARRANTY or guarantee of fitness for any +purpose. + +David Megginson, david@megginson.com +2000-05-05 + + + +-------------------------------------------------------------------------------- +Apache Commons IO (2.11.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + + + +-------------------------------------------------------------------------------- +Apache Commons Lang (3.12.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Apache Commons Lang +Copyright 2001-2021 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). + + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + + +-------------------------------------------------------------------------------- +Apache Groovy (3.0.11) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2013 Terence Parr, Sam Harwell + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.7) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. The ASF licenses this file + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. The ASF licenses this file + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. The ASF licenses this file + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. The ASF licenses this file + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. The ASF licenses this file + +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. + + +-------------------------------------------------------------------------------- +Apache Groovy (2.5.4) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. The ASF licenses this file + +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. + + +-------------------------------------------------------------------------------- +Apache HttpClient (4.5.13) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + +Apache HttpClient +Copyright 1999-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). +__________________ +* Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + + +-------------------------------------------------------------------------------- +Apache HttpCore (4.4.15) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Apache HttpCore +Copyright 2005-2021 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). +_____________ + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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. + + +-------------------------------------------------------------------------------- +Byte Buddy (without dependencies) (1.12.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +BSD-3-Clause, Apache-2.0 + + +// ASM: a very small and fast Java bytecode manipulation framework +// Copyright (c) 2000-2011 INRIA, France Telecom +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// 1. Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// 3. Neither the name of the copyright holders nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +// THE POSSIBILITY OF SUCH DAMAGE. + + + * Copyright 2014 - Present Rafael Winterhalter + * + * 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. + + +-------------------------------------------------------------------------------- +Byte Buddy agent (1.12.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +-------------------------------------------------------------------------------- +cglib-nodep (3.3.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + + +-------------------------------------------------------------------------------- +EqualsVerifier | release normal jar (3.7.2) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2022, EqualsVerifier | release normal jar Contributors + +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. + + +-------------------------------------------------------------------------------- +EqualsVerifier | release normal jar (3.10) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2022, EqualsVerifier | release normal jar Contributors + +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. + + +-------------------------------------------------------------------------------- +gooddata-http-client (1.0.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +BSD-3-Clause + +Copyright (c) 2007-2016, GoodData . All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +gooddata-http-client (1.0.0+java7.fix1) +-------------------------------------------------------------------------------- + +* Declared Licenses * +BSD-3-Clause + +Copyright (c) 2007-2016, GoodData . All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +gooddata-rest-common (2.0.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +BSD-3-Clause + +Copyright (c) 2004-2017, GoodData . All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Gson (2.3.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2008 Google Inc. + +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. + + +-------------------------------------------------------------------------------- +Guava: Google Core Libraries for Java (17.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +Apache-2.0, CC0-1.0 + + + * Copyright (C) 2008 The Guava Authors + * + * 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. + */ + + + * Written by Doug Lea with assistance from members of JCP JSR-166 + * Expert Group and released to the public domain, as explained at + * http://creativecommons.org/publicdomain/zero/1.0/ + + +-------------------------------------------------------------------------------- +Hamcrest (2.2) +-------------------------------------------------------------------------------- + +* Declared Licenses * +BSD-3-Clause + +Copyright (c) 2022, Hamcrest Contributors . All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Hamcrest Core (2.2) +-------------------------------------------------------------------------------- + +* Declared Licenses * +BSD-3-Clause + +Copyright (c) 2022, Hamcrest Core Contributors . All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Jackson-annotations (2.13.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + + +-------------------------------------------------------------------------------- +Jackson-core (2.13.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + + +-------------------------------------------------------------------------------- +jackson-databind (2.13.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + + +-------------------------------------------------------------------------------- +jackson-databind (2.13.3) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + + +-------------------------------------------------------------------------------- +jadler-all (1.3.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +MIT, Apache-2.0 + + +Copyright (c) 2012 - 2016 Jadler contributors +This program is made available under the terms of the MIT License. + + + ~ Copyright (c) 2007-2011 Sonatype, Inc. All rights reserved. + ~ + ~ This program is licensed to you under the Apache License Version 2.0, + ~ and you may not use this file except in compliance with the Apache License Version 2.0. + ~ You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. + ~ + ~ Unless required by applicable law or agreed to in writing, + ~ software distributed under the Apache License Version 2.0 is distributed on an + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. + --> + + +-------------------------------------------------------------------------------- +jadler-core (1.3.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +MIT, Apache-2.0 + + +Copyright (c) 2012 - 2016 Jadler contributors +This program is made available under the terms of the MIT License. + + + ~ Copyright (c) 2007-2011 Sonatype, Inc. All rights reserved. + ~ + ~ This program is licensed to you under the Apache License Version 2.0, + ~ and you may not use this file except in compliance with the Apache License Version 2.0. + ~ You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. + ~ + ~ Unless required by applicable law or agreed to in writing, + ~ software distributed under the Apache License Version 2.0 is distributed on an + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. + + +-------------------------------------------------------------------------------- +javax.inject (1) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2009 The JSR-330 Expert Group + +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. + + +-------------------------------------------------------------------------------- +jcommander (1.78) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2010 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +JSON in Java (20090211) +-------------------------------------------------------------------------------- + +* Declared Licenses * +JSON + +Copyright (c) 2002 JSON.org +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The Software shall be used for Good, not Evil. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +json-unit (2.28.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2009-2019 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +json-unit (2.35.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2009-2019 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +json-unit-core (2.28.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2009-2019 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +json-unit-core (2.35.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2009-2019 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +JSONassert (1.2.3) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2007-2011 Sonatype, Inc. All rights reserved. + +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. + + +-------------------------------------------------------------------------------- +JUnit (4.12) +-------------------------------------------------------------------------------- + +* Declared Licenses * +CPL-1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. +DEFINITIONS +"Contribution" means: + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. +"Program" means the Contributions distributed in accordance with this Agreement. +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. 2. +GRANT OF RIGHTS + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. 3. +REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + a) it complies with the terms and conditions of this Agreement; and + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: + a) it must be made available under this Agreement; and + b) a copy of this Agreement must be included with each copy of the Program. + Contributors may not remove or alter any copyright notices contained within the Program. + Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. 4. +COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. 5. +NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. 6. +DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. +GENERAL +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. + + +-------------------------------------------------------------------------------- +Mockito (4.6.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +MIT, Apache-2.0 + + +The MIT License + +Copyright (c) 2007 Mockito contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +Copyright 2022, Mockito Contributors + +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. + + +-------------------------------------------------------------------------------- +Mockito (4.1.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +MIT, Apache-2.0 + + +The MIT License + +Copyright (c) 2007 Mockito contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +Copyright 2022, Mockito Contributors + +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. + + +-------------------------------------------------------------------------------- +Objenesis (3.2) +-------------------------------------------------------------------------------- + +* Declared Licenses * +MIT + +Copyright (c) 2022, Objenesis Contributors +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Sardine WebDAV client (5.10) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2009-2011 Jon Stevens et al. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with + +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. + + +-------------------------------------------------------------------------------- +Shazamcrest (0.11) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2011 Google Inc. + +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. + + +-------------------------------------------------------------------------------- +SLF4J API Module (2.0.0-alpha7) +-------------------------------------------------------------------------------- + +* Declared Licenses * +MIT + +Copyright (c) 2004-2017 QOS.ch + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +SLF4J Simple Binding (2.0.0-alpha7) +-------------------------------------------------------------------------------- + +* Declared Licenses * +MIT + +Copyright (c) 2004-2022 QOS.ch Sarl (Switzerland) +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +SnakeYAML (1.21) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +Apache-2.0, Multi-license: LGPL-2.1-or-later OR GPL-2.0-or-later OR EPL-1.0 OR BSD-3-Clause OR Apache-2.0 + + + * Copyright (c) 2008, http://www.snakeyaml.org + * + * 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. + + +// Copyright 2003-2010 Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland +// www.source-code.biz, www.inventec.ch/chdh +// +// This module is multi-licensed and may be used under the terms +// of any of the following licenses: +// +// EPL, Eclipse Public License, V1.0 or later, http://www.eclipse.org/legal +// LGPL, GNU Lesser General Public License, V2.1 or later, http://www.gnu.org/licenses/lgpl.html +// GPL, GNU General Public License, V2 or later, http://www.gnu.org/licenses/gpl.html +// AL, Apache License, V2.0 or later, http://www.apache.org/licenses +// BSD, BSD License, http://www.opensource.org/licenses/bsd-license.php +// +// Please contact the author if you need another license. +// This module is provided "as is", without warranties of any kind. + +package org.yaml.snakeyaml.external.biz.base64Coder; + +/** + * A Base64 encoder/decoder. + * + *

+ * This class is used to encode and decode data in Base64 format as described in + * RFC 1521. + * + *

+ * Project home page: www. + * source-code.biz/base64coder/java
+ * Author: Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland
+ * Multi-licensed: EPL / LGPL / GPL / AL / BSD. + + +-------------------------------------------------------------------------------- +Spock Framework - Core Module (2.2-M1-groovy-4.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2012 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spock Framework - Core Module (1.3-groovy-2.5) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2012 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spring Beans (5.3.20) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2002-2021 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spring Beans (5.3.13) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2002-2021 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spring Commons Logging Bridge (5.3.13) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright ownership. + +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. + + +-------------------------------------------------------------------------------- +Spring Context (5.3.20) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2002-2019 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spring Core (5.3.20) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +BSD-3-Clause, Apache-2.0 + + +// ASM: a very small and fast Java bytecode manipulation framework +// Copyright (c) 2000-2011 INRIA, France Telecom +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// 1. Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// 3. Neither the name of the copyright holders nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +// THE POSSIBILITY OF SUCH DAMAGE. + + + * Copyright 2002-2018 the original author or authors. + * + * 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 + * + * https://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. + + +-------------------------------------------------------------------------------- +Spring Core (5.3.13) +-------------------------------------------------------------------------------- + +* Declared Licenses * + + +* Other Licenses * +BSD-3-Clause, Apache-2.0 + + +// ASM: a very small and fast Java bytecode manipulation framework +// Copyright (c) 2000-2011 INRIA, France Telecom +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// 1. Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// 3. Neither the name of the copyright holders nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +// THE POSSIBILITY OF SUCH DAMAGE. + + + * Copyright 2002-2018 the original author or authors. + * + * 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 + * + * https://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. + + +-------------------------------------------------------------------------------- +Spring Retry (1.3.1) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2006-2007 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spring Web (5.3.20) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2002-2021 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +Spring Web (5.3.13) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2002-2021 the original author or authors. + +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. + + +-------------------------------------------------------------------------------- +testng (7.3.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + +Copyright 2022, testng Contributors + +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. + + +* Other Licenses * +AML + + +Copyright: Copyright (c) 2006 by Apple Computer, Inc., All Rights Reserved. +IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. +In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated. +The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. +IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +testng (7.6.0) +-------------------------------------------------------------------------------- + +* Declared Licenses * +Apache-2.0 + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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 + + https://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. + + +================================================================================ +PART 2: LICENSES APPENDIX +================================================================================ + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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 + + https://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. +================================================================================ + +Creative Commons Legal Code + +CC0 1.0 Universal + +CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). +Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. +For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. + 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: + i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); + iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and + vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. + 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. + 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. + 4. Limitations and Disclaimers. + a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. + d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. + +-------------------------------------------------------------------------------- +-------------------------------------------------------------------------------- + +Report Generated by FOSSA on 2022-6-9 From 07f1c40d73110c47a2d96f64f48ac869dd0efb29 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Fri, 29 Jul 2022 12:32:04 +0200 Subject: [PATCH 100/155] Current year update in the LICENSE.txt --- LICENSE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.txt b/LICENSE.txt index 1c9ca669e..c73939064 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ GoodData Java SDK BSD License -Copyright (c) 2014-2021, GoodData Corporation +Copyright (c) 2014-2022, GoodData Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: From 588c1f583b3f9d402e22d026d36736a25f267fb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Sep 2022 09:27:08 +0000 Subject: [PATCH 101/155] Bump mockito-core from 4.6.1 to 4.8.0 Bumps [mockito-core](https://github.com/mockito/mockito) from 4.6.1 to 4.8.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.6.1...v4.8.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f834de48..9ba389ae2 100644 --- a/pom.xml +++ b/pom.xml @@ -342,7 +342,7 @@ org.mockito mockito-core - 4.6.1 + 4.8.0 test From 19f421e669c3a5b6d7291a368b80f0c034b97ed4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Sep 2022 09:09:22 +0000 Subject: [PATCH 102/155] Bump slf4j.version from 1.7.36 to 2.0.3 Bumps `slf4j.version` from 1.7.36 to 2.0.3. Updates `slf4j-api` from 1.7.36 to 2.0.3 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.3) Updates `slf4j-simple` from 1.7.36 to 2.0.3 - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.3) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-major - dependency-name: org.slf4j:slf4j-simple dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f834de48..478673954 100644 --- a/pom.xml +++ b/pom.xml @@ -50,7 +50,7 @@ 4.5.13 4.4.15 2.13.3 - 1.7.36 + 2.0.3 5.3.22 1.3.1 2.35.0 From 3e4d80a9234ef899944c41aa80c20837a50b3ba2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 09:11:45 +0000 Subject: [PATCH 103/155] Bump json-unit.version from 2.35.0 to 2.36.0 Bumps `json-unit.version` from 2.35.0 to 2.36.0. Updates `json-unit` from 2.35.0 to 2.36.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.35.0...json-unit-parent-2.36.0) Updates `json-unit-core` from 2.35.0 to 2.36.0 - [Release notes](https://github.com/lukas-krecan/JsonUnit/releases) - [Commits](https://github.com/lukas-krecan/JsonUnit/compare/json-unit-parent-2.35.0...json-unit-parent-2.36.0) --- updated-dependencies: - dependency-name: net.javacrumbs.json-unit:json-unit dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: net.javacrumbs.json-unit:json-unit-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f834de48..23b7af804 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 1.7.36 5.3.22 1.3.1 - 2.35.0 + 2.36.0 2.22.2 2.22.2 From 3c0d26314b37a1bab905770acce50846ea5c1605 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 09:13:27 +0000 Subject: [PATCH 104/155] Bump gmavenplus-plugin from 1.13.1 to 2.0.0 Bumps [gmavenplus-plugin](https://github.com/groovy/GMavenPlus) from 1.13.1 to 2.0.0. - [Release notes](https://github.com/groovy/GMavenPlus/releases) - [Commits](https://github.com/groovy/GMavenPlus/compare/1.13.1...2.0.0) --- updated-dependencies: - dependency-name: org.codehaus.gmavenplus:gmavenplus-plugin dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f834de48..5b33a4314 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ org.codehaus.gmavenplus gmavenplus-plugin - 1.13.1 + 2.0.0 From 9040399c39791e2a0ff3f49b82e2e8ebdf7a54f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 08:20:36 +0000 Subject: [PATCH 105/155] Bump jackson.version from 2.13.3 to 2.13.4 Bumps `jackson.version` from 2.13.3 to 2.13.4. Updates `jackson-core` from 2.13.3 to 2.13.4 - [Release notes](https://github.com/FasterXML/jackson-core/releases) - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.3...jackson-core-2.13.4) Updates `jackson-databind` from 2.13.3 to 2.13.4 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Updates `jackson-annotations` from 2.13.3 to 2.13.4 - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 81fd6a5e3..708791ec1 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 4.5.13 4.4.15 - 2.13.3 + 2.13.4 2.0.3 5.3.22 1.3.1 From 46f8740d14e19596b62b25b9af7093a6e17422e2 Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 11 Oct 2022 11:46:57 +0200 Subject: [PATCH 106/155] Fix EqualsVerifier tests New version of the lib requires to handle BIGDECIMAL_EQUALITY explicitly. --- .../model/executeafm/afm/filter/ComparisonConditionTest.groovy | 3 ++- .../sdk/model/executeafm/afm/filter/RangeConditionTest.groovy | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy index 1699d765b..9ffc7ea11 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy @@ -6,6 +6,7 @@ package com.gooddata.sdk.model.executeafm.afm.filter import nl.jqno.equalsverifier.EqualsVerifier +import nl.jqno.equalsverifier.Warning import org.apache.commons.lang3.SerializationUtils import spock.lang.Specification import spock.lang.Unroll @@ -124,6 +125,6 @@ class ComparisonConditionTest extends Specification { def "should verify equals"() { expect: - EqualsVerifier.forClass(ComparisonCondition).usingGetClass().verify() + EqualsVerifier.forClass(ComparisonCondition).usingGetClass().suppress(Warning.BIGDECIMAL_EQUALITY).verify() } } diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy index 27d45d7e6..8fdb47b95 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy @@ -6,6 +6,7 @@ package com.gooddata.sdk.model.executeafm.afm.filter import nl.jqno.equalsverifier.EqualsVerifier +import nl.jqno.equalsverifier.Warning import org.apache.commons.lang3.SerializationUtils import spock.lang.Specification import spock.lang.Unroll @@ -112,6 +113,6 @@ class RangeConditionTest extends Specification { def "should verify equals"() { expect: - EqualsVerifier.forClass(RangeCondition).usingGetClass().verify() + EqualsVerifier.forClass(RangeCondition).usingGetClass().suppress(Warning.BIGDECIMAL_EQUALITY).verify() } } From 46e133e356508a799d78a40df28e059ab2ba588e Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 11 Oct 2022 11:56:44 +0200 Subject: [PATCH 107/155] Bump mvn plugin versions These versions have TestNG compatibility fixed. --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 73b4f78a2..9a899a7aa 100644 --- a/pom.xml +++ b/pom.xml @@ -54,8 +54,8 @@ 5.3.22 1.3.1 2.36.0 - 2.22.2 - 2.22.2 + 3.0.0-M7 + 3.0.0-M7 From f2a3654615d5494b91bb8c96920b82ed7c2d840c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 11:25:37 +0000 Subject: [PATCH 108/155] Bump spring.version from 5.3.22 to 5.3.23 Bumps `spring.version` from 5.3.22 to 5.3.23. Updates `spring-core` from 5.3.22 to 5.3.23 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.22...v5.3.23) Updates `spring-beans` from 5.3.22 to 5.3.23 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.22...v5.3.23) Updates `spring-web` from 5.3.22 to 5.3.23 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.22...v5.3.23) Updates `spring-context` from 5.3.22 to 5.3.23 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.22...v5.3.23) --- updated-dependencies: - dependency-name: org.springframework:spring-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-beans dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-web dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9a899a7aa..b6651b0da 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 4.4.15 2.13.4 2.0.3 - 5.3.22 + 5.3.23 1.3.1 2.36.0 3.0.0-M7 From 96be7a80c873bb324fcd880751d394b00ec9c645 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 09:08:12 +0000 Subject: [PATCH 109/155] Bump spring-retry from 1.3.3 to 1.3.4 Bumps [spring-retry](https://github.com/spring-projects/spring-retry) from 1.3.3 to 1.3.4. - [Release notes](https://github.com/spring-projects/spring-retry/releases) - [Commits](https://github.com/spring-projects/spring-retry/compare/v1.3.3...v1.3.4) --- updated-dependencies: - dependency-name: org.springframework.retry:spring-retry dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- gooddata-java/pom.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 02df0eeff..382ad3241 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -64,7 +64,7 @@ org.springframework.retry spring-retry - 1.3.3 + 1.3.4 true diff --git a/pom.xml b/pom.xml index 0b147dfe1..6031d8503 100644 --- a/pom.xml +++ b/pom.xml @@ -297,7 +297,7 @@ org.springframework.retry spring-retry - 1.3.3 + 1.3.4 true From 6cf31f61074daef08620653fa8d99e4cbd0f676a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kouba?= Date: Tue, 29 Nov 2022 16:20:16 +0100 Subject: [PATCH 110/155] INFRA-176: Add sonar properties - configuration for sonarcloud --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 6031d8503..03808c327 100644 --- a/pom.xml +++ b/pom.xml @@ -56,6 +56,8 @@ 2.36.0 3.0.0-M7 3.0.0-M7 + gooddata-github + https://sonarcloud.io From 073e34acb83adddb6d24677f134c072f8f678c3b Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Tue, 3 Jan 2023 22:15:59 +0100 Subject: [PATCH 111/155] Update year in the copyright header --- .../src/main/java/com/gooddata/sdk/model/account/Account.java | 2 +- .../src/main/java/com/gooddata/sdk/model/account/Accounts.java | 2 +- .../com/gooddata/sdk/model/account/AccountsDeserializer.java | 2 +- .../java/com/gooddata/sdk/model/account/SeparatorSettings.java | 2 +- .../main/java/com/gooddata/sdk/model/auditevent/AccessLog.java | 2 +- .../main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java | 2 +- .../gooddata/sdk/model/auditevent/AccessLogsDeserializer.java | 2 +- .../com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java | 2 +- .../main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AuditEvents.java | 2 +- .../gooddata/sdk/model/auditevent/AuditEventsDeserializer.java | 2 +- .../gooddata/sdk/model/auditevent/AuditEventsSerializer.java | 2 +- .../java/com/gooddata/sdk/model/connector/ConnectorType.java | 2 +- .../main/java/com/gooddata/sdk/model/connector/Integration.java | 2 +- .../gooddata/sdk/model/connector/IntegrationProcessStatus.java | 2 +- .../java/com/gooddata/sdk/model/connector/ProcessExecution.java | 2 +- .../java/com/gooddata/sdk/model/connector/ProcessStatus.java | 2 +- .../src/main/java/com/gooddata/sdk/model/connector/Reload.java | 2 +- .../main/java/com/gooddata/sdk/model/connector/Settings.java | 2 +- .../src/main/java/com/gooddata/sdk/model/connector/Status.java | 2 +- .../gooddata/sdk/model/connector/Zendesk4ProcessExecution.java | 2 +- .../java/com/gooddata/sdk/model/connector/Zendesk4Settings.java | 2 +- .../main/java/com/gooddata/sdk/model/dataload/OutputStage.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/AsyncTask.java | 2 +- .../gooddata/sdk/model/dataload/processes/DataloadProcess.java | 2 +- .../sdk/model/dataload/processes/DataloadProcesses.java | 2 +- .../gooddata/sdk/model/dataload/processes/ProcessExecution.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionDetail.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionTask.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/ProcessType.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/Schedule.java | 2 +- .../sdk/model/dataload/processes/ScheduleExecution.java | 2 +- .../gooddata/sdk/model/dataload/processes/ScheduleState.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/Schedules.java | 2 +- .../sdk/model/dataload/processes/SchedulesDeserializer.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetManifest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetManifests.java | 2 +- .../gooddata/sdk/model/dataset/DatasetNotFoundException.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/EtlModeType.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/LookupMode.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/Pull.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/PullTask.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/TaskState.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/Upload.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/UploadMode.java | 2 +- .../java/com/gooddata/sdk/model/dataset/UploadStatistics.java | 2 +- .../src/main/java/com/gooddata/sdk/model/dataset/Uploads.java | 2 +- .../main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java | 2 +- .../main/java/com/gooddata/sdk/model/executeafm/Execution.java | 2 +- .../gooddata/sdk/model/executeafm/IdentifierObjQualifier.java | 2 +- .../gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/ObjQualifier.java | 2 +- .../main/java/com/gooddata/sdk/model/executeafm/Qualifier.java | 2 +- .../main/java/com/gooddata/sdk/model/executeafm/ResultPage.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java | 2 +- .../gooddata/sdk/model/executeafm/VisualizationExecution.java | 2 +- .../main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java | 2 +- .../sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java | 2 +- .../com/gooddata/sdk/model/executeafm/afm/AttributeItem.java | 2 +- .../sdk/model/executeafm/afm/DerivedMeasureDefinition.java | 2 +- .../gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java | 2 +- .../gooddata/sdk/model/executeafm/afm/MeasureDefinition.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java | 2 +- .../com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java | 2 +- .../sdk/model/executeafm/afm/ObjIdentifierUtilities.java | 2 +- .../sdk/model/executeafm/afm/ObjQualifierConverter.java | 2 +- .../sdk/model/executeafm/afm/OverPeriodDateAttribute.java | 2 +- .../sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java | 2 +- .../gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java | 2 +- .../model/executeafm/afm/PreviousPeriodMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/SimpleMeasureDefinition.java | 2 +- .../sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/AttributeFilter.java | 2 +- .../model/executeafm/afm/filter/AttributeFilterElements.java | 2 +- .../sdk/model/executeafm/afm/filter/ComparisonCondition.java | 2 +- .../executeafm/afm/filter/ComparisonConditionOperator.java | 2 +- .../sdk/model/executeafm/afm/filter/CompatibilityFilter.java | 2 +- .../gooddata/sdk/model/executeafm/afm/filter/DateFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/ExpressionFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/ExtendedFilter.java | 2 +- .../gooddata/sdk/model/executeafm/afm/filter/FilterItem.java | 2 +- .../sdk/model/executeafm/afm/filter/MeasureValueFilter.java | 2 +- .../executeafm/afm/filter/MeasureValueFilterCondition.java | 2 +- .../model/executeafm/afm/filter/NegativeAttributeFilter.java | 2 +- .../model/executeafm/afm/filter/PositiveAttributeFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/RangeCondition.java | 2 +- .../sdk/model/executeafm/afm/filter/RangeConditionOperator.java | 2 +- .../gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java | 2 +- .../sdk/model/executeafm/afm/filter/RankingFilterOperator.java | 2 +- .../sdk/model/executeafm/afm/filter/RelativeDateFilter.java | 2 +- .../executeafm/afm/filter/SimpleAttributeFilterElements.java | 2 +- .../model/executeafm/afm/filter/UriAttributeFilterElements.java | 2 +- .../executeafm/afm/filter/ValueAttributeFilterElements.java | 2 +- .../gooddata/sdk/model/executeafm/response/AttributeHeader.java | 2 +- .../sdk/model/executeafm/response/AttributeInHeader.java | 2 +- .../sdk/model/executeafm/response/ExecutionResponse.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/response/Header.java | 2 +- .../sdk/model/executeafm/response/MeasureGroupHeader.java | 2 +- .../sdk/model/executeafm/response/MeasureHeaderItem.java | 2 +- .../gooddata/sdk/model/executeafm/response/ResultDimension.java | 2 +- .../gooddata/sdk/model/executeafm/response/TotalHeaderItem.java | 2 +- .../sdk/model/executeafm/result/AttributeHeaderItem.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/result/Data.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/result/DataList.java | 2 +- .../com/gooddata/sdk/model/executeafm/result/DataValue.java | 2 +- .../gooddata/sdk/model/executeafm/result/ExecutionResult.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/result/Paging.java | 2 +- .../gooddata/sdk/model/executeafm/result/ResultHeaderItem.java | 2 +- .../sdk/model/executeafm/result/ResultMeasureHeaderItem.java | 2 +- .../sdk/model/executeafm/result/ResultTotalHeaderItem.java | 2 +- .../java/com/gooddata/sdk/model/executeafm/result/Warning.java | 2 +- .../sdk/model/executeafm/resultspec/AttributeLocatorItem.java | 2 +- .../model/executeafm/resultspec/AttributeSortAggregation.java | 2 +- .../sdk/model/executeafm/resultspec/AttributeSortItem.java | 2 +- .../com/gooddata/sdk/model/executeafm/resultspec/Dimension.java | 2 +- .../com/gooddata/sdk/model/executeafm/resultspec/Direction.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/LocatorItem.java | 2 +- .../sdk/model/executeafm/resultspec/MeasureLocatorItem.java | 2 +- .../sdk/model/executeafm/resultspec/MeasureSortItem.java | 2 +- .../gooddata/sdk/model/executeafm/resultspec/ResultSpec.java | 2 +- .../com/gooddata/sdk/model/executeafm/resultspec/SortItem.java | 2 +- .../com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java | 2 +- .../sdk/model/executeafm/resultspec/TotalLocatorItem.java | 2 +- .../main/java/com/gooddata/sdk/model/export/ClientExport.java | 2 +- .../main/java/com/gooddata/sdk/model/export/ExecuteReport.java | 2 +- .../com/gooddata/sdk/model/export/ExecuteReportDefinition.java | 2 +- .../main/java/com/gooddata/sdk/model/export/ExportFormat.java | 2 +- .../main/java/com/gooddata/sdk/model/export/ReportRequest.java | 2 +- .../java/com/gooddata/sdk/model/featureflag/FeatureFlag.java | 2 +- .../java/com/gooddata/sdk/model/featureflag/FeatureFlags.java | 2 +- .../com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java | 2 +- .../com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java | 2 +- .../src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java | 2 +- .../com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java | 2 +- .../com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java | 2 +- .../com/gooddata/sdk/model/hierarchicalconfig/SourceType.java | 2 +- .../src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java | 2 +- .../src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java | 2 +- .../main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/AbstractObj.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Attachment.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Attribute.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeDisplayForm.java | 2 +- .../main/java/com/gooddata/sdk/model/md/AttributeElement.java | 2 +- .../main/java/com/gooddata/sdk/model/md/AttributeElements.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/AttributeSort.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/BulkGet.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Column.java | 2 +- .../java/com/gooddata/sdk/model/md/DashboardAttachment.java | 2 +- .../main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Dataset.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Dimension.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/DisplayForm.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Entry.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Expression.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Fact.java | 2 +- .../main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java | 2 +- .../main/java/com/gooddata/sdk/model/md/IdentifierToUri.java | 2 +- .../main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/InUseMany.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Key.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/MaqlAst.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Meta.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Metric.java | 2 +- .../main/java/com/gooddata/sdk/model/md/NestedAttribute.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Obj.java | 2 +- .../main/java/com/gooddata/sdk/model/md/ProjectDashboard.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Query.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Queryable.java | 2 +- .../main/java/com/gooddata/sdk/model/md/ReportAttachment.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Restriction.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java | 2 +- .../main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Service.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Table.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Updatable.java | 2 +- .../main/java/com/gooddata/sdk/model/md/UriToIdentifier.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/Usage.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/UseMany.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java | 2 +- .../gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java | 2 +- .../main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java | 2 +- .../sdk/model/md/dashboard/filter/AttributeFilterReference.java | 2 +- .../sdk/model/md/dashboard/filter/DashboardAttributeFilter.java | 2 +- .../sdk/model/md/dashboard/filter/DashboardDateFilter.java | 2 +- .../gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java | 2 +- .../sdk/model/md/dashboard/filter/DashboardFilterContext.java | 2 +- .../sdk/model/md/dashboard/filter/DateFilterReference.java | 2 +- .../gooddata/sdk/model/md/dashboard/filter/FilterReference.java | 2 +- .../com/gooddata/sdk/model/md/maintenance/ExportProject.java | 2 +- .../sdk/model/md/maintenance/ExportProjectArtifact.java | 2 +- .../gooddata/sdk/model/md/maintenance/ExportProjectToken.java | 2 +- .../gooddata/sdk/model/md/maintenance/PartialMdArtifact.java | 2 +- .../com/gooddata/sdk/model/md/maintenance/PartialMdExport.java | 2 +- .../gooddata/sdk/model/md/maintenance/PartialMdExportToken.java | 2 +- .../java/com/gooddata/sdk/model/md/report/AttributeInGrid.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/report/Filter.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/report/Grid.java | 2 +- .../main/java/com/gooddata/sdk/model/md/report/GridElement.java | 2 +- .../gooddata/sdk/model/md/report/GridElementDeserializer.java | 2 +- .../com/gooddata/sdk/model/md/report/GridElementSerializer.java | 2 +- .../sdk/model/md/report/GridReportDefinitionContent.java | 2 +- .../java/com/gooddata/sdk/model/md/report/MetricElement.java | 2 +- .../main/java/com/gooddata/sdk/model/md/report/MetricGroup.java | 2 +- .../sdk/model/md/report/OneNumberReportDefinitionContent.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/report/Report.java | 2 +- .../java/com/gooddata/sdk/model/md/report/ReportDefinition.java | 2 +- .../gooddata/sdk/model/md/report/ReportDefinitionContent.java | 2 +- .../src/main/java/com/gooddata/sdk/model/md/report/Total.java | 2 +- .../java/com/gooddata/sdk/model/md/visualization/Bucket.java | 2 +- .../com/gooddata/sdk/model/md/visualization/BucketItem.java | 2 +- .../com/gooddata/sdk/model/md/visualization/CollectionType.java | 2 +- .../java/com/gooddata/sdk/model/md/visualization/Measure.java | 2 +- .../sdk/model/md/visualization/VOPopMeasureDefinition.java | 2 +- .../sdk/model/md/visualization/VOSimpleMeasureDefinition.java | 2 +- .../sdk/model/md/visualization/VisualizationAttribute.java | 2 +- .../gooddata/sdk/model/md/visualization/VisualizationClass.java | 2 +- .../sdk/model/md/visualization/VisualizationConverter.java | 2 +- .../sdk/model/md/visualization/VisualizationObject.java | 2 +- .../gooddata/sdk/model/md/visualization/VisualizationType.java | 2 +- .../main/java/com/gooddata/sdk/model/notification/Channel.java | 2 +- .../java/com/gooddata/sdk/model/notification/Configuration.java | 2 +- .../com/gooddata/sdk/model/notification/EmailConfiguration.java | 2 +- .../com/gooddata/sdk/model/notification/MessageTemplate.java | 2 +- .../java/com/gooddata/sdk/model/notification/ProjectEvent.java | 2 +- .../java/com/gooddata/sdk/model/notification/Subscription.java | 2 +- .../java/com/gooddata/sdk/model/notification/TimerEvent.java | 2 +- .../main/java/com/gooddata/sdk/model/notification/Trigger.java | 2 +- .../com/gooddata/sdk/model/notification/TriggerCondition.java | 2 +- .../java/com/gooddata/sdk/model/project/CreatedInvitations.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Environment.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Invitation.java | 2 +- .../main/java/com/gooddata/sdk/model/project/Invitations.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Project.java | 2 +- .../main/java/com/gooddata/sdk/model/project/ProjectDriver.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectEnvironment.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectTemplate.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectTemplates.java | 2 +- .../gooddata/sdk/model/project/ProjectUsersUpdateResult.java | 2 +- .../com/gooddata/sdk/model/project/ProjectValidationResult.java | 2 +- .../model/project/ProjectValidationResultGdcTimeElParam.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationResultItem.java | 2 +- .../sdk/model/project/ProjectValidationResultObjectParam.java | 2 +- .../sdk/model/project/ProjectValidationResultParam.java | 2 +- .../sdk/model/project/ProjectValidationResultSliElParam.java | 2 +- .../sdk/model/project/ProjectValidationResultStringParam.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationResults.java | 2 +- .../com/gooddata/sdk/model/project/ProjectValidationType.java | 2 +- .../java/com/gooddata/sdk/model/project/ProjectValidations.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Projects.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Role.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Roles.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/User.java | 2 +- .../src/main/java/com/gooddata/sdk/model/project/Users.java | 2 +- .../java/com/gooddata/sdk/model/project/UsersDeserializer.java | 2 +- .../java/com/gooddata/sdk/model/project/UsersSerializer.java | 2 +- .../java/com/gooddata/sdk/model/project/model/DiffRequest.java | 2 +- .../main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java | 2 +- .../java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java | 2 +- .../java/com/gooddata/sdk/model/project/model/ModelDiff.java | 2 +- .../java/com/gooddata/sdk/model/projecttemplate/Template.java | 2 +- .../java/com/gooddata/sdk/model/projecttemplate/Templates.java | 2 +- .../main/java/com/gooddata/sdk/model/util/TagsDeserializer.java | 2 +- .../main/java/com/gooddata/sdk/model/util/TagsSerializer.java | 2 +- .../src/main/java/com/gooddata/sdk/model/util/UriHelper.java | 2 +- .../main/java/com/gooddata/sdk/model/warehouse/Warehouse.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java | 2 +- .../sdk/model/warehouse/WarehouseSchemasDeserializer.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseTask.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseUser.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseUserRole.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java | 2 +- .../sdk/model/warehouse/WarehouseUsersDeserializer.java | 2 +- .../gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java | 2 +- .../main/java/com/gooddata/sdk/model/warehouse/Warehouses.java | 2 +- .../gooddata/sdk/model/warehouse/WarehousesDeserializer.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehousesSerializer.java | 2 +- .../com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/ExecutionTest.groovy | 2 +- .../sdk/model/executeafm/IdentifierObjQualifierTest.groovy | 2 +- .../sdk/model/executeafm/LocalIdentifierQualifierTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/QualifierTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/ResultPageTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy | 2 +- .../sdk/model/executeafm/VisualizationExecutionTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy | 2 +- .../model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy | 2 +- .../sdk/model/executeafm/afm/MeasureDefinitionTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy | 2 +- .../sdk/model/executeafm/afm/NativeTotalItemTest.groovy | 2 +- .../sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy | 2 +- .../sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy | 2 +- .../model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy | 2 +- .../sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy | 2 +- .../model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy | 2 +- .../executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy | 2 +- .../sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy | 2 +- .../model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy | 2 +- .../model/executeafm/afm/filter/ComparisonConditionTest.groovy | 2 +- .../model/executeafm/afm/filter/CompatibilityFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/FilterItemTest.groovy | 2 +- .../afm/filter/MeasureValueFilterConditionTest.groovy | 2 +- .../model/executeafm/afm/filter/MeasureValueFilterTest.groovy | 2 +- .../executeafm/afm/filter/NegativeAttributeFilterTest.groovy | 2 +- .../executeafm/afm/filter/PositiveAttributeFilterTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/RangeConditionTest.groovy | 2 +- .../executeafm/afm/filter/RankingFilterOperatorTest.groovy | 2 +- .../sdk/model/executeafm/afm/filter/RankingFilterTest.groovy | 2 +- .../model/executeafm/afm/filter/RelativeDateFilterTest.groovy | 2 +- .../executeafm/afm/filter/UriAttributeFilterElementsTest.groovy | 2 +- .../afm/filter/ValueAttributeFilterElementsTest.groovy | 2 +- .../sdk/model/executeafm/response/AttributeHeaderTest.groovy | 2 +- .../sdk/model/executeafm/response/AttributeInHeaderTest.groovy | 2 +- .../sdk/model/executeafm/response/ExecutionResponseTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/response/HeaderTest.groovy | 2 +- .../sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy | 2 +- .../sdk/model/executeafm/response/MeasureHeaderItemTest.groovy | 2 +- .../sdk/model/executeafm/response/ResultDimensionTest.groovy | 2 +- .../sdk/model/executeafm/response/TotalHeaderItemTest.groovy | 2 +- .../sdk/model/executeafm/result/AttributeHeaderItemTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/result/DataListTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/result/DataTest.groovy | 2 +- .../gooddata/sdk/model/executeafm/result/DataValueTest.groovy | 2 +- .../sdk/model/executeafm/result/ExecutionResultTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/result/PagingTest.groovy | 2 +- .../sdk/model/executeafm/result/ResultHeaderItemTest.groovy | 2 +- .../model/executeafm/result/ResultMeasureHeaderItemTest.groovy | 2 +- .../model/executeafm/result/ResultTotalHeaderItemTest.groovy | 2 +- .../com/gooddata/sdk/model/executeafm/result/WarningTest.groovy | 2 +- .../model/executeafm/resultspec/AttributeLocatorItemTest.groovy | 2 +- .../model/executeafm/resultspec/AttributeSortItemTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/DimensionTest.groovy | 2 +- .../model/executeafm/resultspec/MeasureLocatorItemTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/ResultSpecTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/TotalItemTest.groovy | 2 +- .../sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy | 2 +- .../com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy | 2 +- .../test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy | 2 +- .../com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy | 2 +- .../sdk/model/md/dashboard/AnalyticalDashboardTest.groovy | 2 +- .../com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy | 2 +- .../md/dashboard/filter/AttributeFilterReferenceTest.groovy | 2 +- .../md/dashboard/filter/DashboardAttributeFilterTest.groovy | 2 +- .../model/md/dashboard/filter/DashboardDateFilterTest.groovy | 2 +- .../model/md/dashboard/filter/DashboardFilterContextTest.groovy | 2 +- .../model/md/dashboard/filter/DateFilterReferenceTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy | 2 +- .../com/gooddata/sdk/model/md/visualization/BucketTest.groovy | 2 +- .../com/gooddata/sdk/model/md/visualization/MeasureTest.groovy | 2 +- .../model/md/visualization/VisualizationAttributeTest.groovy | 2 +- .../sdk/model/md/visualization/VisualizationClassTest.groovy | 2 +- .../model/md/visualization/VisualizationConverterTest.groovy | 2 +- .../sdk/model/md/visualization/VisualizationObjectTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy | 2 +- .../groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy | 2 +- .../test/java/com/gooddata/sdk/model/account/AccountTest.java | 2 +- .../test/java/com/gooddata/sdk/model/account/AccountsTest.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AccessLogTest.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AuditEventTest.java | 2 +- .../java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java | 2 +- .../sdk/model/connector/IntegrationProcessStatusTest.java | 2 +- .../java/com/gooddata/sdk/model/connector/IntegrationTest.java | 2 +- .../com/gooddata/sdk/model/connector/ProcessExecutionTest.java | 2 +- .../com/gooddata/sdk/model/connector/ProcessStatusTest.java | 2 +- .../test/java/com/gooddata/sdk/model/connector/ReloadTest.java | 2 +- .../test/java/com/gooddata/sdk/model/connector/StatusTest.java | 2 +- .../sdk/model/connector/Zendesk4ProcessExecutionTest.java | 2 +- .../com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java | 2 +- .../java/com/gooddata/sdk/model/dataload/OutputStageTest.java | 2 +- .../sdk/model/dataload/processes/DataloadProcessTest.java | 2 +- .../sdk/model/dataload/processes/DataloadProcessesTest.java | 2 +- .../model/dataload/processes/ProcessExecutionDetailTest.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionTaskTest.java | 2 +- .../sdk/model/dataload/processes/ProcessExecutionTest.java | 2 +- .../sdk/model/dataload/processes/ScheduleExecutionTest.java | 2 +- .../com/gooddata/sdk/model/dataload/processes/ScheduleTest.java | 2 +- .../gooddata/sdk/model/dataload/processes/SchedulesTest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java | 2 +- .../com/gooddata/sdk/model/dataset/DatasetManifestTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/dataset/PullTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java | 2 +- .../com/gooddata/sdk/model/dataset/UploadStatisticsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/UploadTest.java | 2 +- .../java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java | 2 +- .../test/java/com/gooddata/sdk/model/dataset/UploadsTest.java | 2 +- .../java/com/gooddata/sdk/model/export/ClientExportTest.java | 2 +- .../gooddata/sdk/model/export/ExecuteReportDefinitionTest.java | 2 +- .../java/com/gooddata/sdk/model/export/ExecuteReportTest.java | 2 +- .../java/com/gooddata/sdk/model/export/ExportFormatTest.java | 2 +- .../com/gooddata/sdk/model/featureflag/FeatureFlagTest.java | 2 +- .../com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java | 2 +- .../gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java | 2 +- .../gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java | 2 +- .../test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java | 2 +- .../gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java | 2 +- .../gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java | 2 +- .../com/gooddata/sdk/model/md/AttributeDisplayFormTest.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeElementTest.java | 2 +- .../java/com/gooddata/sdk/model/md/AttributeElementsTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/AttributeSortTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/AttributeTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ColumnTest.java | 2 +- .../java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java | 2 +- .../java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/DatasetTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/DimensionTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/DisplayFormTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/EntryTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/FactTest.java | 2 +- .../java/com/gooddata/sdk/model/md/IdentifierToUriTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/KeyTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/MetaTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/MetricTest.java | 2 +- .../java/com/gooddata/sdk/model/md/NestedAttributeTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ObjTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ProjectDashboardTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/QueryTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ReportAttachmentTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/RestrictionTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java | 2 +- .../java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/ServiceTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/md/TableTest.java | 2 +- .../sdk/model/md/maintenance/ExportProjectArtifactTest.java | 2 +- .../gooddata/sdk/model/md/maintenance/ExportProjectTest.java | 2 +- .../sdk/model/md/maintenance/ExportProjectTokenTest.java | 2 +- .../sdk/model/md/maintenance/PartialMdArtifactTest.java | 2 +- .../gooddata/sdk/model/md/maintenance/PartialMdExportTest.java | 2 +- .../sdk/model/md/maintenance/PartialMdExportTokenTest.java | 2 +- .../com/gooddata/sdk/model/md/report/AttributeInGridTest.java | 2 +- .../sdk/model/md/report/GridElementDeserializerTest.java | 2 +- .../gooddata/sdk/model/md/report/GridElementSerializerTest.java | 2 +- .../sdk/model/md/report/GridReportDefinitionContentTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/report/GridTest.java | 2 +- .../com/gooddata/sdk/model/md/report/MetricElementTest.java | 2 +- .../model/md/report/OneNumberReportDefinitionContentTest.java | 2 +- .../sdk/model/md/report/ReportDefinitionContentTest.java | 2 +- .../com/gooddata/sdk/model/md/report/ReportDefinitionTest.java | 2 +- .../test/java/com/gooddata/sdk/model/md/report/ReportTest.java | 2 +- .../java/com/gooddata/sdk/model/notification/ChannelTest.java | 2 +- .../java/com/gooddata/sdk/model/notification/ConditionTest.java | 2 +- .../gooddata/sdk/model/notification/EmailConfigurationTest.java | 2 +- .../gooddata/sdk/model/notification/MessageTemplateTest.java | 2 +- .../com/gooddata/sdk/model/notification/ProjectEventTest.java | 2 +- .../com/gooddata/sdk/model/notification/SubscriptionTest.java | 2 +- .../com/gooddata/sdk/model/notification/TimerEventTest.java | 2 +- .../com/gooddata/sdk/model/project/CreatedInvitationsTest.java | 2 +- .../java/com/gooddata/sdk/model/project/InvitationsTest.java | 2 +- .../com/gooddata/sdk/model/project/ProjectTemplateTest.java | 2 +- .../com/gooddata/sdk/model/project/ProjectTemplatesTest.java | 2 +- .../test/java/com/gooddata/sdk/model/project/ProjectTest.java | 2 +- .../sdk/model/project/ProjectUsersUpdateResultTest.java | 2 +- .../project/ProjectValidationResultGdcTimeElParamTest.java | 2 +- .../sdk/model/project/ProjectValidationResultItemTest.java | 2 +- .../model/project/ProjectValidationResultObjectParamTest.java | 2 +- .../sdk/model/project/ProjectValidationResultParamTest.java | 2 +- .../model/project/ProjectValidationResultSliElParamTest.java | 2 +- .../model/project/ProjectValidationResultStringParamTest.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationResultTest.java | 2 +- .../sdk/model/project/ProjectValidationResultsTest.java | 2 +- .../gooddata/sdk/model/project/ProjectValidationTypeTest.java | 2 +- .../com/gooddata/sdk/model/project/ProjectValidationsTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/project/RoleTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/project/RolesTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/project/UserTest.java | 2 +- .../src/test/java/com/gooddata/sdk/model/project/UsersTest.java | 2 +- .../com/gooddata/sdk/model/project/model/DiffRequestTest.java | 2 +- .../com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java | 2 +- .../java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java | 2 +- .../com/gooddata/sdk/model/project/model/ModelDiffTest.java | 2 +- .../com/gooddata/sdk/model/projecttemplate/TemplateTest.java | 2 +- .../java/com/gooddata/sdk/model/util/TagsDeserializerTest.java | 2 +- .../java/com/gooddata/sdk/model/util/TagsSerializerTest.java | 2 +- .../test/java/com/gooddata/sdk/model/util/TagsTestClass.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehouseTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseUserTest.java | 2 +- .../com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java | 2 +- .../java/com/gooddata/sdk/model/warehouse/WarehousesTest.java | 2 +- .../main/java/com/gooddata/sdk/service/AbstractPollHandler.java | 2 +- .../java/com/gooddata/sdk/service/AbstractPollHandlerBase.java | 2 +- .../src/main/java/com/gooddata/sdk/service/AbstractService.java | 2 +- .../sdk/service/DeprecationWarningRequestInterceptor.java | 2 +- .../src/main/java/com/gooddata/sdk/service/FutureResult.java | 2 +- .../src/main/java/com/gooddata/sdk/service/GoodData.java | 2 +- .../main/java/com/gooddata/sdk/service/GoodDataEndpoint.java | 2 +- .../java/com/gooddata/sdk/service/GoodDataRestProvider.java | 2 +- .../main/java/com/gooddata/sdk/service/GoodDataServices.java | 2 +- .../main/java/com/gooddata/sdk/service/GoodDataSettings.java | 2 +- .../gooddata/sdk/service/HeaderSettingRequestInterceptor.java | 2 +- .../src/main/java/com/gooddata/sdk/service/PollHandler.java | 2 +- .../src/main/java/com/gooddata/sdk/service/PollResult.java | 2 +- .../java/com/gooddata/sdk/service/RequestIdInterceptor.java | 2 +- .../sdk/service/ResponseMissingRequestIdInterceptor.java | 2 +- .../main/java/com/gooddata/sdk/service/SimplePollHandler.java | 2 +- .../gooddata/sdk/service/account/AccountNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/account/AccountService.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventPageRequest.java | 2 +- .../com/gooddata/sdk/service/auditevent/AuditEventService.java | 2 +- .../sdk/service/auditevent/AuditEventsForbiddenException.java | 2 +- .../gooddata/sdk/service/auditevent/TimeFilterPageRequest.java | 2 +- .../com/gooddata/sdk/service/connector/ConnectorException.java | 2 +- .../com/gooddata/sdk/service/connector/ConnectorService.java | 2 +- .../sdk/service/connector/IntegrationNotFoundException.java | 2 +- .../com/gooddata/sdk/service/dataload/OutputStageService.java | 2 +- .../service/dataload/processes/ProcessExecutionException.java | 2 +- .../service/dataload/processes/ProcessNotFoundException.java | 2 +- .../gooddata/sdk/service/dataload/processes/ProcessService.java | 2 +- .../service/dataload/processes/ScheduleExecutionException.java | 2 +- .../service/dataload/processes/ScheduleNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/dataset/DatasetException.java | 2 +- .../java/com/gooddata/sdk/service/dataset/DatasetService.java | 2 +- .../com/gooddata/sdk/service/executeafm/ExecuteAfmService.java | 2 +- .../sdk/service/executeafm/ExecutionResultException.java | 2 +- .../java/com/gooddata/sdk/service/export/ExportException.java | 2 +- .../java/com/gooddata/sdk/service/export/ExportService.java | 2 +- .../com/gooddata/sdk/service/export/NoDataExportException.java | 2 +- .../gooddata/sdk/service/featureflag/FeatureFlagService.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DataStoreException.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DataStoreService.java | 2 +- .../src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java | 2 +- .../java/com/gooddata/sdk/service/gdc/GdcSardineException.java | 2 +- .../com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java | 2 +- .../src/main/java/com/gooddata/sdk/service/gdc/GdcService.java | 2 +- .../service/hierarchicalconfig/HierarchicalConfigService.java | 2 +- .../sdk/service/httpcomponents/GoodDataHttpClientBuilder.java | 2 +- .../httpcomponents/LoginPasswordGoodDataRestProvider.java | 2 +- .../httpcomponents/SingleEndpointGoodDataRestProvider.java | 2 +- .../sdk/service/httpcomponents/SstGoodDataRestProvider.java | 2 +- .../src/main/java/com/gooddata/sdk/service/lcm/LcmService.java | 2 +- .../main/java/com/gooddata/sdk/service/md/MetadataService.java | 2 +- .../java/com/gooddata/sdk/service/md/NonUniqueObjException.java | 2 +- .../java/com/gooddata/sdk/service/md/ObjCreateException.java | 2 +- .../java/com/gooddata/sdk/service/md/ObjNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/md/ObjUpdateException.java | 2 +- .../sdk/service/md/maintenance/ExportImportException.java | 2 +- .../sdk/service/md/maintenance/ExportImportService.java | 2 +- .../gooddata/sdk/service/notification/NotificationService.java | 2 +- .../gooddata/sdk/service/project/ProjectNotFoundException.java | 2 +- .../java/com/gooddata/sdk/service/project/ProjectService.java | 2 +- .../sdk/service/project/ProjectUsersUpdateException.java | 2 +- .../com/gooddata/sdk/service/project/RoleNotFoundException.java | 2 +- .../sdk/service/project/UserInProjectNotFoundException.java | 2 +- .../com/gooddata/sdk/service/project/model/ModelException.java | 2 +- .../com/gooddata/sdk/service/project/model/ModelService.java | 2 +- .../sdk/service/projecttemplate/ProjectTemplateService.java | 2 +- .../gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java | 2 +- .../main/java/com/gooddata/sdk/service/retry/RetrySettings.java | 2 +- .../main/java/com/gooddata/sdk/service/retry/RetryStrategy.java | 2 +- .../com/gooddata/sdk/service/retry/RetryableRestTemplate.java | 2 +- .../com/gooddata/sdk/service/util/ResponseErrorHandler.java | 2 +- .../src/main/java/com/gooddata/sdk/service/util/ZipHelper.java | 2 +- .../sdk/service/warehouse/WarehouseNotFoundException.java | 2 +- .../sdk/service/warehouse/WarehouseSchemaNotFoundException.java | 2 +- .../com/gooddata/sdk/service/warehouse/WarehouseService.java | 2 +- .../sdk/service/warehouse/WarehouseUserNotFoundException.java | 2 +- gooddata-java/src/main/javadoc/overview.html | 2 +- .../com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy | 2 +- .../src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy | 2 +- .../test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy | 2 +- .../groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy | 2 +- .../groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy | 2 +- .../gooddata/sdk/service/connector/ConnectorServiceTest.groovy | 2 +- .../gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy | 2 +- .../sdk/service/executeafm/ExecutionResultExceptionTest.groovy | 2 +- .../com/gooddata/sdk/service/export/ExportServiceIT.groovy | 2 +- .../com/gooddata/sdk/service/export/ExportServiceTest.groovy | 2 +- .../httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy | 2 +- .../SingleEndpointGoodDataRestProviderTest.groovy | 2 +- .../service/httpcomponents/SstGoodDataRestProviderTest.groovy | 2 +- .../groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy | 2 +- .../com/gooddata/sdk/service/retry/RetrySettingsTest.groovy | 2 +- .../gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy | 2 +- .../test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java | 2 +- .../test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java | 2 +- .../test/java/com/gooddata/sdk/service/AbstractServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/GoodDataEndpointTest.java | 2 +- .../src/test/java/com/gooddata/sdk/service/PollHandlerIT.java | 2 +- .../java/com/gooddata/sdk/service/account/AccountServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/account/AccountServiceIT.java | 2 +- .../sdk/service/auditevent/AuditEventPageRequestTest.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventServiceAT.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventServiceIT.java | 2 +- .../gooddata/sdk/service/auditevent/AuditEventServiceTest.java | 2 +- .../sdk/service/auditevent/TimeFilterPageRequestTest.java | 2 +- .../com/gooddata/sdk/service/connector/ConnectorServiceIT.java | 2 +- .../com/gooddata/sdk/service/dataload/OutputStageServiceAT.java | 2 +- .../com/gooddata/sdk/service/dataload/OutputStageServiceIT.java | 2 +- .../gooddata/sdk/service/dataload/OutputStageServiceTest.java | 2 +- .../sdk/service/dataload/processes/ProcessIdMatcher.java | 2 +- .../sdk/service/dataload/processes/ProcessServiceAT.java | 2 +- .../sdk/service/dataload/processes/ProcessServiceIT.java | 2 +- .../sdk/service/dataload/processes/ProcessServiceTest.java | 2 +- .../sdk/service/dataload/processes/ScheduleIdMatcher.java | 2 +- .../java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java | 2 +- .../com/gooddata/sdk/service/dataset/DatasetServiceTest.java | 2 +- .../gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/export/ExportServiceAT.java | 2 +- .../gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java | 2 +- .../gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java | 2 +- .../sdk/service/featureflag/FeatureFlagServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java | 2 +- .../java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java | 2 +- .../test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java | 2 +- .../service/hierarchicalconfig/HierarchicalConfigServiceAT.java | 2 +- .../service/hierarchicalconfig/HierarchicalConfigServiceIT.java | 2 +- .../hierarchicalconfig/HierarchicalConfigServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataServiceIT.java | 2 +- .../java/com/gooddata/sdk/service/md/MetadataServiceTest.java | 2 +- .../sdk/service/md/maintenance/ExportImportServiceAT.java | 2 +- .../sdk/service/md/maintenance/ExportImportServiceIT.java | 2 +- .../sdk/service/md/maintenance/ExportImportServiceTest.java | 2 +- .../sdk/service/notification/NotificationServiceAT.java | 2 +- .../sdk/service/notification/NotificationServiceIT.java | 2 +- .../sdk/service/notification/NotificationServiceTest.java | 2 +- .../java/com/gooddata/sdk/service/project/ProjectIdMatcher.java | 2 +- .../java/com/gooddata/sdk/service/project/ProjectServiceAT.java | 2 +- .../java/com/gooddata/sdk/service/project/ProjectServiceIT.java | 2 +- .../com/gooddata/sdk/service/project/ProjectServiceTest.java | 2 +- .../com/gooddata/sdk/service/project/model/ModelServiceAT.java | 2 +- .../com/gooddata/sdk/service/project/model/ModelServiceIT.java | 2 +- .../sdk/service/projecttemplate/ProjectTemplateServiceIT.java | 2 +- .../com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java | 2 +- .../test/java/com/gooddata/sdk/service/util/ZipHelperTest.java | 2 +- .../com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java | 2 +- .../com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java | 2 +- .../com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java | 2 +- 667 files changed, 667 insertions(+), 667 deletions(-) diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index 99c7c3c26..b1810cb17 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java index 350793292..5b62dd2db 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java index 7fb235325..13a622f46 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java index 8cabd3f2c..54400dc20 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java index dc6f0d1a3..6a5936234 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java index 041170f61..3ceef048b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java index 1de5696cb..9eca1a6d7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java index 6669981f2..a16dcd5a2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java index 1b54dea6e..bbe8fe34b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvent.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java index 08846812b..54c58202b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEvents.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java index dbdfae95b..c09a79213 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java index 5cdacdae8..01716e97a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java index e01463ecb..2a6a3baf0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java index e28ac50bb..f6b28783a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java index 11f45fd89..426774789 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java index f96bc11e8..87b4b414f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java index d28c95947..43849d78e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java index 6390ac28f..6e7f89390 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java index a9d6d381c..9ed375eda 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java index ec8c21da8..56a82dd26 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java index 74dedf86a..121a5fd20 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java index 596d3240b..6abea3026 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java index 778090850..fb527732b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java index ec44296a7..62cd5849d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java index 3d764ead2..7c3173fb9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java index 3e35c0a67..5826a20c4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java index d6e2b552e..3b6a49628 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java index 51bb247c4..3a0d81586 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java index 0d0702674..3ad825ab9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java index 3da513aad..d21180ff9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java index ccf28344a..b80e96b3e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java index 50a4b8b73..87256121d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java index 4f6d2663d..b4f5c74b9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java index 0fb048955..f85148bef 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java index 882c9c9d2..e964f36fa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java index 8f8b158ef..c07f1f185 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java index ae8ed07ab..3aac3e9bb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java index a22d93a11..b0b9338eb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java index 3134b7d3a..418908c07 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java index 2d5044e83..61221f593 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java index 36504c4bb..d7c6acf79 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java index a896d5a2a..071093ede 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java index d896f3ac9..6a37f5ce8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java index 610777ca1..47eb15305 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java index b0951575b..f274be952 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java index 58b84778c..df02e0f5f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java index fe074b403..767864185 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java index 5fae9a123..39d15388e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java index c0c3d3937..25a325563 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java index cd811ecda..cc08112ac 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java index adeb884c8..378cef65e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java index d010aa5aa..bd7f6bf4b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java index b0915cbb6..8bda559bd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java index f24801d31..7dbfe23ca 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java index 2f6e1a771..b8ecc0c3e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java index 6d8ea8127..7b216d6b0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java index 5c26c3bdb..3b54bab62 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java index faa5002da..2cfab560f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java index 920560ae5..6323ef5aa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java index 4b02e73a6..f5721c28d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java index f04b6229d..600a1acbe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java index 51348c67f..4fadfcd38 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java index 9c67d599f..101514de0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java index 2667b7078..729340456 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java index 983ff6751..95e3dab5f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java index 10beab093..870e6f5ad 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java index 6ac071cbd..fc9cb36a1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java index 765783ca7..fb6205426 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java index 8cfefcd53..84d3c3494 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java index 9ab893ae7..a64c1fe13 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java index d7f3e42a4..5d7a959a4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java index 18929485c..bef97477a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java index e037fd588..9e1be405a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java index fc0a69c3e..68653fe6f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java index ce3276056..724682560 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java index a168636c2..e32562412 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java index 6ef9107a8..a69cf833e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java index 32d165f98..59395327b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java index bbe58b664..4b17b29b9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java index 7fc6c2ba2..d1f2fdf1e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java index 24b1fdee8..72af11832 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java index d6dbafe72..1e001276f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java index 7d1859cfa..2b511d758 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java index eac6e3a13..4ab721053 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java index 39e5e9040..19dcd2ac9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java index 24c68eaa7..1e3484166 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java index f45f77c99..0755695fa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java index 93256fa59..37df9210f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java index 87e6655cf..8dbf14c48 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java index 85061f14b..f12391f23 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java index d77a38ace..1e3c00cd4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java index 5e7c0248f..181614c6c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java index 9657cbf46..c44e5745e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java index a13e9ebde..65144665c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java index cfba630d8..5f3c9449a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java index d64f20ada..5edcb4182 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java index b9da33ee6..7717cd865 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java index 11dacb692..3160fcae7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java index 43e8dd55a..cfa275a88 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java index 194c4604b..b81965060 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java index ffe915e7c..641501e04 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java index 8e768c14c..9ea3de116 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java index 157c4ff4a..d01b658a7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java index 817f175ca..57189ff55 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java index db5bee51f..b3068d70d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java index e23a08a7d..01df8df3e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java index 9dbafa8e7..3209a9693 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java index 63af90ee5..148323fc0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java index 73d713abe..9119ac5fe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java index c5949f73c..374342d09 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java index 0b6db9002..0655d6081 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java index 0bbf31081..1e7018f75 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java index 565da8e28..c838ed97a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java index d81062c7c..ea5cc96fb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java index 61131158c..3fab549bc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java index d1d86b127..01033d855 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java index a08c49c93..bb3415d6d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java index 12481f559..da41cd591 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java index cf52c535a..d0f2766b7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java index ffe32b82c..566045331 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java index e1bea0db1..a336131a3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java index 0e4301132..695eb3312 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java index ad1071f24..8df74743b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java index 4c3680721..8900119cb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java index cc827900a..7954cb780 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java index b46b531e9..202eab680 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java index 9d3a801b8..046804a24 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java index 189fab22d..c78a90c28 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java index 599379ed2..7ed6b8fda 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java index b58027f36..476a70195 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java index 50ca2606a..67bd1b3aa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java index b6df3da4b..408a577d2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java index cc8c62afb..0d565f384 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java index 85c54704a..2795b29bb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java index 7ea18274c..1cfb9bf03 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java index 638a25dfe..7b888597e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java index d6e6adc35..26d3fd2c2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java index 999b27621..7be575b42 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java index ed404bc0d..17ee9156a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java index e0914730d..80a83623e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java index acb369806..e2ce5293e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java index 76e185a9a..1bf57443f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java index d648ebe7d..c5c6e0c2c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java index 5d5c9d083..8e4f292f6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java index 76cf5d2dc..9a338cda8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java index 323c1af57..4193cd288 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java index 41eb37640..be22e210c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java index 308331ba8..f2b6cd50a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java index 3310d2ddd..d8880e97c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java index edbe8bf8e..c757218db 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java index e50b88d52..d92aa4278 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java index f2e56ddeb..4fd857420 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java index a61c19aa8..62c3fcb40 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java index bd7e5eb37..3fa679244 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java index 469b8130c..7fffad176 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java index 79ab19e8f..c5e3afb48 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java index a591ca74c..ff728e24c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java index 6a4004493..3b0fc7c60 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java index 1198d8b2e..b207ac4ff 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java index 5221ee295..f71e02bad 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java index e61ce597f..d95b2d62c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java index f933bb462..63fdcbf4e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java index f2aa7ffc8..cd2eed60d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java index 0a745e5ca..a93dea5ee 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java index df37197ef..a126133e3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java index 848fe7254..4f5c3e5af 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java index e7a7054c6..3519b3ead 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java index 3c9d60936..3d49022ef 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java index 0356da1c8..2c1d7b299 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java index fd0543c46..a87bbbb47 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java index 2a4e7dcac..bdd314a16 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java index 432cc9f2a..311f95c23 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java index 74b6f2d42..7c7e59b60 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java index 7f074530b..34dcc28d9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java index d7ba3fe92..e90060bf0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java index 4cee7722e..5fe0939e0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java index ccb2f57d8..234010c00 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java index dd2be944b..b1cd7d774 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java index c2d0524a9..68ccd496a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java index 70b1818c8..13c48a560 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java index e4dbb6cb4..f1269d4e9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java index d0cbc5510..0fb395554 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java index de9f5b391..64814df93 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java index 99dbb38de..25ab6e0ca 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java index 4e7d9a242..6464e4622 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java index 3d73b892a..1be2b6fc3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java index 3be9831eb..12d649708 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java index 628c97388..8a33ed9d5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java index 942183896..18e7094a2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java index 02803733a..1fdd10afd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java index bda90bc3d..e405d30a3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java index 6ff4b0f73..3dad10b11 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java index d1e8eee38..a1a86dc2a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java index 8b841c131..712af258e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java index bbf0f374b..af24c96c0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java index af0da8372..83961e9a9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java index caa1f83c6..023308759 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java index a1c1fd71b..bce72c6e0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java index 760939296..11e1469e4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java index 87c8cc639..aa4f082c0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java index 70a41911f..23eee6e0f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java index 37b76d1ef..814c7f16b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java index 1fdfbcf94..02b766b2d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java index 59e989640..35eeaa5a7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java index 42b7b4089..b1d154555 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java index 686ba4210..a082f3de0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java index 407d1695b..a176f5f68 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java index fae019295..3b6713454 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java index fa5db7b62..cc39c1707 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java index ec23066d8..b2eebdc96 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java index 79efac435..1cc756df4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java index 448016ec3..12514a352 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java index f201884e7..05e4bb4fd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java index d4c65640a..c94d8f234 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java index c8911ac62..dd3a79856 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java index 0519371be..ce18ac57e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java index 740b7ede9..13764e10e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java index bcde6ed5f..e9dab646c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java index 5e9c6e60f..fb6fb318f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java index 7baaacb10..6dd9bd5b7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java index 2cbad585f..c76975041 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java index ae86c74b1..f01bd26f9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java index 64b5109e0..b6c4cb321 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java index 624f7e4a6..e4a07c2b1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java index f311cbbd0..e6dafb671 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java index e786b1dc7..0dd04b024 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java index 11e05bf9a..d0a406bfe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java index 5d16cad66..92d85a935 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java index 9d1fc0720..2f30e1fb0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java index b299be930..cece94b5a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java index b337dc132..c9e319325 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java index 8a3138350..c5598f6bc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java index 69bdb5031..1526c50dd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java index 4dd966463..4508f034b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java index c550b4739..7db2f9542 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java index 32ce1fe5c..adb8531f3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java index 1ad14ff70..660681e0f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java index 8fb2ef69a..5a2ab4e9c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java index e6bd8e8e5..fb27057ac 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java index b9bd32634..96928d7bd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java index c2b1116a0..fe61a714a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java index 9edf41924..d43c267d2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java index c8c536698..3b8c74ef6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java index fb180f9c4..5826af041 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java index 2a3ee0291..f8a2b4019 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java index 9a69443c9..4ca0248d1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java index dabd77cd8..7d613426b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java index bcef5e7f7..d8133d5f4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java index e07e742df..a939f304b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java index 0d723da22..661aae239 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java index de0b5bc34..90d8656c2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java index f8d9a2a7b..d1fe834bf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java index 86304b1e3..f75be41d5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java index 69b4ec970..fa6f8a919 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java index 9a6c05f6f..1b80c465d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java index 3347d8d06..19a544ce5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java index 3dd6dfb07..c45d04296 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java index e102a0ae5..fa339335e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java index 7177aba9f..a74e4e1fa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java index 4963d1dcc..3ba53c39b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java index e977d8a29..693530ae4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java index b639e7694..09118b20c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java index 84f866d59..f1f139c33 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java index eb550d41b..8ccfb5583 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java index cb2b9e672..841204b9d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java index c61915c2e..d92fa2903 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java index b4564fe89..c22d749ac 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java index 04218e09d..7779ec4cd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java index 8c09ef2f2..ce52f86d6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java index 71459ec2e..cb991c4af 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java index 6f9cac926..e7e884dcc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java index 9b7a44b5d..9a8745a7b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java index cc4076ace..3064e57fb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java index e7a397487..b6c840c3e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java index 16ec651e1..ea03d4f99 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java index f7beceaf7..bbbb1635d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java index 180504ae7..41278e89f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java index e1eb58493..ab9a2b2ad 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/TagsSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java index 1dd07ab44..79f8b0949 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/util/UriHelper.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java index cf8c90c3c..ad668912b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouse.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java index 54bc200f3..161ba2f01 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchema.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java index 0c67f072e..ada40206a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemas.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java index dcc830619..1f90ff332 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java index 73568394b..8cb2b4d95 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseTask.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java index df0bb0d66..08f420aa4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUser.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java index 751f0072d..388134e6a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUserRole.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java index 44b05a4c2..ef0677a04 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsers.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java index 1c7579914..468d802fa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java index ae60960ac..834df5826 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehouseUsersSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java index 9e23146db..04faa4e21 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/Warehouses.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java index 0e7bcbad7..c27ca83b4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java index 04829cbd2..58a796a47 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/warehouse/WarehousesSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy index e84e47c03..2b9b8ccee 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/account/SeparatorSettingsTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy index d5e722834..9e8d996ce 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ExecutionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy index c928169b2..a5d7ab9f0 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/IdentifierObjQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy index 2c36f6553..02f4e10ce 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy index 4a5f59fd8..7a4ff7778 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ObjQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy index e3ccaab37..473a68581 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/QualifierTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy index 04365d973..807adf677 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/ResultPageTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy index b95b429d1..bd12b9cfd 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/UriObjQualifierTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy index 0ceaf090f..564781ffb 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/VisualizationExecutionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy index 152166081..95b55bacd 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AfmTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy index 3c3b156b5..5d99de1bf 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy index 16c12bc1d..68706f329 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/AttributeItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy index c939b3ecb..3d61210a3 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy index 7395c7734..61f179e1f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/MeasureItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy index ef086dded..925c35783 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/NativeTotalItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy index 14fd5702b..cb4513ae5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilitiesTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy index 0db56f062..ba1fc4f6f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttributeTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy index 7c47db337..4e4e3460e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy index 3cee6043e..24501ffb4 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy index 1bd72a7e2..0c5f12f6d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSetTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy index 2bf1246f2..413961185 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy index b929c9b34..298bb392e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinitionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy index f7000d2ea..c3783b476 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy index 9ffc7ea11..8f342fd06 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy index 191e409e3..f1ba97a51 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy index e45c52822..99e28d750 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy index 159ed506c..c7b8803c3 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy index 3d967d74b..1dd86ff75 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/FilterItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy index f75f2a33f..eec005c11 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterConditionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy index 182b194ce..7c65c3757 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy index f462a7404..3f8b0100d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy index b50aeae6a..f3728eb4f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy index 8fdb47b95..7508456a4 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy index 5108ca41d..324bb359e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperatorTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy index 5c8bea6ae..30d825df1 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy index 1440ed463..0e37979d3 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy index 03e4ff0b0..43ed4bcea 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElementsTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy index 879dce19e..77597f803 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElementsTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy index 441bfda47..0fe5fd6ef 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeHeaderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy index 15beea72f..ea292db5e 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/AttributeInHeaderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy index 40330bb6d..19aae7bf5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ExecutionResponseTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy index 68e30ea9f..67baeb88d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/HeaderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy index 9cb586ce6..01478f499 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeaderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy index 406d3cfc0..4a11e5a92 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy index 4004da1b1..0ef094a1c 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/ResultDimensionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy index 386729f6c..dc42050a2 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/response/TotalHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy index c7e772793..fe3b71f54 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy index e905aefa4..4e87387f4 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataListTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy index 42eee3a93..1c3ef7d75 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy index 45e397a79..8594d6c16 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/DataValueTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy index 532c9d0f5..8924ca064 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ExecutionResultTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy index 53e515ef5..891097ffa 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/PagingTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy index f7c0e2a9f..05c604569 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy index ca1b5473a..a989c29d3 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy index 864369f7e..3f3d4639f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy index b3bfe0547..782e8f2d8 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/result/WarningTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy index 43465645d..5b27f72cf 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy index e25789ea1..5fb87f174 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy index 956ffa160..931539ddf 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/DimensionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy index 66d2afa84..32678f681 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy index 738005733..d41f61c8d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy index 4ff924d80..e959f63ff 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/ResultSpecTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy index ba87b7b7d..3160d063b 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy index 1adc57147..87fae1a65 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItemTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy index b64b4c0cd..9b19de518 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntitiesTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy index e17dbbbe0..6818dbf23 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy index 2370d15c4..7ffd3d7ac 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/lcm/LcmEntityTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy index e07b26ff6..e376aa16c 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/IdentifiersAndUrisTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy index 1c0c5c1a9..08710b2ca 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/UriToIdentifierTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy index a686dae62..8d3b40591 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboardTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy index a0ad042c9..32f4a94d5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiAlertTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy index 27b254379..7d9078a04 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/KpiTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy index f1113d21d..ceacae800 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReferenceTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy index 69aef4217..757e450a7 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy index e73ef98d2..4719147fd 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy index bf8c9f2a4..37cea8d88 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContextTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy index 126ad85c6..d43728be7 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReferenceTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy index 974dc97ee..2e58022d5 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/report/TotalTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy index 589595589..3c19b351c 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy index 119607cd5..c22c3ed6d 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/MeasureTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy index ea31f83fa..2b2de1f16 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationAttributeTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy index 6d512a1b0..68883dd41 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationClassTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy index 5eaa2eae7..08ac1d227 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy index 97aa176d6..45514dc03 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationObjectTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy index df59c1e8c..6bab57ddf 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/project/ProjectsTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy index 6afa540e1..a4cd4698f 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/util/UriHelperTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java index d42f0d065..a46c7154d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java index 42d74b966..992a5799a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/account/AccountsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java index e0ec1cefd..d173f0774 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java index 9ba19ca99..3c92679ef 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AccessLogsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java index 06da094a7..c2c9ddd4f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java index 017f7c401..8be5bbb32 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/auditevent/AuditEventsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java index db232b9f8..7cf6a2fc6 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationProcessStatusTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java index 183a49b8d..bd6b10844 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/IntegrationTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java index 3151b891d..829079893 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessExecutionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java index 2b55355eb..ab25b2751 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ProcessStatusTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java index 11a7923aa..6f64795a3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/ReloadTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java index 734c04e73..b4df71f44 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/StatusTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java index 82426f443..a63e4a62c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecutionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java index 088d04289..fca822688 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/connector/Zendesk4SettingsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java index 5a8a47d8e..dd3744562 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/OutputStageTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java index ac75ce01a..2a63bb118 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java index fd2a45c5b..1f198df98 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/DataloadProcessesTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java index 9fb78d41d..54f2e2ad4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetailTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java index e183cc8f6..739af7015 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTaskTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java index c7d61e9a1..c601243ec 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java index e7cfd5f04..8801e8309 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecutionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java index 1323aaf5f..3b42140de 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/ScheduleTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java index 9227764e8..302adad1e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataload/processes/SchedulesTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java index f5c348b05..2a81efd1c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetLinksTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java index ae42aba3e..fe4fcc85e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/DatasetManifestTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java index 524a80f83..eeb40f2a2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/MaqlDmlTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java index 68c50a264..2a4b1a795 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTaskTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java index af2729609..fc6eed235 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/PullTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java index 3ca1a2cb0..9058d22a0 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/TaskStateTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java index 2dade6b40..9678f696b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadStatisticsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java index c39c6d0cc..0fb425b92 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java index bcb7f743a..1fe68f402 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsInfoTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java index 96097b09c..03150e351 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/dataset/UploadsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java index cd3213ab3..72a76320f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ClientExportTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java index b50eead7c..22b1538a8 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportDefinitionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java index f43d48ab1..3d51a3d0a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExecuteReportTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java index c7a300f02..174765e60 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/export/ExportFormatTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java index 8b705aa95..e85e1c6de 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java index c2d798d45..ef80fe222 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/FeatureFlagsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java index b9f16daa4..dff63656f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java index 168fe94e7..ccca996d5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlagsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java index 7a2767644..bc05fc625 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AboutLinksTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java index c6b40ce06..c733d44b4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/AsyncTaskTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java index 765ecff00..1ed7370db 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/LinkEntriesTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java index c38691ed9..665cc17bd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/RootLinksTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java index 981cb3024..d1f9eaad2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/TaskStatusTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java index 6201c6ac2..591ee3332 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/gdc/UriResponseTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java index 90fd6ab48..d6966325e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java index 102fd0028..c4f6aa423 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItemsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java index e0bad9b78..c0b362371 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttachmentTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java index cd6ead0ce..8f9a1881a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeDisplayFormTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java index 77d545438..24f19691a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java index 2a3f901b0..4ae9fe4a4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeElementsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java index 43df06bb4..991b7ce20 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeSortTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java index 3ae38ead9..8793ea348 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/AttributeTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java index dae0702d0..836ef469d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/BulkGetUrisTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java index 2b882a83c..257a27446 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ColumnTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java index 74c1c3080..711f7bd7f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DashboardAttachmentTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java index 8d6c334b1..49f3d4e41 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DataLoadingColumnTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java index 5c4e52137..40f7214c3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DatasetTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java index d8eab4bae..24979e01c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DimensionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java index 32090cdad..1e5ba2b2d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/DisplayFormTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java index 6064c83a5..24232f42f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/EntryTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java index 4268e9f02..fbc072f5f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ExpressionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java index 809781cdd..d36ef7fed 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/FactTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java index 662269f31..fd3a2a3d9 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/IdentifierToUriTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java index d79b4d90c..2699ccba3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/InUseManyTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java index 2ebf30d99..d7279e4ab 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/KeyTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java index 580b08290..0e8a67efb 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetaTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java index a70515aaa..aa9586c95 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/MetricTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java index 56c19a75c..cd4fd4055 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/NestedAttributeTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java index f8fc51204..201d0b746 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ObjTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java index dff010fe4..84fe0638c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ProjectDashboardTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java index 56251972e..5205a2169 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/QueryTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java index 0f8242080..9a7e1f22d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ReportAttachmentTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java index 06fa7c164..a2c0ea468 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/RestrictionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java index 87eb01236..24c9dbda3 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java index f16118714..af9899d37 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ScheduledMailWhenTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java index 6defe5a37..f33020afe 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/ServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java index 20a217d0c..8e6160c96 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableDataLoadTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java index b0e854d56..8e97df667 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/TableTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java index 6fc4c48c3..6edd19e73 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifactTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java index 422fc973b..a0ea258a2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java index f7e4395cd..54aba9677 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/ExportProjectTokenTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java index 5a156b438..cfe7aa05e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifactTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java index c76918272..261cb0a7a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java index 9d1d2d60d..d4adc8e69 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportTokenTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java index 39880f0c4..2f19727cd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/AttributeInGridTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java index 27c3738ad..4c0269449 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementDeserializerTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java index bd4833793..e3b4dfde4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridElementSerializerTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java index e6333c1e4..8ae45e010 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContentTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java index 82a4538d8..6428afff7 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/GridTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java index 7162084e2..ebd992604 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/MetricElementTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java index e1c9da278..d431801b5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContentTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java index 06632d6f0..23fe22762 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionContentTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java index f365ec1fb..713b5a50d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportDefinitionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java index 23fb4d3bf..010680a09 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/md/report/ReportTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java index 308dc0fa6..b0b89aa01 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ChannelTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java index 7456010cd..695bca887 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ConditionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java index 46c89b5d6..76cf93ce1 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/EmailConfigurationTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java index 638afdf58..5448d9272 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/MessageTemplateTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java index 226800700..705d7ab67 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/ProjectEventTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java index 044f9c841..6e2f9930b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/SubscriptionTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java index d09c9ab69..6eb3ede8c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/notification/TimerEventTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java index c1fb0743e..0332da11e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/CreatedInvitationsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java index 12e278bc2..0481b17b2 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/InvitationsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java index 3e69dd9ae..5ac677623 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplateTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java index 9d9e8f6b8..8f5c8ad1c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTemplatesTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java index 0e7461df2..891c91df5 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java index e210258ac..2ca81ddeb 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResultTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java index 1c513525e..bc5051672 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParamTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java index d38863ecc..9277ed40f 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultItemTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java index a5aee6bbc..50b006645 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParamTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java index 79d00697c..e7c61fdb9 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultParamTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java index 8a00fd66e..d01d91cc7 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParamTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java index 29fd14ec5..f5ef9255c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParamTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java index 20ba01f08..c0f0a57dd 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java index d830bf20d..4b700cf60 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationResultsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java index 5075aad30..6eed99aee 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationTypeTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java index 4829eb44c..777359573 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/ProjectValidationsTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java index 5ae8643c1..8d325c7e4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RoleTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java index 4f8d9a890..d75b287ad 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/RolesTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java index d9fbc45ad..e8c7fba7a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UserTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java index b1a5ae550..f77dad84a 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/UsersTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java index 17b8d8b40..b2132f83b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/DiffRequestTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java index 74349d847..8e74ca967 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlLinksTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java index 8e593f8e3..f0f0e2e17 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/MaqlDdlTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java index 6f5d5d09f..9f3168444 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/project/model/ModelDiffTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java index ec6e19df1..942db45a4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/projecttemplate/TemplateTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java index f40651839..38d71b00c 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsDeserializerTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java index 717017af5..204d85d08 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsSerializerTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java index fdf757822..38afe9f1b 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/util/TagsTestClass.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java index 2d22e724b..8762e4357 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemaTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java index 0878d7e8d..969f1516e 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseSchemasTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java index deb3252c5..f0da95f8d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTaskTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java index 22dfd2130..ab7b94e9d 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java index 74cb30f6e..250a0a833 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUserTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java index d27413846..01cbe44c4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehouseUsersTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java index 1389a14d6..fbfb7aeb4 100644 --- a/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java +++ b/gooddata-java-model/src/test/java/com/gooddata/sdk/model/warehouse/WarehousesTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java index ef5366f5a..46b59d3a0 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandler.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java index 16ccdb14b..3ba9db122 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractPollHandlerBase.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java index a79b61220..dd77d2865 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/AbstractService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java index c443bab8e..a7a0a7c39 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/DeprecationWarningRequestInterceptor.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java index 1ed86d895..866bb1083 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/FutureResult.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java index 6569f51ec..632415780 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodData.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java index 71413e7fd..5550785ab 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataEndpoint.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java index 523aa7504..acdcd9aad 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java index e4d4278fa..3481a61fa 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataServices.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java index 6df2c43f2..891e27251 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/GoodDataSettings.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java index 349968cdd..7160b71c7 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/HeaderSettingRequestInterceptor.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java index c0cf9661a..410c48dab 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollHandler.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java index 150902818..ef3e77e55 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/PollResult.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java index 049118449..819519ba7 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/RequestIdInterceptor.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java index 1f7f8118e..978cb2958 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/ResponseMissingRequestIdInterceptor.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java index c95928574..4e6a6157c 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/SimplePollHandler.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java index 63dcc2a18..91a29e563 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java index 8a8c80a88..68b1a13f1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/account/AccountService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java index 0c1ef5fc2..3e46a0637 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java index 4f6e5e4df..336748b1c 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java index 8dc8bd537..a7e1f09d1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/AuditEventsForbiddenException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java index 82e36e7e5..7785a5f66 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java index 9c8eec912..560ef7489 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java index 213b77428..c6f58352b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/ConnectorService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java index 63829e89a..038380c1f 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/connector/IntegrationNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java index 87f247448..85f0ca7fb 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/OutputStageService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java index accb1be45..fe15a7089 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessExecutionException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java index c2e226ae9..5cebe3182 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java index 8adbbe0b1..9f83616af 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ProcessService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java index c49010650..f7401404a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleExecutionException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java index 42d18b0a9..659e411ad 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataload/processes/ScheduleNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java index c6b88253f..99e0c849c 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java index 162db4df9..c21536dc1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/dataset/DatasetService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java index 112865246..b648993ca 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecuteAfmService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java index 04ba87dfd..9ff0de3fb 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/executeafm/ExecutionResultException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java index ea8457049..f4a79ebf5 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java index 2cfba7b0d..24c84d373 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/ExportService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java index 9fe3f2ef2..eb045df1e 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/export/NoDataExportException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java index e36fa0255..6ad32cbad 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/featureflag/FeatureFlagService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java index af5daf7e1..bd6978608 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java index 886f35366..993ef1f1b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/DataStoreService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java index a596733c5..10c289195 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardine.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java index df51dcafc..8440f26cd 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java index 881049ad0..d3b7f9a9b 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcSardineResponseHandler.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java index ef8838eaf..072129007 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/gdc/GdcService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java index 2f10063ee..8a99959c3 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java index 5cd8c0d1d..98f35533c 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/GoodDataHttpClientBuilder.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java index 8cfb1b844..5394b6484 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java index 5c7f5a71b..8fefe24da 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java index 0de92ba88..375104a8a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProvider.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java index cd1e85780..20878fcc8 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/lcm/LcmService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java index 03a11e152..92161e900 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/MetadataService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java index 06e1e4e0a..ec7579b0d 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/NonUniqueObjException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java index 32fe9e5dd..9ae52ed8c 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjCreateException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java index a9f70607b..60a0c94ed 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java index 87ecf6d92..2b3a3e80a 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/ObjUpdateException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java index 195ba6d61..7f21897f1 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java index 55329bd1e..0a2e8daca 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/md/maintenance/ExportImportService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java index f1b0d7f08..dd0c20f42 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/notification/NotificationService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java index 91edbfd6c..4285fb858 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java index 6e1b3cb50..fcd549d19 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java index 52b7a56f4..4f066c679 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/ProjectUsersUpdateException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java index 81d7c8ca0..d94505741 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/RoleNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java index 710e780a8..83b56c362 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/UserInProjectNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java index 186fc9566..7525af47f 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java index 7ea3618fc..bd7ef1e78 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/project/model/ModelService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java index 50fbf675b..2f956f3d9 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java index 46bf85301..a0d2af7f0 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/GetServerErrorRetryStrategy.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java index 632bef7d5..a9422d395 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetrySettings.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java index 09962467a..a12670035 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryStrategy.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java index 0bf2b70ae..11ca48dea 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/retry/RetryableRestTemplate.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java index 05b6e07bd..6525d9ad0 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ResponseErrorHandler.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java index ad6a5c992..b2af22222 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/util/ZipHelper.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java index 1259656f4..946f6f11e 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java index f0bb05147..076382930 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseSchemaNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java index ca7da771d..83cae82ea 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseService.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java index 080957302..6137e0c87 100644 --- a/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java +++ b/gooddata-java/src/main/java/com/gooddata/sdk/service/warehouse/WarehouseUserNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/main/javadoc/overview.html b/gooddata-java/src/main/javadoc/overview.html index 74c4c2d4d..f4c6686f0 100644 --- a/gooddata-java/src/main/javadoc/overview.html +++ b/gooddata-java/src/main/javadoc/overview.html @@ -1,5 +1,5 @@ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy index 6d1d6bf6a..99bb61d12 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataBeansAsServicesIT.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy index 884987d78..fe3d697d9 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataIT.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy index 3d156e9f2..30d01f487 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataITBase.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy index 5e59b3fb7..911abd367 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataServicesTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy index 86f92b554..9c9524580 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/GoodDataSettingsTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy index fc9c240b8..3b76c7966 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/connector/ConnectorServiceTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy index 759d38cd6..b8840dfe3 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceIT.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy index 9baf5eb6a..d3dbe27d3 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/executeafm/ExecutionResultExceptionTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy index 2f1a8e0cf..bf5743181 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceIT.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy index 6d5b76580..9415e3c34 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/export/ExportServiceTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy index 081a5ab4c..6270b3a42 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/LoginPasswordGoodDataRestProviderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy index b83a0a008..b32bd0c4f 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SingleEndpointGoodDataRestProviderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy index 2a4c3e774..80017e953 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/httpcomponents/SstGoodDataRestProviderTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy index 074e3ee61..6c3dc0b95 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/lcm/LcmServiceIT.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy index a3595d237..dfdf300b2 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetrySettingsTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy index eb3bf5854..00ad21afb 100644 --- a/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy +++ b/gooddata-java/src/test/groovy/com/gooddata/sdk/service/retry/RetryableRestTemplateTest.groovy @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java index e9214be21..a8778d60f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java index b0cbb9610..9c81be689 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractGoodDataIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java index c21010379..cb099b7c0 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/AbstractServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java index a47ada68e..111c36e1d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/GoodDataEndpointTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java index d2ba2c962..f1981ebc5 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/PollHandlerIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java index 8f1862e2d..75badd2cc 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java index 3f51331fe..e92e75969 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/account/AccountServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java index 26a5153a5..21adde9b2 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventPageRequestTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java index 4d2816cce..88e4bedc8 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java index 1bbea9cd6..6eb951cb2 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java index a0f5dc4a1..4b32eea61 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/AuditEventServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java index 68e5712da..a844ce5f2 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/auditevent/TimeFilterPageRequestTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java index 2006a097d..9d3746a9e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/connector/ConnectorServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java index 9d2cfb761..8178c4d57 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java index 48c78bc84..678767f34 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java index f6cab66b0..0f890ae1b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/OutputStageServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java index 695ea1ac4..6e316b17d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessIdMatcher.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java index 5648fc79d..14b5df268 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java index 83736f111..08759f9e6 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java index b5b8f3d5f..37ac37c3c 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ProcessServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java index 0afa5295c..c76aabaa3 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataload/processes/ScheduleIdMatcher.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java index 596d0f017..ad0cb4b49 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java index 1c20af743..8bf2f7ff0 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java index f4b3f0f5a..1a1b8ec02 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/dataset/DatasetServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java index 255c62a3c..8487e4af4 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/executeafm/ExecuteAfmServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java index c8c90978f..119f49330 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/export/ExportServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java index adea2d200..b1971587b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java index e27823a7c..3467a0935 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java index af0319d9b..67ed3661b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/featureflag/FeatureFlagServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java index 1f969f2ef..ae91449bc 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DataStoreServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java index 10f0559ea..7b77a3d0e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/DatastoreServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java index 515d797bf..64b7afca4 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/gdc/GdcServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java index fa5bb38e4..0c62edd6f 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java index 7614e72d6..75af3dde4 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java index fb7eebf0e..0558a8606 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/hierarchicalconfig/HierarchicalConfigServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java index ef54ffd33..2bf0b75f1 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java index 7f013420b..0790560f3 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java index abcfed361..f64cec3b6 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/MetadataServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java index 6d90a143f..70bb60d4e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java index 3806cd00f..564751b73 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java index 2a10ff28a..b23a0b999 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/md/maintenance/ExportImportServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java index e3d74dfcc..18f73f722 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java index 53fc6780a..5aeced60b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java index 851d39591..034a2d3db 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/notification/NotificationServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java index 39f15f580..af4258d34 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectIdMatcher.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java index 48c55642e..1dffe9b2b 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java index 1a830c770..ed2104457 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java index db890ece5..b21c0b3b8 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/ProjectServiceTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java index 8e05d36d5..657720be7 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java index 3bb47b96e..37a3bdde6 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/project/model/ModelServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java index e74a85edd..3e4e55946 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/projecttemplate/ProjectTemplateServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java index edd8e9fb2..0ad551f16 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ResponseErrorHandlerTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java index 11947df1d..e07e6eb9e 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/util/ZipHelperTest.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java index c724bd517..65b9f22c0 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseIdMatcher.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java index 1c100519d..b363ae9ca 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceAT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ diff --git a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java index 54a780eb0..110fcb23d 100644 --- a/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java +++ b/gooddata-java/src/test/java/com/gooddata/sdk/service/warehouse/WarehouseServiceIT.java @@ -1,5 +1,5 @@ /* - * (C) 2022 GoodData Corporation. + * (C) 2023 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ From b82953e63ef3c9d10a2a758a1cdbd8c9ad92f19d Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Wed, 4 Jan 2023 08:20:59 +0100 Subject: [PATCH 112/155] Update year in the LICENSE file --- LICENSE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.txt b/LICENSE.txt index c73939064..c2dee2ac8 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ GoodData Java SDK BSD License -Copyright (c) 2014-2022, GoodData Corporation +Copyright (c) 2014-2023, GoodData Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: From ae2a8a9552d89d69c75e3fb37ca225c4734b343e Mon Sep 17 00:00:00 2001 From: Libor Rysavy Date: Wed, 4 Jan 2023 08:51:14 +0100 Subject: [PATCH 113/155] Hardcode year for copyright headers Not to break builds at the New Year --- pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index 03808c327..ef74aae0f 100644 --- a/pom.xml +++ b/pom.xml @@ -58,6 +58,9 @@ 3.0.0-M7 gooddata-github https://sonarcloud.io + + 2023 From 55e93c36a30de727177b8a36c6dc5ee4152d683a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kouba?= Date: Thu, 2 Mar 2023 10:26:38 +0100 Subject: [PATCH 114/155] Revert "INFRA-176: Add sonar properties - configuration for sonarcloud" This reverts commit 6cf31f61074daef08620653fa8d99e4cbd0f676a. --- pom.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pom.xml b/pom.xml index ef74aae0f..a24989562 100644 --- a/pom.xml +++ b/pom.xml @@ -56,8 +56,6 @@ 2.36.0 3.0.0-M7 3.0.0-M7 - gooddata-github - https://sonarcloud.io 2023 From 057390586441bc6978539a5a4bdd6b34c6b6f0d4 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Tue, 10 Dec 2024 11:40:17 +0100 Subject: [PATCH 115/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.2+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 83e79aa77..e5692f329 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 382ad3241..80e317abf 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 diff --git a/pom.xml b/pom.xml index a24989562..26e584c0b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.2+api3 From d8f68f815e5bca032554c68b09021583200ece53 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Tue, 10 Dec 2024 11:40:19 +0100 Subject: [PATCH 116/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index e5692f329..a8690acac 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 80e317abf..5151e5e97 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 26e584c0b..907892b84 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.2+api3 + HEAD From d41158daef2340faf665a1fe170129b4a9d19777 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 11 Dec 2024 12:57:28 +0100 Subject: [PATCH 117/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.2+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index a8690acac..e5692f329 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.11.2+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 5151e5e97..80e317abf 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.11.2+api3 diff --git a/pom.xml b/pom.xml index 907892b84..26e584c0b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.3+api3-SNAPSHOT + 3.11.2+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.2+api3 From aa47a97f50a0f6a8b80c5a06192af91a49a06a21 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 11 Dec 2024 12:57:31 +0100 Subject: [PATCH 118/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index e5692f329..a8690acac 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 80e317abf..5151e5e97 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 26e584c0b..907892b84 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.2+api3 + HEAD From 6fb54174d7327303edaff70f53eaf6a2fcb8847f Mon Sep 17 00:00:00 2001 From: billie-jean Date: Wed, 11 Dec 2024 14:31:16 +0100 Subject: [PATCH 119/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.2+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index a8690acac..e5692f329 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.11.2+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 5151e5e97..80e317abf 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.11.2+api3 diff --git a/pom.xml b/pom.xml index 907892b84..26e584c0b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.3+api3-SNAPSHOT + 3.11.2+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.2+api3 From c892f8ddfdfd5b9144443c6342e240623d211075 Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Thu, 12 Dec 2024 12:36:12 +0100 Subject: [PATCH 120/155] Revert to orginal SNAPSHOT version after the unsuccessful release --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index e5692f329..83e79aa77 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.2+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 80e317abf..382ad3241 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.2+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 26e584c0b..a24989562 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3 + 3.11.2+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.2+api3 + HEAD From e3ac10e90d60582c290f20687090081302624c2a Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Thu, 12 Dec 2024 12:51:08 +0100 Subject: [PATCH 121/155] Make the Codecov upload non-voting --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b47dc07b..af38bafa7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,4 +30,4 @@ jobs: with: file: ./**/target/site/jacoco/jacoco.xml name: codecov - fail_ci_if_error: true + fail_ci_if_error: false From 5752e89e2d1f8845f0d2bd7f84d47e2042c6641c Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 13:07:48 +0100 Subject: [PATCH 122/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.2+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 83e79aa77..e5692f329 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 382ad3241..80e317abf 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 diff --git a/pom.xml b/pom.xml index a24989562..26e584c0b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.2+api3 From 2c2ed450bada4411d5c418d8b7793b1eb2bcb00c Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 13:07:50 +0100 Subject: [PATCH 123/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index e5692f329..a8690acac 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 80e317abf..5151e5e97 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 26e584c0b..907892b84 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.2+api3 + HEAD From 4ee514525f945bef16829ca688786f16804608f5 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 13:16:13 +0100 Subject: [PATCH 124/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.3+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index a8690acac..b8b190427 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.11.3+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 5151e5e97..0a9f404b7 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.11.3+api3 diff --git a/pom.xml b/pom.xml index 907892b84..980843e09 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.3+api3-SNAPSHOT + 3.11.3+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.3+api3 From 01db406222f863c108c93aa60c6cfb6e94cbee1c Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 13:16:18 +0100 Subject: [PATCH 125/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index b8b190427..53d6c1c85 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3 + 3.11.4+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 0a9f404b7..155ae389c 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3 + 3.11.4+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 980843e09..54c6a7bec 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.3+api3 + 3.11.4+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.3+api3 + HEAD From c4536370b58c07da43443b865b9f368009ae80ff Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 14:20:42 +0100 Subject: [PATCH 126/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.3+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 53d6c1c85..b8b190427 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.4+api3-SNAPSHOT + 3.11.3+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 155ae389c..0a9f404b7 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.4+api3-SNAPSHOT + 3.11.3+api3 diff --git a/pom.xml b/pom.xml index 54c6a7bec..980843e09 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.4+api3-SNAPSHOT + 3.11.3+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.3+api3 From 3bdbf7ab0697ce974ae3c74536ab764645c510ae Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Thu, 12 Dec 2024 14:43:34 +0100 Subject: [PATCH 127/155] Revert to orginal SNAPSHOT version after the unsuccessful release --- gooddata-java-model/pom.xml | 4 ++-- gooddata-java/pom.xml | 4 ++-- pom.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index b8b190427..f4f7332d1 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3 + 3.11.2+api3-SNAPSHOT @@ -103,4 +103,4 @@ - \ No newline at end of file + diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 0a9f404b7..afd6f374f 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3 + 3.11.2+api3-SNAPSHOT @@ -165,4 +165,4 @@ - \ No newline at end of file + diff --git a/pom.xml b/pom.xml index 980843e09..a24989562 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.3+api3 + 3.11.2+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.3+api3 + HEAD From 9c05121dd720dee02e407a32de1eb5a0711a0002 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 14:50:24 +0100 Subject: [PATCH 128/155] [maven-release-plugin] prepare release gooddata-java-parent-3.11.2+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index f4f7332d1..b61c2bbe7 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index afd6f374f..d71a13c45 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 diff --git a/pom.xml b/pom.xml index a24989562..26e584c0b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3-SNAPSHOT + 3.11.2+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.11.2+api3 From 70807344ef917e087778473a819ca4042aa81142 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Thu, 12 Dec 2024 14:50:27 +0100 Subject: [PATCH 129/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index b61c2bbe7..29079fec4 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index d71a13c45..773ab8a9e 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index 26e584c0b..907892b84 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.2+api3 + 3.11.3+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.11.2+api3 + HEAD From c8acc5c341c52742ac3f5e55e565d6c427d8e832 Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Wed, 18 Dec 2024 11:26:33 +0100 Subject: [PATCH 130/155] Introduce `totals` field in the visualization Bucket --- .../sdk/model/md/visualization/Bucket.java | 42 ++++++++++++++--- .../md/visualization/VisualizationObject.java | 17 +++++++ .../model/md/visualization/BucketTest.groovy | 47 ++++++++++++++----- .../visualization/mixedBucketWithTotals.json | 37 +++++++++++++++ 4 files changed, 125 insertions(+), 18 deletions(-) create mode 100644 gooddata-java-model/src/test/resources/md/visualization/mixedBucketWithTotals.json diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java index e4a07c2b1..83d81a4bb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java @@ -11,8 +11,10 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.gooddata.sdk.model.executeafm.afm.LocallyIdentifiable; +import com.gooddata.sdk.model.executeafm.resultspec.TotalItem; import java.io.Serializable; +import java.util.ArrayList; import java.util.List; import java.util.Objects; @@ -26,17 +28,33 @@ public class Bucket implements Serializable, LocallyIdentifiable { private static final long serialVersionUID = -7718720886547680021L; private final String localIdentifier; private final List items; + private final List totals; + + /** + * Creates new instance of bucket without totals + * + * @param localIdentifier local identifier of bucket + * @param items list of {@link BucketItem}s for this bucket + */ + public Bucket(@JsonProperty("localIdentifier") final String localIdentifier, + @JsonProperty("items") final List items) { + this(localIdentifier, items, null); + } /** * Creates new instance of bucket + * * @param localIdentifier local identifier of bucket - * @param items list of {@link BucketItem}s for this bucket + * @param items list of {@link BucketItem}s for this bucket + * @param totals list of {@link TotalItem}s for this bucket */ @JsonCreator public Bucket(@JsonProperty("localIdentifier") final String localIdentifier, - @JsonProperty("items") final List items) { + @JsonProperty("items") final List items, + @JsonProperty("totals") List totals) { this.localIdentifier = localIdentifier; this.items = items; + this.totals = totals; } /** @@ -53,6 +71,13 @@ public List getItems() { return items; } + /** + * @return list of defined {@link TotalItem}s + */ + public List getTotals() { + return totals; + } + @JsonIgnore VisualizationAttribute getOnlyAttribute() { if (getItems() != null && getItems().size() == 1) { @@ -67,15 +92,18 @@ VisualizationAttribute getOnlyAttribute() { @Override public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; + if (this == o) + return true; + if (o == null || getClass() != o.getClass()) + return false; Bucket bucket = (Bucket) o; - return Objects.equals(localIdentifier, bucket.localIdentifier) && - Objects.equals(items, bucket.items); + return Objects.equals(localIdentifier, bucket.localIdentifier) + && Objects.equals(items, bucket.items) + && Objects.equals(totals, bucket.totals); } @Override public int hashCode() { - return Objects.hash(localIdentifier, items); + return Objects.hash(localIdentifier, items, totals); } } diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java index 1526c50dd..25e957bc2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java @@ -24,6 +24,7 @@ import com.gooddata.sdk.model.executeafm.Execution; import com.gooddata.sdk.model.executeafm.afm.filter.ExtendedFilter; import com.gooddata.sdk.model.executeafm.resultspec.ResultSpec; +import com.gooddata.sdk.model.executeafm.resultspec.TotalItem; import com.gooddata.sdk.model.md.AbstractObj; import com.gooddata.sdk.model.md.Meta; import com.gooddata.sdk.model.md.Queryable; @@ -77,6 +78,14 @@ public List getMeasures() { return content.getMeasures(); } + /** + * @return all totals from all buckets in visualization object + */ + @JsonIgnore + public List getTotals() { + return content.getTotals(); + } + /** * Get measure by local identifier or null if not found * @param localIdentifier of measure @@ -391,6 +400,14 @@ public List getMeasures() { .collect(toList()); } + @JsonIgnore + public List getTotals() { + return buckets.stream() + .filter(bucket -> bucket.getTotals() != null) + .flatMap(bucket -> bucket.getTotals().stream()) + .collect(toList()); + } + @JsonIgnore public String getVisualizationClassUri() { return visualizationClass.getUri(); diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy index 3c19b351c..05bdd6cca 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/BucketTest.groovy @@ -6,6 +6,8 @@ package com.gooddata.sdk.model.md.visualization import com.gooddata.sdk.model.executeafm.UriObjQualifier +import com.gooddata.sdk.model.executeafm.resultspec.TotalItem +import com.gooddata.sdk.model.md.report.Total import nl.jqno.equalsverifier.EqualsVerifier import org.apache.commons.lang3.SerializationUtils import spock.lang.Shared @@ -18,6 +20,7 @@ import static spock.util.matcher.HamcrestSupport.that class BucketTest extends Specification { private static final String NO_ITEMS_BUCKET = "md/visualization/noItemsBucket.json" private static final String MIXED_BUCKET = "md/visualization/mixedBucket.json" + private static final String MIXED_BUCKET_WITH_TOTALS = "md/visualization/mixedBucketWithTotals.json" private static final String ATTRIBUTE_BUCKET = "md/visualization/attributeBucket.json" private static final String MEASURE_BUCKET = "md/visualization/measureBucket.json" private static final String MULTIPLE_ATTRIBUTES_BUCKET = "md/visualization/multipleAttributesBucket.json" @@ -32,19 +35,41 @@ class BucketTest extends Specification { that new Bucket("noItems", new ArrayList()), jsonEquals(noItemsBucket) } - @SuppressWarnings("GrDeprecatedAPIUsage") def "should serialize full"() { expect: - that new Bucket("attributeBucket", [ - new VisualizationAttribute(new UriObjQualifier("/uri/to/displayForm"), "attribute", "Attribute Alias"), - new Measure( - new VOSimpleMeasureDefinition(new UriObjQualifier("/uri/to/measure"), "sum", false, []), - "measure", - "Measure Alias", - "Measure", - null - ) - ]), jsonEquals(mixedBucket) + that new Bucket( + "attributeBucket", + [ + new VisualizationAttribute(new UriObjQualifier("/uri/to/displayForm"), "attribute", "Attribute Alias"), + new Measure( + new VOSimpleMeasureDefinition(new UriObjQualifier("/uri/to/measure"), "sum", false, []), + "measure", + "Measure Alias", + "Measure", + null + ) + ] as List + ), jsonEquals(mixedBucket) + } + + def "should serialize full with totals"() { + expect: + that new Bucket( + "attributeBucket", + [ + new VisualizationAttribute(new UriObjQualifier("/uri/to/displayForm"), "attribute", "Attribute Alias"), + new Measure( + new VOSimpleMeasureDefinition(new UriObjQualifier("/uri/to/measure"), "sum", false, []), + "measure", + "Measure Alias", + "Measure", + null + ) + ] as List, + [ + new TotalItem("measure", Total.NAT, "attribute") + ] + ), jsonEquals(readObjectFromResource("/$MIXED_BUCKET_WITH_TOTALS", Bucket.class)) } def "should return only attribute from bucket"() { diff --git a/gooddata-java-model/src/test/resources/md/visualization/mixedBucketWithTotals.json b/gooddata-java-model/src/test/resources/md/visualization/mixedBucketWithTotals.json new file mode 100644 index 000000000..988a10a80 --- /dev/null +++ b/gooddata-java-model/src/test/resources/md/visualization/mixedBucketWithTotals.json @@ -0,0 +1,37 @@ +{ + "localIdentifier": "attributeBucket", + "items": [ + { + "visualizationAttribute": { + "localIdentifier": "attribute", + "displayForm": { + "uri": "/uri/to/displayForm" + }, + "alias": "Attribute Alias" + } + }, { + "measure": { + "localIdentifier": "measure", + "title": "Measure", + "alias": "Measure Alias", + "definition": { + "measureDefinition": { + "item": { + "uri": "/uri/to/measure" + }, + "aggregation": "sum", + "computeRatio": false, + "filters": [] + } + } + } + } + ], + "totals": [ + { + "measureIdentifier": "measure", + "type": "nat", + "attributeIdentifier": "attribute" + } + ] +} From caa39b027065edc6921bc18cecb02d6510bfff68 Mon Sep 17 00:00:00 2001 From: Peter Plochan Date: Wed, 18 Dec 2024 15:22:18 +0100 Subject: [PATCH 131/155] Add new AFM execution conversion methods with totals support * `VisualizationConverter.convertToResultSpecWithTotals` * `VisualizationConverter.convertToAfmWithNativeTotals` * `VisualizationConverter.convertToExecutionWithTotals` --- .../visualization/VisualizationConverter.java | 167 +++++++++++++++++- .../md/visualization/VisualizationObject.java | 23 +++ .../VisualizationConverterTest.groovy | 74 +++++++- .../complextTableWithTotalsConvertedAfm.json | 85 +++++++++ .../executionComplexTableConverted.json | 147 +++++++++++++++ .../visualization/complexTableWithTotals.json | 117 ++++++++++++ 6 files changed, 605 insertions(+), 8 deletions(-) create mode 100644 gooddata-java-model/src/test/resources/executeafm/afm/complextTableWithTotalsConvertedAfm.json create mode 100644 gooddata-java-model/src/test/resources/executeafm/executionComplexTableConverted.json create mode 100644 gooddata-java-model/src/test/resources/md/visualization/complexTableWithTotals.json diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java index c5598f6bc..73397793f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java @@ -11,6 +11,7 @@ import com.gooddata.sdk.model.executeafm.Execution; import com.gooddata.sdk.model.executeafm.afm.Afm; import com.gooddata.sdk.model.executeafm.afm.AttributeItem; +import com.gooddata.sdk.model.executeafm.afm.NativeTotalItem; import com.gooddata.sdk.model.executeafm.afm.filter.CompatibilityFilter; import com.gooddata.sdk.model.executeafm.afm.filter.DateFilter; import com.gooddata.sdk.model.executeafm.afm.filter.ExtendedFilter; @@ -24,8 +25,11 @@ import com.gooddata.sdk.model.executeafm.resultspec.Dimension; import com.gooddata.sdk.model.executeafm.resultspec.ResultSpec; import com.gooddata.sdk.model.executeafm.resultspec.SortItem; +import com.gooddata.sdk.model.executeafm.resultspec.TotalItem; +import com.gooddata.sdk.model.md.report.Total; import java.util.ArrayList; +import java.util.HashSet; import java.util.List; import java.util.function.Function; import java.util.stream.Collectors; @@ -43,9 +47,12 @@ public abstract class VisualizationConverter { /** * Generate Execution from Visualization object. + *

+ * NOTE: totals are not included in this conversion * * @param visualizationObject which will be converted to {@link Execution} - * @param visualizationClassGetter {@link Function} for fetching VisualizationClass, which is necessary for correct generation of {@link ResultSpec} + * @param visualizationClassGetter {@link Function} for fetching VisualizationClass, + * which is necessary for correct generation of {@link ResultSpec} * @return {@link Execution} object * @see #convertToExecution(VisualizationObject, VisualizationClass) */ @@ -59,6 +66,8 @@ public static Execution convertToExecution(final VisualizationObject visualizati /** * Generate Execution from Visualization object. + *

+ * NOTE: totals are not included in this conversion * * @param visualizationObject which will be converted to {@link Execution} * @param visualizationClass visualizationClass, which is necessary for correct generation of {@link ResultSpec} @@ -75,27 +84,80 @@ public static Execution convertToExecution(final VisualizationObject visualizati return new Execution(afm, resultSpec); } + /** + * Generate Execution from Visualization object with totals included. + * + * @param visualizationObject which will be converted to {@link Execution} + * @param visualizationClassGetter {@link Function} for fetching VisualizationClass, + * which is necessary for correct generation of {@link ResultSpec} + * @return {@link Execution} object + * @see #convertToExecutionWithTotals(VisualizationObject, VisualizationClass) + */ + public static Execution convertToExecutionWithTotals(final VisualizationObject visualizationObject, + final Function visualizationClassGetter) { + notNull(visualizationObject, "visualizationObject"); + notNull(visualizationClassGetter, "visualizationClassGetter"); + return convertToExecutionWithTotals(visualizationObject, + visualizationClassGetter.apply(visualizationObject.getVisualizationClassUri())); + } + + /** + * Generate Execution from Visualization object with totals included. + * + * @param visualizationObject which will be converted to {@link Execution} + * @param visualizationClass visualizationClass, which is necessary for correct generation of {@link ResultSpec} + * @return {@link Execution} object + * @see #convertToAfmWithNativeTotals(VisualizationObject) + * @see #convertToResultSpecWithTotals(VisualizationObject, VisualizationClass) + */ + public static Execution convertToExecutionWithTotals(final VisualizationObject visualizationObject, + final VisualizationClass visualizationClass) { + notNull(visualizationObject, "visualizationObject"); + notNull(visualizationClass, "visualizationClass"); + ResultSpec resultSpec = convertToResultSpecWithTotals(visualizationObject, visualizationClass); + Afm afm = convertToAfmWithNativeTotals(visualizationObject); + return new Execution(afm, resultSpec); + } + /** * Generate Afm from Visualization object. + *

+ * NOTE: native totals are not included in this conversion * * @param visualizationObject which will be converted to {@link Execution} * @return {@link Afm} object */ public static Afm convertToAfm(final VisualizationObject visualizationObject) { + notNull(visualizationObject, "visualizationObject"); + final VisualizationObject visualizationObjectWithoutTotals = removeTotals(visualizationObject); + return convertToAfmWithNativeTotals(visualizationObjectWithoutTotals); + } + + /** + * Generate Afm from Visualization object with native totals included. + * + * @param visualizationObject which will be converted to {@link Execution} + * @return {@link Afm} object + */ + public static Afm convertToAfmWithNativeTotals(final VisualizationObject visualizationObject) { notNull(visualizationObject, "visualizationObject"); final List attributes = convertAttributes(visualizationObject.getAttributes()); final List filters = convertFilters(visualizationObject.getFilters()); final List measures = convertMeasures(visualizationObject.getMeasures()); + final List totals = convertNativeTotals(visualizationObject); - return new Afm(attributes, filters, measures, null); + return new Afm(attributes, filters, measures, totals); } /** * Generate ResultSpec from Visualization object. Currently {@link ResultSpec}'s {@link Dimension}s can be generated * for table and four types of chart: bar, column, line and pie. + *

+ * NOTE: totals are not included in this conversion * * @param visualizationObject which will be converted to {@link Execution} - * @param visualizationClassGetter {@link Function} for fetching VisualizationClass, which is necessary for correct generation of {@link ResultSpec} + * @param visualizationClassGetter {@link Function} for fetching VisualizationClass, + * which is necessary for correct generation of {@link ResultSpec} * @return {@link Execution} object */ public static ResultSpec convertToResultSpec(final VisualizationObject visualizationObject, @@ -109,6 +171,8 @@ public static ResultSpec convertToResultSpec(final VisualizationObject visualiza /** * Generate ResultSpec from Visualization object. Currently {@link ResultSpec}'s {@link Dimension}s can be generated * for table and four types of chart: bar, column, line and pie. + *

+ * NOTE: totals are not included in this conversion * * @param visualizationObject which will be converted to {@link Execution} * @param visualizationClass VisualizationClass, which is necessary for correct generation of {@link ResultSpec} @@ -118,6 +182,39 @@ public static ResultSpec convertToResultSpec(final VisualizationObject visualiza final VisualizationClass visualizationClass) { notNull(visualizationObject, "visualizationObject"); notNull(visualizationClass, "visualizationClass"); + final VisualizationObject visualizationObjectWithoutTotals = removeTotals(visualizationObject); + return convertToResultSpecWithTotals(visualizationObjectWithoutTotals, visualizationClass); + } + + /** + * Generate ResultSpec from Visualization object with totals included. Currently {@link ResultSpec}'s {@link Dimension}s + * can be generated for table and four types of chart: bar, column, line and pie. + * + * @param visualizationObject which will be converted to {@link Execution} + * @param visualizationClassGetter {@link Function} for fetching VisualizationClass, + * which is necessary for correct generation of {@link ResultSpec} + * @return {@link Execution} object + */ + public static ResultSpec convertToResultSpecWithTotals(final VisualizationObject visualizationObject, + final Function visualizationClassGetter) { + notNull(visualizationObject, "visualizationObject"); + notNull(visualizationClassGetter, "visualizationClassGetter"); + return convertToResultSpecWithTotals(visualizationObject, + visualizationClassGetter.apply(visualizationObject.getVisualizationClassUri())); + } + + /** + * Generate ResultSpec from Visualization object with totals included. Currently {@link ResultSpec}'s {@link Dimension}s + * can be generated for table and four types of chart: bar, column, line and pie. + * + * @param visualizationObject which will be converted to {@link Execution} + * @param visualizationClass VisualizationClass, which is necessary for correct generation of {@link ResultSpec} + * @return {@link Execution} object + */ + public static ResultSpec convertToResultSpecWithTotals(final VisualizationObject visualizationObject, + final VisualizationClass visualizationClass) { + notNull(visualizationObject, "visualizationObject"); + notNull(visualizationClass, "visualizationClass"); isTrue(visualizationObject.getVisualizationClassUri().equals(visualizationClass.getUri()), "visualizationClass URI does not match the URI within visualizationObject, " + "you're trying to create ResultSpec for incompatible objects"); @@ -144,6 +241,21 @@ static List parseSorting(final String properties) throws Exception { return MAPPER.convertValue(nodeSortItems, mapType); } + /** + * Creates a new {@link VisualizationObject} derived from the original one, with all "totals" removed from its buckets. + * This is to ensure backward compatibility in cases where totals were not previously handled. + * + * @param visualizationObject original {@link VisualizationObject} + * @return a new VisualizationObject derived from the original but without any totals in the buckets. + */ + private static VisualizationObject removeTotals(final VisualizationObject visualizationObject) { + final List bucketsWithoutTotals = visualizationObject.getBuckets().stream() + // create buckets without totals + .map(bucket -> new Bucket(bucket.getLocalIdentifier(), bucket.getItems())) + .collect(toList()); + return visualizationObject.withBuckets(bucketsWithoutTotals); + } + private static List getDimensions(final VisualizationObject visualizationObject, final VisualizationType visualizationType) { switch (visualizationType) { @@ -216,12 +328,16 @@ private static List getDimensionsForTable(final VisualizationObject v List dimensions = new ArrayList<>(); List attributes = visualizationObject.getAttributes(); + List totals = visualizationObject.getTotals(); if (!attributes.isEmpty()) { - dimensions.add(new Dimension(attributes.stream() + final Dimension attributeDimension = new Dimension(attributes.stream() .map(VisualizationAttribute::getLocalIdentifier) - .collect(toList()) - )); + .collect(toList())); + if (!totals.isEmpty()) { + attributeDimension.setTotals(new HashSet<>(totals)); + } + dimensions.add(attributeDimension); } else { dimensions.add(new Dimension(new ArrayList<>())); } @@ -316,4 +432,43 @@ private static List removeIrrelevantFilters(final List filters) { }) .collect(Collectors.toList()); } + + private static List convertNativeTotals(final VisualizationObject visualizationObject) { + final List attributeBuckets = getAttributeBuckets(visualizationObject); + final List attributeIds = getIdsFromAttributeBuckets(attributeBuckets); + return attributeBuckets.stream() + .filter(bucket -> bucket.getTotals() != null) + .flatMap(bucket -> bucket.getTotals().stream()) + .filter(totalItem -> isNativeTotal(totalItem) && attributeIds.contains(totalItem.getAttributeIdentifier())) + .map(totalItem -> convertToNativeTotalItem(totalItem, attributeIds)) + .collect(toList()); + } + + private static NativeTotalItem convertToNativeTotalItem(TotalItem totalItem, List attributeIds) { + final int attributeIdx = attributeIds.indexOf(totalItem.getAttributeIdentifier()); + return new NativeTotalItem( + totalItem.getMeasureIdentifier(), + new ArrayList<>(attributeIds.subList(0, attributeIdx)) + ); + } + + private static List getAttributeBuckets(final VisualizationObject visualizationObject) { + return visualizationObject.getBuckets().stream() + .filter(bucket -> bucket.getItems().stream().allMatch(AttributeItem.class::isInstance)) + .collect(toList()); + } + + private static List getIdsFromAttributeBuckets(final List attributeBuckets) { + return attributeBuckets.stream() + .flatMap(bucket -> + bucket.getItems().stream() + .map(AttributeItem.class::cast) + .map(AttributeItem::getLocalIdentifier) + ) + .collect(toList()); + } + + private static boolean isNativeTotal(TotalItem totalItem) { + return totalItem.getType() != null && Total.NAT.name().equals(totalItem.getType().toUpperCase()); + } } diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java index 25e957bc2..6b73969c7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java @@ -33,6 +33,7 @@ import java.io.Serializable; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.function.Function; @@ -225,6 +226,14 @@ public void setBuckets(List buckets) { content.setBuckets(buckets); } + /** + * @return a new copy of this {@link VisualizationObject} with the specified buckets + */ + @JsonIgnore + public VisualizationObject withBuckets(List buckets) { + return new VisualizationObject(content.withBuckets(buckets), meta); + } + /** * @return filters from visualization object */ @@ -433,5 +442,19 @@ public UriObjQualifier getVisualizationClass() { public Map getReferenceItems() { return referenceItems; } + + /** + * @return a new copy of this {@link Content} with the specified buckets + */ + @JsonIgnore + public Content withBuckets(List buckets) { + return new Content( + visualizationClass, + buckets, + filters != null ? new ArrayList<>(filters) : null, + properties, + referenceItems != null ? new HashMap<>(referenceItems) : null + ); + } } } diff --git a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy index 08ac1d227..49dcf6529 100644 --- a/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy +++ b/gooddata-java-model/src/test/groovy/com/gooddata/sdk/model/md/visualization/VisualizationConverterTest.groovy @@ -6,6 +6,8 @@ package com.gooddata.sdk.model.md.visualization import com.fasterxml.jackson.core.JsonParseException +import com.fasterxml.jackson.databind.ObjectMapper +import com.gooddata.sdk.model.executeafm.Execution import com.gooddata.sdk.model.executeafm.LocalIdentifierQualifier import com.gooddata.sdk.model.executeafm.UriObjQualifier import com.gooddata.sdk.model.executeafm.afm.filter.AbsoluteDateFilter @@ -26,6 +28,7 @@ import com.gooddata.sdk.model.executeafm.resultspec.MeasureLocatorItem import com.gooddata.sdk.model.executeafm.resultspec.MeasureSortItem import com.gooddata.sdk.model.executeafm.resultspec.ResultSpec import com.gooddata.sdk.model.executeafm.resultspec.SortItem +import com.gooddata.sdk.model.executeafm.resultspec.TotalItem import spock.lang.Specification import spock.lang.Unroll @@ -35,9 +38,12 @@ import java.util.function.Function import static VisualizationConverter.convertToAfm import static VisualizationConverter.convertToResultSpec import static VisualizationConverter.parseSorting +import static com.gooddata.sdk.model.md.visualization.VisualizationConverter.convertToAfmWithNativeTotals import static com.gooddata.sdk.model.md.visualization.VisualizationConverter.convertToExecution import static com.gooddata.sdk.common.util.ResourceUtils.readObjectFromResource +import static com.gooddata.sdk.model.md.visualization.VisualizationConverter.convertToResultSpecWithTotals import static net.javacrumbs.jsonunit.JsonMatchers.jsonEquals +import static spock.util.matcher.HamcrestSupport.expect import static spock.util.matcher.HamcrestSupport.that class VisualizationConverterTest extends Specification { @@ -48,6 +54,9 @@ class VisualizationConverterTest extends Specification { private static final String MULTIPLE_ATTRIBUTE_BUCKETS = "md/visualization/multipleAttributeBucketsVisualization.json" private static final String STACKED_COLUMN_CHART = "md/visualization/stackedColumnChart.json" private static final String LINE_CHART = "md/visualization/lineChart.json" + private static final String TABLE_WITH_TOTALS = "md/visualization/complexTableWithTotals.json" + private static final String AFM_FROM_TABLE_WITH_TOTALS = "executeafm/afm/complextTableWithTotalsConvertedAfm.json" + private static final String EXECUTION_FROM_TABLE_WITH_TOTALS = "executeafm/executionComplexTableConverted.json" @SuppressWarnings("GrDeprecatedAPIUsage") def "should convert complex"() { @@ -72,7 +81,7 @@ class VisualizationConverterTest extends Specification { ), "measure1", "Measure 1 alias", null) ], - null + [] ) VisualizationObject visualizationObject = readObjectFromResource("/$COMPLEX_VISUALIZATION", VisualizationObject) Afm converted = convertToAfm(visualizationObject) @@ -83,7 +92,7 @@ class VisualizationConverterTest extends Specification { def "should convert simple"() { given: - Afm expectedAfm = new Afm([], [], [], null) + Afm expectedAfm = new Afm([], [], [], []) VisualizationObject visualizationObject = readObjectFromResource("/$SIMPLE_VISUALIZATION", VisualizationObject) Afm converted = convertToAfm(visualizationObject) @@ -91,6 +100,15 @@ class VisualizationConverterTest extends Specification { that converted, jsonEquals(expectedAfm) } + def "should convert AFM of complex pivot table with totals"() { + given: + Afm expectedAfm = readObjectFromResource("/$AFM_FROM_TABLE_WITH_TOTALS", Afm) + VisualizationObject visualizationObject = readObjectFromResource("/$TABLE_WITH_TOTALS", VisualizationObject) + Afm converted = convertToAfmWithNativeTotals(visualizationObject) + + expect: + that converted, jsonEquals(expectedAfm) + } @Unroll def "should generate result spec for table with default sorting from #name"() { @@ -119,6 +137,58 @@ class VisualizationConverterTest extends Specification { ) } + def "should generate result spec for complex table with totals"() { + when: + VisualizationObject vo = readObjectFromResource("/$TABLE_WITH_TOTALS", VisualizationObject) + Function getter = { vizObject -> + Stub(VisualizationClass) { + getVisualizationType() >> VisualizationType.TABLE + getUri() >> vo.getVisualizationClassUri() + } + } + ResultSpec converted = convertToResultSpecWithTotals(vo, getter) + then: + that converted, jsonEquals( + // pivot table is simplified to a basic table (2 dimensions: measureGroup and attributes) + new ResultSpec([ + new Dimension( + [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9", + "023641d306f84921be39d0aa1d6464db", + "a22843f5d77f48b4938ccfb460eb8be4", + "a77983fcc9574f6bad6be1d3cb08bf71" + ], + [ + new TotalItem("fd0164f14ec2444b9b5a7140ce059036", "nat", "e4bb25477bca4fb2a29a4b80d94568d4"), + new TotalItem("fd0164f14ec2444b9b5a7140ce059036", "nat", "9008f5d33b3e41279402a25e2f05d0c9"), + new TotalItem("fd0164f14ec2444b9b5a7140ce059036", "nat", "a22843f5d77f48b4938ccfb460eb8be4"), + new TotalItem("fd0164f14ec2444b9b5a7140ce059036", "nat", "a77983fcc9574f6bad6be1d3cb08bf71"), + new TotalItem("fd0164f14ec2444b9b5a7140ce059036", "sum", "e4bb25477bca4fb2a29a4b80d94568d4"), + new TotalItem("fd0164f14ec2444b9b5a7140ce059036", "nat", "023641d306f84921be39d0aa1d6464db") + ] as Set + ), + new Dimension(["measureGroup"], null) + ], [new AttributeSortItem("asc", "e4bb25477bca4fb2a29a4b80d94568d4", null)]) + ) + } + + def "should generate execution for complex table with totals"() { + given: + Execution expectedExecution = readObjectFromResource("/$EXECUTION_FROM_TABLE_WITH_TOTALS", Execution) + VisualizationObject vo = readObjectFromResource("/$TABLE_WITH_TOTALS", VisualizationObject) + Function getter = { vizObject -> + Stub(VisualizationClass) { + getVisualizationType() >> VisualizationType.TABLE + getUri() >> vo.getVisualizationClassUri() + } + } + Execution converted = VisualizationConverter.convertToExecutionWithTotals(vo, getter) + + expect: + that converted, jsonEquals(expectedExecution) + } + @Unroll def "should generate result spec for #type"() { given: diff --git a/gooddata-java-model/src/test/resources/executeafm/afm/complextTableWithTotalsConvertedAfm.json b/gooddata-java-model/src/test/resources/executeafm/afm/complextTableWithTotalsConvertedAfm.json new file mode 100644 index 000000000..ae37d654d --- /dev/null +++ b/gooddata-java-model/src/test/resources/executeafm/afm/complextTableWithTotalsConvertedAfm.json @@ -0,0 +1,85 @@ +{ + "measures": [ + { + "localIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "definition": { + "measureDefinition": { + "filters": [], + "item": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/9211" + } + } + }, + "alias": "_Close [BOP]" + } + ], + "attributes": [ + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1024" + }, + "localIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1028" + }, + "localIdentifier": "9008f5d33b3e41279402a25e2f05d0c9" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1086" + }, + "localIdentifier": "023641d306f84921be39d0aa1d6464db" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1805" + }, + "localIdentifier": "a22843f5d77f48b4938ccfb460eb8be4" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1094" + }, + "localIdentifier": "a77983fcc9574f6bad6be1d3cb08bf71" + } + ], + "nativeTotals": [ + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4" + ] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9" + ] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9", + "023641d306f84921be39d0aa1d6464db" + ] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9", + "023641d306f84921be39d0aa1d6464db", + "a22843f5d77f48b4938ccfb460eb8be4" + ] + } + ], + "filters":[] +} diff --git a/gooddata-java-model/src/test/resources/executeafm/executionComplexTableConverted.json b/gooddata-java-model/src/test/resources/executeafm/executionComplexTableConverted.json new file mode 100644 index 000000000..b20f4ed76 --- /dev/null +++ b/gooddata-java-model/src/test/resources/executeafm/executionComplexTableConverted.json @@ -0,0 +1,147 @@ +{ + "execution": { + "afm": { + "attributes": [ + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1024" + }, + "localIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1028" + }, + "localIdentifier": "9008f5d33b3e41279402a25e2f05d0c9" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1086" + }, + "localIdentifier": "023641d306f84921be39d0aa1d6464db" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1805" + }, + "localIdentifier": "a22843f5d77f48b4938ccfb460eb8be4" + }, + { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1094" + }, + "localIdentifier": "a77983fcc9574f6bad6be1d3cb08bf71" + } + ], + "filters": [], + "measures": [ + { + "definition": { + "measureDefinition": { + "item": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/9211" + }, + "filters": [] + } + }, + "localIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "alias": "_Close [BOP]" + } + ], + "nativeTotals": [ + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4" + ] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9" + ] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9", + "023641d306f84921be39d0aa1d6464db" + ] + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9", + "023641d306f84921be39d0aa1d6464db", + "a22843f5d77f48b4938ccfb460eb8be4" + ] + } + ] + }, + "resultSpec": { + "dimensions": [ + { + "itemIdentifiers": [ + "e4bb25477bca4fb2a29a4b80d94568d4", + "9008f5d33b3e41279402a25e2f05d0c9", + "023641d306f84921be39d0aa1d6464db", + "a22843f5d77f48b4938ccfb460eb8be4", + "a77983fcc9574f6bad6be1d3cb08bf71" + ], + "totals": [ + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "nat", + "attributeIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "nat", + "attributeIdentifier": "9008f5d33b3e41279402a25e2f05d0c9" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "nat", + "attributeIdentifier": "a22843f5d77f48b4938ccfb460eb8be4" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "nat", + "attributeIdentifier": "a77983fcc9574f6bad6be1d3cb08bf71" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "sum", + "attributeIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "nat", + "attributeIdentifier": "023641d306f84921be39d0aa1d6464db" + } + ] + }, + { + "itemIdentifiers": [ + "measureGroup" + ] + } + ], + "sorts": [ + { + "attributeSortItem": { + "direction": "asc", + "attributeIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4" + } + } + ] + } + } +} diff --git a/gooddata-java-model/src/test/resources/md/visualization/complexTableWithTotals.json b/gooddata-java-model/src/test/resources/md/visualization/complexTableWithTotals.json new file mode 100644 index 000000000..9dc185f47 --- /dev/null +++ b/gooddata-java-model/src/test/resources/md/visualization/complexTableWithTotals.json @@ -0,0 +1,117 @@ +{ + "visualizationObject": { + "content": { + "buckets": [ + { + "localIdentifier": "measures", + "items": [ + { + "measure": { + "definition": { + "measureDefinition": { + "item": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/9211" + } + } + }, + "title": "_Close [BOP]", + "localIdentifier": "fd0164f14ec2444b9b5a7140ce059036" + } + } + ] + }, + { + "items": [ + { + "visualizationAttribute": { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1024" + }, + "localIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4" + } + }, + { + "visualizationAttribute": { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1028" + }, + "localIdentifier": "9008f5d33b3e41279402a25e2f05d0c9" + } + }, + { + "visualizationAttribute": { + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1086" + }, + "localIdentifier": "023641d306f84921be39d0aa1d6464db" + } + } + ], + "totals": [ + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4", + "type": "sum" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifier": "e4bb25477bca4fb2a29a4b80d94568d4", + "type": "nat" + }, + { + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "attributeIdentifier": "9008f5d33b3e41279402a25e2f05d0c9", + "type": "nat" + }, + { + "attributeIdentifier": "023641d306f84921be39d0aa1d6464db", + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036", + "type": "nat" + } + ], + "localIdentifier": "attribute" + }, + { + "items": [ + { + "visualizationAttribute": { + "localIdentifier": "a22843f5d77f48b4938ccfb460eb8be4", + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1805" + } + } + }, + { + "visualizationAttribute": { + "localIdentifier": "a77983fcc9574f6bad6be1d3cb08bf71", + "displayForm": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/1094" + } + } + } + ], + "totals": [ + { + "type": "nat", + "attributeIdentifier": "a22843f5d77f48b4938ccfb460eb8be4", + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036" + }, + { + "type": "nat", + "attributeIdentifier": "a77983fcc9574f6bad6be1d3cb08bf71", + "measureIdentifier": "fd0164f14ec2444b9b5a7140ce059036" + } + ], + "localIdentifier": "columns" + } + ], + "properties": "{\"sortItems\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e4bb25477bca4fb2a29a4b80d94568d4\",\"direction\":\"asc\"}}]}", + "visualizationClass": { + "uri": "/gdc/md/w3hub93g7fwmvx60pkt2v8cr56530t0l/obj/75547" + } + }, + "meta": { + "title": "complex-with-totals" + } + } +} From eede3e5687f83113bc3ff103a8c8ac61ae538a94 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Tue, 7 Jan 2025 08:48:03 +0100 Subject: [PATCH 132/155] [maven-release-plugin] prepare release gooddata-java-parent-3.12.0+api3 --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 29079fec4..970641c4e 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.12.0+api3 diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index 773ab8a9e..c92ef7a5b 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.11.3+api3-SNAPSHOT + 3.12.0+api3 diff --git a/pom.xml b/pom.xml index 907892b84..db39c2a94 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.11.3+api3-SNAPSHOT + 3.12.0+api3 ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - HEAD + gooddata-java-parent-3.12.0+api3 From 1ece074b00ac3b1e97740e6800a12d5fb84a45c0 Mon Sep 17 00:00:00 2001 From: billie-jean Date: Tue, 7 Jan 2025 08:48:05 +0100 Subject: [PATCH 133/155] [maven-release-plugin] prepare for next development iteration --- gooddata-java-model/pom.xml | 2 +- gooddata-java/pom.xml | 2 +- pom.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 970641c4e..43fdc923f 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.12.0+api3 + 3.12.1+api3-SNAPSHOT diff --git a/gooddata-java/pom.xml b/gooddata-java/pom.xml index c92ef7a5b..81a0ebad9 100644 --- a/gooddata-java/pom.xml +++ b/gooddata-java/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.12.0+api3 + 3.12.1+api3-SNAPSHOT diff --git a/pom.xml b/pom.xml index db39c2a94..a9bc00e92 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ gooddata-java-parent pom - 3.12.0+api3 + 3.12.1+api3-SNAPSHOT ${project.artifactId} GoodData Java SDK https://github.com/gooddata/gooddata-java @@ -26,7 +26,7 @@ git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git scm:git:git@github.com:gooddata/gooddata-java.git - gooddata-java-parent-3.12.0+api3 + HEAD From 9bd50a45230934083dd69cf229f06b5f98502d6b Mon Sep 17 00:00:00 2001 From: Petr Klemsinsky Date: Fri, 17 Jan 2025 08:29:11 +0000 Subject: [PATCH 134/155] chore(actions-update): Update github-actions --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af38bafa7..d9efe998a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,12 @@ jobs: builds-tests-coverage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 with: java-version: '11' distribution: 'adopt' - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} @@ -26,7 +26,7 @@ jobs: run: | mvn verify javadoc:javadoc jacoco:report -Pcoverage -B -V - name: Upload coverage report to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v5 with: file: ./**/target/site/jacoco/jacoco.xml name: codecov From 3e18a22f5875436a6b9c01434efe8cf98feb7920 Mon Sep 17 00:00:00 2001 From: "alexej.olesko" Date: Tue, 9 Sep 2025 11:16:37 +0200 Subject: [PATCH 135/155] BREAKING CHANGE: upgrade to jdk17, junit5, spring6, springboot3 JIRA:GRIF-315 --- .github/workflows/build.yml | 2 +- .sonar.settings | 2 +- README.md | 6 +- gooddata-java-model/pom.xml | 26 +- .../gooddata/sdk/model/account/Account.java | 3 +- .../gooddata/sdk/model/account/Accounts.java | 3 +- .../model/account/AccountsDeserializer.java | 3 +- .../sdk/model/account/SeparatorSettings.java | 3 +- .../sdk/model/auditevent/AccessLog.java | 3 +- .../sdk/model/auditevent/AccessLogs.java | 3 +- .../auditevent/AccessLogsDeserializer.java | 3 +- .../auditevent/AccessLogsSerializer.java | 3 +- .../sdk/model/auditevent/AuditEvent.java | 3 +- .../sdk/model/auditevent/AuditEvents.java | 3 +- .../auditevent/AuditEventsDeserializer.java | 3 +- .../auditevent/AuditEventsSerializer.java | 3 +- .../sdk/model/connector/ConnectorType.java | 3 +- .../sdk/model/connector/Integration.java | 3 +- .../connector/IntegrationProcessStatus.java | 3 +- .../sdk/model/connector/ProcessExecution.java | 3 +- .../sdk/model/connector/ProcessStatus.java | 3 +- .../gooddata/sdk/model/connector/Reload.java | 3 +- .../sdk/model/connector/Settings.java | 3 +- .../gooddata/sdk/model/connector/Status.java | 3 +- .../connector/Zendesk4ProcessExecution.java | 3 +- .../sdk/model/connector/Zendesk4Settings.java | 3 +- .../sdk/model/dataload/OutputStage.java | 3 +- .../model/dataload/processes/AsyncTask.java | 3 +- .../dataload/processes/DataloadProcess.java | 3 +- .../dataload/processes/DataloadProcesses.java | 3 +- .../dataload/processes/ProcessExecution.java | 3 +- .../processes/ProcessExecutionDetail.java | 3 +- .../processes/ProcessExecutionTask.java | 3 +- .../model/dataload/processes/ProcessType.java | 3 +- .../model/dataload/processes/Schedule.java | 3 +- .../dataload/processes/ScheduleExecution.java | 3 +- .../dataload/processes/ScheduleState.java | 3 +- .../model/dataload/processes/Schedules.java | 3 +- .../processes/SchedulesDeserializer.java | 3 +- .../sdk/model/dataset/DatasetLinks.java | 3 +- .../sdk/model/dataset/DatasetManifest.java | 3 +- .../sdk/model/dataset/DatasetManifests.java | 3 +- .../dataset/DatasetNotFoundException.java | 3 +- .../gooddata/sdk/model/dataset/EtlMode.java | 3 +- .../sdk/model/dataset/EtlModeType.java | 3 +- .../sdk/model/dataset/LookupMode.java | 3 +- .../gooddata/sdk/model/dataset/MaqlDml.java | 3 +- .../com/gooddata/sdk/model/dataset/Pull.java | 3 +- .../gooddata/sdk/model/dataset/PullTask.java | 3 +- .../gooddata/sdk/model/dataset/TaskState.java | 3 +- .../gooddata/sdk/model/dataset/Upload.java | 3 +- .../sdk/model/dataset/UploadMode.java | 4 +- .../sdk/model/dataset/UploadStatistics.java | 3 +- .../gooddata/sdk/model/dataset/Uploads.java | 3 +- .../sdk/model/dataset/UploadsInfo.java | 3 +- .../sdk/model/executeafm/Execution.java | 3 +- .../executeafm/IdentifierObjQualifier.java | 3 +- .../executeafm/LocalIdentifierQualifier.java | 3 +- .../sdk/model/executeafm/ObjQualifier.java | 3 +- .../sdk/model/executeafm/Qualifier.java | 3 +- .../sdk/model/executeafm/ResultPage.java | 3 +- .../sdk/model/executeafm/UriObjQualifier.java | 3 +- .../executeafm/VisualizationExecution.java | 3 +- .../sdk/model/executeafm/afm/Afm.java | 3 +- .../sdk/model/executeafm/afm/Aggregation.java | 3 +- .../afm/ArithmeticMeasureDefinition.java | 3 +- .../model/executeafm/afm/AttributeItem.java | 3 +- .../afm/DerivedMeasureDefinition.java | 3 +- .../executeafm/afm/LocallyIdentifiable.java | 3 +- .../executeafm/afm/MeasureDefinition.java | 3 +- .../sdk/model/executeafm/afm/MeasureItem.java | 3 +- .../model/executeafm/afm/NativeTotalItem.java | 3 +- .../afm/ObjIdentifierUtilities.java | 3 +- .../executeafm/afm/ObjQualifierConverter.java | 3 +- .../afm/OverPeriodDateAttribute.java | 3 +- .../afm/OverPeriodMeasureDefinition.java | 3 +- .../executeafm/afm/PopMeasureDefinition.java | 3 +- .../afm/PreviousPeriodDateDataSet.java | 3 +- .../afm/PreviousPeriodMeasureDefinition.java | 3 +- .../afm/SimpleMeasureDefinition.java | 3 +- .../afm/filter/AbsoluteDateFilter.java | 3 +- .../afm/filter/AttributeFilter.java | 3 +- .../afm/filter/AttributeFilterElements.java | 3 +- .../afm/filter/ComparisonCondition.java | 3 +- .../filter/ComparisonConditionOperator.java | 3 +- .../afm/filter/CompatibilityFilter.java | 3 +- .../executeafm/afm/filter/DateFilter.java | 3 +- .../afm/filter/ExpressionFilter.java | 3 +- .../executeafm/afm/filter/ExtendedFilter.java | 3 +- .../executeafm/afm/filter/FilterItem.java | 3 +- .../afm/filter/MeasureValueFilter.java | 3 +- .../filter/MeasureValueFilterCondition.java | 3 +- .../afm/filter/NegativeAttributeFilter.java | 3 +- .../afm/filter/PositiveAttributeFilter.java | 3 +- .../executeafm/afm/filter/RangeCondition.java | 3 +- .../afm/filter/RangeConditionOperator.java | 3 +- .../executeafm/afm/filter/RankingFilter.java | 3 +- .../afm/filter/RankingFilterOperator.java | 3 +- .../afm/filter/RelativeDateFilter.java | 3 +- .../filter/SimpleAttributeFilterElements.java | 3 +- .../filter/UriAttributeFilterElements.java | 3 +- .../filter/ValueAttributeFilterElements.java | 3 +- .../executeafm/response/AttributeHeader.java | 3 +- .../response/AttributeInHeader.java | 3 +- .../response/ExecutionResponse.java | 3 +- .../sdk/model/executeafm/response/Header.java | 3 +- .../response/MeasureGroupHeader.java | 3 +- .../response/MeasureHeaderItem.java | 3 +- .../executeafm/response/ResultDimension.java | 3 +- .../executeafm/response/TotalHeaderItem.java | 3 +- .../result/AttributeHeaderItem.java | 3 +- .../sdk/model/executeafm/result/Data.java | 3 +- .../sdk/model/executeafm/result/DataList.java | 3 +- .../model/executeafm/result/DataValue.java | 3 +- .../executeafm/result/ExecutionResult.java | 3 +- .../sdk/model/executeafm/result/Paging.java | 3 +- .../executeafm/result/ResultHeaderItem.java | 3 +- .../result/ResultMeasureHeaderItem.java | 3 +- .../result/ResultTotalHeaderItem.java | 3 +- .../sdk/model/executeafm/result/Warning.java | 3 +- .../resultspec/AttributeLocatorItem.java | 3 +- .../resultspec/AttributeSortAggregation.java | 3 +- .../resultspec/AttributeSortItem.java | 3 +- .../executeafm/resultspec/Dimension.java | 3 +- .../executeafm/resultspec/Direction.java | 3 +- .../executeafm/resultspec/LocatorItem.java | 3 +- .../resultspec/MeasureLocatorItem.java | 3 +- .../resultspec/MeasureSortItem.java | 3 +- .../executeafm/resultspec/ResultSpec.java | 3 +- .../model/executeafm/resultspec/SortItem.java | 3 +- .../executeafm/resultspec/TotalItem.java | 3 +- .../resultspec/TotalLocatorItem.java | 3 +- .../sdk/model/export/ClientExport.java | 3 +- .../sdk/model/export/ExecuteReport.java | 3 +- .../model/export/ExecuteReportDefinition.java | 3 +- .../sdk/model/export/ExportFormat.java | 3 +- .../sdk/model/export/ReportRequest.java | 4 +- .../sdk/model/featureflag/FeatureFlag.java | 3 +- .../sdk/model/featureflag/FeatureFlags.java | 3 +- .../model/featureflag/ProjectFeatureFlag.java | 3 +- .../featureflag/ProjectFeatureFlags.java | 3 +- .../gooddata/sdk/model/gdc/AboutLinks.java | 3 +- .../gooddata/sdk/model/gdc/AbstractMaql.java | 3 +- .../com/gooddata/sdk/model/gdc/AsyncTask.java | 3 +- .../gooddata/sdk/model/gdc/LinkEntries.java | 3 +- .../com/gooddata/sdk/model/gdc/RootLinks.java | 4 +- .../gooddata/sdk/model/gdc/TaskStatus.java | 3 +- .../gooddata/sdk/model/gdc/UriResponse.java | 3 +- .../model/hierarchicalconfig/ConfigItem.java | 3 +- .../model/hierarchicalconfig/ConfigItems.java | 3 +- .../model/hierarchicalconfig/SourceType.java | 3 +- .../gooddata/sdk/model/lcm/LcmEntities.java | 3 +- .../com/gooddata/sdk/model/lcm/LcmEntity.java | 3 +- .../sdk/model/lcm/LcmEntityFilter.java | 3 +- .../gooddata/sdk/model/md/AbstractObj.java | 3 +- .../com/gooddata/sdk/model/md/Attachment.java | 3 +- .../com/gooddata/sdk/model/md/Attribute.java | 3 +- .../sdk/model/md/AttributeDisplayForm.java | 3 +- .../sdk/model/md/AttributeElement.java | 3 +- .../sdk/model/md/AttributeElements.java | 3 +- .../gooddata/sdk/model/md/AttributeSort.java | 3 +- .../com/gooddata/sdk/model/md/BulkGet.java | 3 +- .../gooddata/sdk/model/md/BulkGetUris.java | 3 +- .../com/gooddata/sdk/model/md/Column.java | 3 +- .../sdk/model/md/DashboardAttachment.java | 3 +- .../sdk/model/md/DataLoadingColumn.java | 3 +- .../com/gooddata/sdk/model/md/Dataset.java | 3 +- .../com/gooddata/sdk/model/md/Dimension.java | 3 +- .../gooddata/sdk/model/md/DisplayForm.java | 3 +- .../java/com/gooddata/sdk/model/md/Entry.java | 3 +- .../com/gooddata/sdk/model/md/Expression.java | 3 +- .../java/com/gooddata/sdk/model/md/Fact.java | 3 +- .../sdk/model/md/IdentifierAndUri.java | 3 +- .../sdk/model/md/IdentifierToUri.java | 3 +- .../sdk/model/md/IdentifiersAndUris.java | 3 +- .../com/gooddata/sdk/model/md/InUseMany.java | 3 +- .../java/com/gooddata/sdk/model/md/Key.java | 3 +- .../com/gooddata/sdk/model/md/MaqlAst.java | 3 +- .../java/com/gooddata/sdk/model/md/Meta.java | 3 +- .../com/gooddata/sdk/model/md/Metric.java | 3 +- .../sdk/model/md/NestedAttribute.java | 3 +- .../java/com/gooddata/sdk/model/md/Obj.java | 3 +- .../sdk/model/md/ProjectDashboard.java | 3 +- .../java/com/gooddata/sdk/model/md/Query.java | 3 +- .../com/gooddata/sdk/model/md/Queryable.java | 3 +- .../sdk/model/md/ReportAttachment.java | 3 +- .../gooddata/sdk/model/md/Restriction.java | 3 +- .../gooddata/sdk/model/md/ScheduledMail.java | 3 +- .../sdk/model/md/ScheduledMailWhen.java | 3 +- .../com/gooddata/sdk/model/md/Service.java | 3 +- .../java/com/gooddata/sdk/model/md/Table.java | 3 +- .../gooddata/sdk/model/md/TableDataLoad.java | 3 +- .../com/gooddata/sdk/model/md/Updatable.java | 3 +- .../sdk/model/md/UriToIdentifier.java | 3 +- .../java/com/gooddata/sdk/model/md/Usage.java | 3 +- .../com/gooddata/sdk/model/md/UseMany.java | 3 +- .../gooddata/sdk/model/md/UseManyEntries.java | 3 +- .../md/dashboard/AnalyticalDashboard.java | 3 +- .../gooddata/sdk/model/md/dashboard/Kpi.java | 3 +- .../sdk/model/md/dashboard/KpiAlert.java | 3 +- .../filter/AttributeFilterReference.java | 3 +- .../filter/DashboardAttributeFilter.java | 3 +- .../dashboard/filter/DashboardDateFilter.java | 3 +- .../md/dashboard/filter/DashboardFilter.java | 3 +- .../filter/DashboardFilterContext.java | 3 +- .../dashboard/filter/DateFilterReference.java | 3 +- .../md/dashboard/filter/FilterReference.java | 3 +- .../model/md/maintenance/ExportProject.java | 3 +- .../md/maintenance/ExportProjectArtifact.java | 3 +- .../md/maintenance/ExportProjectToken.java | 3 +- .../md/maintenance/PartialMdArtifact.java | 3 +- .../model/md/maintenance/PartialMdExport.java | 3 +- .../md/maintenance/PartialMdExportToken.java | 3 +- .../sdk/model/md/report/AttributeInGrid.java | 3 +- .../gooddata/sdk/model/md/report/Filter.java | 3 +- .../gooddata/sdk/model/md/report/Grid.java | 3 +- .../sdk/model/md/report/GridElement.java | 3 +- .../md/report/GridElementDeserializer.java | 3 +- .../md/report/GridElementSerializer.java | 3 +- .../report/GridReportDefinitionContent.java | 3 +- .../sdk/model/md/report/MetricElement.java | 3 +- .../sdk/model/md/report/MetricGroup.java | 3 +- .../OneNumberReportDefinitionContent.java | 3 +- .../gooddata/sdk/model/md/report/Report.java | 3 +- .../sdk/model/md/report/ReportDefinition.java | 3 +- .../md/report/ReportDefinitionContent.java | 3 +- .../gooddata/sdk/model/md/report/Total.java | 3 +- .../sdk/model/md/visualization/Bucket.java | 3 +- .../model/md/visualization/BucketItem.java | 3 +- .../md/visualization/CollectionType.java | 3 +- .../sdk/model/md/visualization/Measure.java | 3 +- .../visualization/VOPopMeasureDefinition.java | 3 +- .../VOSimpleMeasureDefinition.java | 3 +- .../visualization/VisualizationAttribute.java | 3 +- .../md/visualization/VisualizationClass.java | 3 +- .../visualization/VisualizationConverter.java | 3 +- .../md/visualization/VisualizationObject.java | 3 +- .../md/visualization/VisualizationType.java | 3 +- .../sdk/model/notification/Channel.java | 3 +- .../sdk/model/notification/Configuration.java | 3 +- .../notification/EmailConfiguration.java | 3 +- .../model/notification/MessageTemplate.java | 3 +- .../sdk/model/notification/ProjectEvent.java | 3 +- .../sdk/model/notification/Subscription.java | 3 +- .../sdk/model/notification/TimerEvent.java | 3 +- .../sdk/model/notification/Trigger.java | 3 +- .../model/notification/TriggerCondition.java | 3 +- .../sdk/model/project/CreatedInvitations.java | 3 +- .../sdk/model/project/Environment.java | 3 +- .../sdk/model/project/Invitation.java | 4 +- .../sdk/model/project/Invitations.java | 3 +- .../gooddata/sdk/model/project/Project.java | 3 +- .../sdk/model/project/ProjectDriver.java | 3 +- .../sdk/model/project/ProjectEnvironment.java | 3 +- .../sdk/model/project/ProjectTemplate.java | 3 +- .../sdk/model/project/ProjectTemplates.java | 3 +- .../project/ProjectUsersUpdateResult.java | 3 +- .../project/ProjectValidationResult.java | 3 +- ...ProjectValidationResultGdcTimeElParam.java | 3 +- .../project/ProjectValidationResultItem.java | 3 +- .../ProjectValidationResultObjectParam.java | 3 +- .../project/ProjectValidationResultParam.java | 3 +- .../ProjectValidationResultSliElParam.java | 3 +- .../ProjectValidationResultStringParam.java | 3 +- .../project/ProjectValidationResults.java | 3 +- .../model/project/ProjectValidationType.java | 3 +- .../sdk/model/project/ProjectValidations.java | 3 +- .../gooddata/sdk/model/project/Projects.java | 3 +- .../com/gooddata/sdk/model/project/Role.java | 3 +- .../com/gooddata/sdk/model/project/Roles.java | 3 +- .../com/gooddata/sdk/model/project/User.java | 3 +- .../com/gooddata/sdk/model/project/Users.java | 3 +- .../sdk/model/project/UsersDeserializer.java | 3 +- .../sdk/model/project/UsersSerializer.java | 3 +- .../sdk/model/project/model/DiffRequest.java | 3 +- .../sdk/model/project/model/MaqlDdl.java | 3 +- .../sdk/model/project/model/MaqlDdlLinks.java | 3 +- .../sdk/model/project/model/ModelDiff.java | 3 +- .../sdk/model/projecttemplate/Template.java | 3 +- .../sdk/model/projecttemplate/Templates.java | 3 +- .../sdk/model/util/TagsDeserializer.java | 4 +- .../sdk/model/util/TagsSerializer.java | 4 +- .../gooddata/sdk/model/util/UriHelper.java | 3 +- .../sdk/model/warehouse/Warehouse.java | 3 +- .../sdk/model/warehouse/WarehouseSchema.java | 3 +- .../sdk/model/warehouse/WarehouseSchemas.java | 3 +- .../WarehouseSchemasDeserializer.java | 3 +- .../sdk/model/warehouse/WarehouseTask.java | 3 +- .../sdk/model/warehouse/WarehouseUser.java | 3 +- .../model/warehouse/WarehouseUserRole.java | 3 +- .../sdk/model/warehouse/WarehouseUsers.java | 3 +- .../warehouse/WarehouseUsersDeserializer.java | 3 +- .../warehouse/WarehouseUsersSerializer.java | 3 +- .../sdk/model/warehouse/Warehouses.java | 3 +- .../warehouse/WarehousesDeserializer.java | 3 +- .../model/warehouse/WarehousesSerializer.java | 3 +- .../account/SeparatorSettingsTest.groovy | 3 +- .../sdk/model/executeafm/ExecutionTest.groovy | 3 +- .../IdentifierObjQualifierTest.groovy | 3 +- .../LocalIdentifierQualifierTest.groovy | 3 +- .../model/executeafm/ObjQualifierTest.groovy | 3 +- .../sdk/model/executeafm/QualifierTest.groovy | 3 +- .../model/executeafm/ResultPageTest.groovy | 3 +- .../executeafm/UriObjQualifierTest.groovy | 3 +- .../VisualizationExecutionTest.groovy | 3 +- .../sdk/model/executeafm/afm/AfmTest.groovy | 3 +- .../ArithmeticMeasureDefinitionTest.groovy | 3 +- .../executeafm/afm/AttributeItemTest.groovy | 3 +- .../afm/MeasureDefinitionTest.groovy | 3 +- .../executeafm/afm/MeasureItemTest.groovy | 3 +- .../executeafm/afm/NativeTotalItemTest.groovy | 3 +- .../afm/ObjIdentifierUtilitiesTest.groovy | 3 +- .../afm/OverPeriodDateAttributeTest.groovy | 3 +- .../OverPeriodMeasureDefinitionTest.groovy | 3 +- .../afm/PopMeasureDefinitionTest.groovy | 3 +- .../afm/PreviousPeriodDateDataSetTest.groovy | 3 +- ...PreviousPeriodMeasureDefinitionTest.groovy | 3 +- .../afm/SimpleMeasureDefinitionTest.groovy | 3 +- .../afm/filter/AbsoluteDateFilterTest.groovy | 3 +- .../afm/filter/ComparisonConditionTest.groovy | 3 +- .../afm/filter/CompatibilityFilterTest.groovy | 3 +- .../afm/filter/ExpressionFilterTest.groovy | 3 +- .../afm/filter/ExtendedFilterTest.groovy | 3 +- .../afm/filter/FilterItemTest.groovy | 3 +- .../MeasureValueFilterConditionTest.groovy | 3 +- .../afm/filter/MeasureValueFilterTest.groovy | 3 +- .../filter/NegativeAttributeFilterTest.groovy | 3 +- .../filter/PositiveAttributeFilterTest.groovy | 3 +- .../afm/filter/RangeConditionTest.groovy | 3 +- .../filter/RankingFilterOperatorTest.groovy | 3 +- .../afm/filter/RankingFilterTest.groovy | 3 +- .../afm/filter/RelativeDateFilterTest.groovy | 3 +- .../UriAttributeFilterElementsTest.groovy | 3 +- .../ValueAttributeFilterElementsTest.groovy | 3 +- .../response/AttributeHeaderTest.groovy | 3 +- .../response/AttributeInHeaderTest.groovy | 3 +- .../response/ExecutionResponseTest.groovy | 3 +- .../executeafm/response/HeaderTest.groovy | 3 +- .../response/MeasureGroupHeaderTest.groovy | 3 +- .../response/MeasureHeaderItemTest.groovy | 3 +- .../response/ResultDimensionTest.groovy | 3 +- .../response/TotalHeaderItemTest.groovy | 3 +- .../result/AttributeHeaderItemTest.groovy | 3 +- .../executeafm/result/DataListTest.groovy | 3 +- .../model/executeafm/result/DataTest.groovy | 3 +- .../executeafm/result/DataValueTest.groovy | 3 +- .../result/ExecutionResultTest.groovy | 3 +- .../model/executeafm/result/PagingTest.groovy | 3 +- .../result/ResultHeaderItemTest.groovy | 3 +- .../result/ResultMeasureHeaderItemTest.groovy | 3 +- .../result/ResultTotalHeaderItemTest.groovy | 3 +- .../executeafm/result/WarningTest.groovy | 3 +- .../AttributeLocatorItemTest.groovy | 3 +- .../resultspec/AttributeSortItemTest.groovy | 3 +- .../resultspec/DimensionTest.groovy | 3 +- .../resultspec/MeasureLocatorItemTest.groovy | 3 +- .../resultspec/MeasureSortItemTest.groovy | 4 +- .../resultspec/ResultSpecTest.groovy | 3 +- .../resultspec/TotalItemTest.groovy | 3 +- .../resultspec/TotalLocatorItemTest.groovy | 3 +- .../sdk/model/lcm/LcmEntitiesTest.groovy | 3 +- .../sdk/model/lcm/LcmEntityFilterTest.groovy | 3 +- .../sdk/model/lcm/LcmEntityTest.groovy | 3 +- .../model/md/IdentifiersAndUrisTest.groovy | 3 +- .../sdk/model/md/UriToIdentifierTest.groovy | 4 +- .../dashboard/AnalyticalDashboardTest.groovy | 3 +- .../model/md/dashboard/KpiAlertTest.groovy | 3 +- .../sdk/model/md/dashboard/KpiTest.groovy | 3 +- .../AttributeFilterReferenceTest.groovy | 3 +- .../DashboardAttributeFilterTest.groovy | 3 +- .../filter/DashboardDateFilterTest.groovy | 3 +- .../filter/DashboardFilterContextTest.groovy | 3 +- .../filter/DateFilterReferenceTest.groovy | 3 +- .../sdk/model/md/report/TotalTest.groovy | 4 +- .../model/md/visualization/BucketTest.groovy | 3 +- .../model/md/visualization/MeasureTest.groovy | 3 +- .../VisualizationAttributeTest.groovy | 3 +- .../VisualizationClassTest.groovy | 3 +- .../VisualizationConverterTest.groovy | 3 +- .../VisualizationObjectTest.groovy | 3 +- .../sdk/model/project/ProjectsTest.groovy | 3 +- .../sdk/model/util/UriHelperTest.groovy | 3 +- .../sdk/model/account/AccountTest.java | 3 +- .../sdk/model/account/AccountsTest.java | 3 +- .../sdk/model/auditevent/AccessLogTest.java | 3 +- .../sdk/model/auditevent/AccessLogsTest.java | 3 +- .../sdk/model/auditevent/AuditEventTest.java | 4 +- .../sdk/model/auditevent/AuditEventsTest.java | 4 +- .../IntegrationProcessStatusTest.java | 3 +- .../sdk/model/connector/IntegrationTest.java | 4 +- .../model/connector/ProcessExecutionTest.java | 4 +- .../model/connector/ProcessStatusTest.java | 3 +- .../sdk/model/connector/ReloadTest.java | 4 +- .../sdk/model/connector/StatusTest.java | 4 +- .../Zendesk4ProcessExecutionTest.java | 4 +- .../model/connector/Zendesk4SettingsTest.java | 4 +- .../sdk/model/dataload/OutputStageTest.java | 3 +- .../processes/DataloadProcessTest.java | 4 +- .../processes/DataloadProcessesTest.java | 4 +- .../processes/ProcessExecutionDetailTest.java | 4 +- .../processes/ProcessExecutionTaskTest.java | 4 +- .../processes/ProcessExecutionTest.java | 4 +- .../processes/ScheduleExecutionTest.java | 3 +- .../dataload/processes/ScheduleTest.java | 4 +- .../dataload/processes/SchedulesTest.java | 4 +- .../sdk/model/dataset/DatasetLinksTest.java | 4 +- .../model/dataset/DatasetManifestTest.java | 3 +- .../sdk/model/dataset/MaqlDmlTest.java | 3 +- .../sdk/model/dataset/PullTaskTest.java | 3 +- .../gooddata/sdk/model/dataset/PullTest.java | 3 +- .../sdk/model/dataset/TaskStateTest.java | 3 +- .../model/dataset/UploadStatisticsTest.java | 4 +- .../sdk/model/dataset/UploadTest.java | 4 +- .../sdk/model/dataset/UploadsInfoTest.java | 4 +- .../sdk/model/dataset/UploadsTest.java | 3 +- .../sdk/model/export/ClientExportTest.java | 4 +- .../export/ExecuteReportDefinitionTest.java | 4 +- .../sdk/model/export/ExecuteReportTest.java | 4 +- .../sdk/model/export/ExportFormatTest.java | 4 +- .../model/featureflag/FeatureFlagTest.java | 4 +- .../model/featureflag/FeatureFlagsTest.java | 3 +- .../featureflag/ProjectFeatureFlagTest.java | 4 +- .../featureflag/ProjectFeatureFlagsTest.java | 4 +- .../sdk/model/gdc/AboutLinksTest.java | 4 +- .../gooddata/sdk/model/gdc/AsyncTaskTest.java | 3 +- .../sdk/model/gdc/LinkEntriesTest.java | 3 +- .../gooddata/sdk/model/gdc/RootLinksTest.java | 4 +- .../sdk/model/gdc/TaskStatusTest.java | 4 +- .../sdk/model/gdc/UriResponseTest.java | 4 +- .../hierarchicalconfig/ConfigItemTest.java | 3 +- .../hierarchicalconfig/ConfigItemsTest.java | 3 +- .../gooddata/sdk/model/md/AttachmentTest.java | 4 +- .../model/md/AttributeDisplayFormTest.java | 3 +- .../sdk/model/md/AttributeElementTest.java | 4 +- .../sdk/model/md/AttributeElementsTest.java | 4 +- .../sdk/model/md/AttributeSortTest.java | 4 +- .../gooddata/sdk/model/md/AttributeTest.java | 3 +- .../sdk/model/md/BulkGetUrisTest.java | 4 +- .../com/gooddata/sdk/model/md/ColumnTest.java | 4 +- .../sdk/model/md/DashboardAttachmentTest.java | 4 +- .../sdk/model/md/DataLoadingColumnTest.java | 4 +- .../gooddata/sdk/model/md/DatasetTest.java | 4 +- .../gooddata/sdk/model/md/DimensionTest.java | 4 +- .../sdk/model/md/DisplayFormTest.java | 3 +- .../com/gooddata/sdk/model/md/EntryTest.java | 3 +- .../gooddata/sdk/model/md/ExpressionTest.java | 4 +- .../com/gooddata/sdk/model/md/FactTest.java | 4 +- .../sdk/model/md/IdentifierToUriTest.java | 4 +- .../gooddata/sdk/model/md/InUseManyTest.java | 4 +- .../com/gooddata/sdk/model/md/KeyTest.java | 4 +- .../com/gooddata/sdk/model/md/MetaTest.java | 3 +- .../com/gooddata/sdk/model/md/MetricTest.java | 4 +- .../sdk/model/md/NestedAttributeTest.java | 4 +- .../com/gooddata/sdk/model/md/ObjTest.java | 3 +- .../sdk/model/md/ProjectDashboardTest.java | 4 +- .../com/gooddata/sdk/model/md/QueryTest.java | 4 +- .../sdk/model/md/ReportAttachmentTest.java | 4 +- .../sdk/model/md/RestrictionTest.java | 4 +- .../sdk/model/md/ScheduledMailTest.java | 3 +- .../sdk/model/md/ScheduledMailWhenTest.java | 4 +- .../gooddata/sdk/model/md/ServiceTest.java | 4 +- .../sdk/model/md/TableDataLoadTest.java | 4 +- .../com/gooddata/sdk/model/md/TableTest.java | 4 +- .../ExportProjectArtifactTest.java | 4 +- .../md/maintenance/ExportProjectTest.java | 4 +- .../maintenance/ExportProjectTokenTest.java | 4 +- .../md/maintenance/PartialMdArtifactTest.java | 4 +- .../md/maintenance/PartialMdExportTest.java | 4 +- .../maintenance/PartialMdExportTokenTest.java | 4 +- .../model/md/report/AttributeInGridTest.java | 4 +- .../report/GridElementDeserializerTest.java | 4 +- .../md/report/GridElementSerializerTest.java | 4 +- .../GridReportDefinitionContentTest.java | 4 +- .../sdk/model/md/report/GridTest.java | 4 +- .../model/md/report/MetricElementTest.java | 4 +- .../OneNumberReportDefinitionContentTest.java | 4 +- .../report/ReportDefinitionContentTest.java | 4 +- .../model/md/report/ReportDefinitionTest.java | 4 +- .../sdk/model/md/report/ReportTest.java | 4 +- .../sdk/model/notification/ChannelTest.java | 3 +- .../sdk/model/notification/ConditionTest.java | 3 +- .../notification/EmailConfigurationTest.java | 3 +- .../notification/MessageTemplateTest.java | 3 +- .../model/notification/ProjectEventTest.java | 4 +- .../model/notification/SubscriptionTest.java | 4 +- .../model/notification/TimerEventTest.java | 3 +- .../model/project/CreatedInvitationsTest.java | 4 +- .../sdk/model/project/InvitationsTest.java | 4 +- .../model/project/ProjectTemplateTest.java | 4 +- .../model/project/ProjectTemplatesTest.java | 4 +- .../sdk/model/project/ProjectTest.java | 4 +- .../project/ProjectUsersUpdateResultTest.java | 3 +- ...ectValidationResultGdcTimeElParamTest.java | 4 +- .../ProjectValidationResultItemTest.java | 4 +- ...rojectValidationResultObjectParamTest.java | 4 +- .../ProjectValidationResultParamTest.java | 4 +- ...ProjectValidationResultSliElParamTest.java | 4 +- ...rojectValidationResultStringParamTest.java | 4 +- .../project/ProjectValidationResultTest.java | 4 +- .../project/ProjectValidationResultsTest.java | 4 +- .../project/ProjectValidationTypeTest.java | 4 +- .../model/project/ProjectValidationsTest.java | 4 +- .../gooddata/sdk/model/project/RoleTest.java | 4 +- .../gooddata/sdk/model/project/RolesTest.java | 4 +- .../gooddata/sdk/model/project/UserTest.java | 4 +- .../gooddata/sdk/model/project/UsersTest.java | 4 +- .../model/project/model/DiffRequestTest.java | 3 +- .../model/project/model/MaqlDdlLinksTest.java | 4 +- .../sdk/model/project/model/MaqlDdlTest.java | 3 +- .../model/project/model/ModelDiffTest.java | 4 +- .../model/projecttemplate/TemplateTest.java | 4 +- .../sdk/model/util/TagsDeserializerTest.java | 4 +- .../sdk/model/util/TagsSerializerTest.java | 4 +- .../sdk/model/util/TagsTestClass.java | 3 +- .../model/warehouse/WarehouseSchemaTest.java | 3 +- .../model/warehouse/WarehouseSchemasTest.java | 3 +- .../model/warehouse/WarehouseTaskTest.java | 3 +- .../sdk/model/warehouse/WarehouseTest.java | 3 +- .../model/warehouse/WarehouseUserTest.java | 3 +- .../model/warehouse/WarehouseUsersTest.java | 4 +- .../sdk/model/warehouse/WarehousesTest.java | 4 +- gooddata-java/pom.xml | 58 +++- ...nt4ComponentsClientHttpRequestFactory.java | 299 ++++++++++++++++ ...tpClient4ComponentsClientHttpResponse.java | 78 +++++ .../UriPrefixingClientHttpRequestFactory.java | 126 +++++++ .../sdk/service/AbstractPollHandler.java | 3 +- .../sdk/service/AbstractPollHandlerBase.java | 3 +- .../gooddata/sdk/service/AbstractService.java | 7 +- .../DeprecationWarningRequestInterceptor.java | 3 +- .../gooddata/sdk/service/FutureResult.java | 3 +- .../com/gooddata/sdk/service/GoodData.java | 3 +- .../sdk/service/GoodDataEndpoint.java | 3 +- .../sdk/service/GoodDataRestProvider.java | 3 +- .../sdk/service/GoodDataServices.java | 3 +- .../sdk/service/GoodDataSettings.java | 3 +- .../HeaderSettingRequestInterceptor.java | 3 +- .../com/gooddata/sdk/service/PollHandler.java | 3 +- .../com/gooddata/sdk/service/PollResult.java | 3 +- .../sdk/service/RequestIdInterceptor.java | 5 +- .../ResponseMissingRequestIdInterceptor.java | 3 +- .../sdk/service/SimplePollHandler.java | 3 +- .../account/AccountNotFoundException.java | 3 +- .../sdk/service/account/AccountService.java | 3 +- .../auditevent/AuditEventPageRequest.java | 3 +- .../service/auditevent/AuditEventService.java | 3 +- .../AuditEventsForbiddenException.java | 3 +- .../auditevent/TimeFilterPageRequest.java | 3 +- .../service/connector/ConnectorException.java | 3 +- .../service/connector/ConnectorService.java | 3 +- .../IntegrationNotFoundException.java | 3 +- .../service/dataload/OutputStageService.java | 3 +- .../processes/ProcessExecutionException.java | 3 +- .../processes/ProcessNotFoundException.java | 3 +- .../dataload/processes/ProcessService.java | 3 +- .../processes/ScheduleExecutionException.java | 3 +- .../processes/ScheduleNotFoundException.java | 3 +- .../sdk/service/dataset/DatasetException.java | 3 +- .../sdk/service/dataset/DatasetService.java | 3 +- .../service/executeafm/ExecuteAfmService.java | 3 +- .../executeafm/ExecutionResultException.java | 3 +- .../sdk/service/export/ExportException.java | 3 +- .../sdk/service/export/ExportService.java | 58 ++-- .../service/export/NoDataExportException.java | 3 +- .../featureflag/FeatureFlagService.java | 3 +- .../sdk/service/gdc/DataStoreException.java | 3 +- .../sdk/service/gdc/DataStoreService.java | 3 +- .../gooddata/sdk/service/gdc/GdcSardine.java | 3 +- .../sdk/service/gdc/GdcSardineException.java | 3 +- .../gdc/GdcSardineResponseHandler.java | 3 +- .../gooddata/sdk/service/gdc/GdcService.java | 3 +- .../HierarchicalConfigService.java | 3 +- .../GoodDataHttpClientBuilder.java | 3 +- .../HttpClient4ClientHttpRequest.java | 96 ++++++ .../HttpClient4ClientHttpResponse.java | 85 +++++ .../HttpClient4HttpRequestFactory.java | 83 +++++ .../LoginPasswordGoodDataRestProvider.java | 3 +- .../SingleEndpointGoodDataRestProvider.java | 10 +- .../SstGoodDataRestProvider.java | 3 +- .../gooddata/sdk/service/lcm/LcmService.java | 3 +- .../sdk/service/md/MetadataService.java | 3 +- .../sdk/service/md/NonUniqueObjException.java | 3 +- .../sdk/service/md/ObjCreateException.java | 3 +- .../sdk/service/md/ObjNotFoundException.java | 3 +- .../sdk/service/md/ObjUpdateException.java | 3 +- .../md/maintenance/ExportImportException.java | 3 +- .../md/maintenance/ExportImportService.java | 3 +- .../notification/NotificationService.java | 3 +- .../project/ProjectNotFoundException.java | 3 +- .../sdk/service/project/ProjectService.java | 3 +- .../project/ProjectUsersUpdateException.java | 3 +- .../project/RoleNotFoundException.java | 3 +- .../UserInProjectNotFoundException.java | 3 +- .../service/project/model/ModelException.java | 3 +- .../service/project/model/ModelService.java | 3 +- .../ProjectTemplateService.java | 3 +- .../retry/GetServerErrorRetryStrategy.java | 3 +- .../sdk/service/retry/RetrySettings.java | 3 +- .../sdk/service/retry/RetryStrategy.java | 3 +- .../service/retry/RetryableRestTemplate.java | 3 +- .../service/util/ResponseErrorHandler.java | 5 +- .../gooddata/sdk/service/util/ZipHelper.java | 3 +- .../warehouse/WarehouseNotFoundException.java | 3 +- .../WarehouseSchemaNotFoundException.java | 3 +- .../service/warehouse/WarehouseService.java | 3 +- .../WarehouseUserNotFoundException.java | 3 +- gooddata-java/src/main/javadoc/overview.html | 2 +- .../service/GoodDataBeansAsServicesIT.groovy | 3 +- .../gooddata/sdk/service/GoodDataIT.groovy | 3 +- .../sdk/service/GoodDataITBase.groovy | 3 +- .../sdk/service/GoodDataServicesTest.groovy | 3 +- .../sdk/service/GoodDataSettingsTest.groovy | 3 +- .../connector/ConnectorServiceTest.groovy | 4 +- .../executeafm/ExecuteAfmServiceIT.groovy | 3 +- .../ExecutionResultExceptionTest.groovy | 3 +- .../sdk/service/export/ExportServiceIT.groovy | 3 +- .../service/export/ExportServiceTest.groovy | 3 +- ...ginPasswordGoodDataRestProviderTest.groovy | 3 +- ...gleEndpointGoodDataRestProviderTest.groovy | 3 +- .../SstGoodDataRestProviderTest.groovy | 3 +- .../sdk/service/lcm/LcmServiceIT.groovy | 3 +- .../service/retry/RetrySettingsTest.groovy | 3 +- .../retry/RetryableRestTemplateTest.groovy | 4 +- .../sdk/service/AbstractGoodDataAT.java | 15 +- .../sdk/service/AbstractGoodDataIT.java | 3 +- .../sdk/service/AbstractServiceTest.java | 3 +- .../sdk/service/GoodDataEndpointTest.java | 3 +- .../gooddata/sdk/service/PollHandlerIT.java | 178 +++++++++- .../sdk/service/account/AccountServiceAT.java | 3 +- .../sdk/service/account/AccountServiceIT.java | 3 +- .../auditevent/AuditEventPageRequestTest.java | 3 +- .../auditevent/AuditEventServiceAT.java | 4 +- .../auditevent/AuditEventServiceIT.java | 8 +- .../auditevent/AuditEventServiceTest.java | 4 +- .../auditevent/TimeFilterPageRequestTest.java | 3 +- .../service/connector/ConnectorServiceIT.java | 3 +- .../dataload/OutputStageServiceAT.java | 10 +- .../dataload/OutputStageServiceIT.java | 3 +- .../dataload/OutputStageServiceTest.java | 4 +- .../dataload/processes/ProcessIdMatcher.java | 3 +- .../dataload/processes/ProcessServiceAT.java | 3 +- .../dataload/processes/ProcessServiceIT.java | 3 +- .../processes/ProcessServiceTest.java | 3 +- .../dataload/processes/ScheduleIdMatcher.java | 4 +- .../sdk/service/dataset/DatasetServiceAT.java | 3 +- .../sdk/service/dataset/DatasetServiceIT.java | 4 +- .../service/dataset/DatasetServiceTest.java | 4 +- .../executeafm/ExecuteAfmServiceAT.java | 42 +-- .../sdk/service/export/ExportServiceAT.java | 10 +- .../featureflag/FeatureFlagServiceAT.java | 3 +- .../featureflag/FeatureFlagServiceIT.java | 4 +- .../featureflag/FeatureFlagServiceTest.java | 4 +- .../sdk/service/gdc/DataStoreServiceIT.java | 4 +- .../sdk/service/gdc/DatastoreServiceAT.java | 3 +- .../sdk/service/gdc/GdcServiceIT.java | 3 +- .../HierarchicalConfigServiceAT.java | 3 +- .../HierarchicalConfigServiceIT.java | 3 +- .../HierarchicalConfigServiceTest.java | 3 +- .../sdk/service/md/MetadataServiceAT.java | 3 +- .../sdk/service/md/MetadataServiceIT.java | 3 +- .../sdk/service/md/MetadataServiceTest.java | 3 +- .../md/maintenance/ExportImportServiceAT.java | 3 +- .../md/maintenance/ExportImportServiceIT.java | 4 +- .../maintenance/ExportImportServiceTest.java | 4 +- .../notification/NotificationServiceAT.java | 4 +- .../notification/NotificationServiceIT.java | 4 +- .../notification/NotificationServiceTest.java | 4 +- .../sdk/service/project/ProjectIdMatcher.java | 3 +- .../sdk/service/project/ProjectServiceAT.java | 3 +- .../sdk/service/project/ProjectServiceIT.java | 4 +- .../service/project/ProjectServiceTest.java | 4 +- .../service/project/model/ModelServiceAT.java | 3 +- .../service/project/model/ModelServiceIT.java | 4 +- .../ProjectTemplateServiceIT.java | 4 +- .../util/JettyCompatibleUrlEncoder.java | 124 +++++++ .../util/JettyCompatibleUrlEncoderTest.java | 94 +++++ .../util/ResponseErrorHandlerTest.java | 3 +- .../sdk/service/util/ZipHelperTest.java | 4 +- .../service/warehouse/WarehouseIdMatcher.java | 3 +- .../service/warehouse/WarehouseServiceAT.java | 3 +- .../service/warehouse/WarehouseServiceIT.java | 3 +- pom.xml | 320 ++++++++++++------ 681 files changed, 2840 insertions(+), 1003 deletions(-) create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/common/HttpClient4ComponentsClientHttpRequestFactory.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/common/HttpClient4ComponentsClientHttpResponse.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/common/UriPrefixingClientHttpRequestFactory.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/HttpClient4ClientHttpRequest.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/HttpClient4ClientHttpResponse.java create mode 100644 gooddata-java/src/main/java/com/gooddata/sdk/service/httpcomponents/HttpClient4HttpRequestFactory.java create mode 100644 gooddata-java/src/test/java/com/gooddata/sdk/service/util/JettyCompatibleUrlEncoder.java create mode 100644 gooddata-java/src/test/java/com/gooddata/sdk/service/util/JettyCompatibleUrlEncoderTest.java diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d9efe998a..f5877a770 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-java@v4 with: - java-version: '11' + java-version: '17' distribution: 'adopt' - uses: actions/cache@v4 with: diff --git a/.sonar.settings b/.sonar.settings index 7aeeae863..1611fb1fa 100644 --- a/.sonar.settings +++ b/.sonar.settings @@ -1,2 +1,2 @@ # Settings for sonar scan -gdc.java_version=openjdk-11 +gdc.java_version=openjdk-17 diff --git a/README.md b/README.md index 678051bf9..5b5ab833b 100644 --- a/README.md +++ b/README.md @@ -67,10 +67,10 @@ Since *GoodData Java SDK* version *2.32.0* API versioning is supported. The API The *GoodData Java SDK* uses: * the [GoodData HTTP client](https://github.com/gooddata/gooddata-http-client) version 0.9.3 or later * the *Apache HTTP Client* version 4.5 or later (for white-labeled domains at least version 4.3.2 is required) -* the *Spring Framework* version 5* (can be used with spring 4.3.* as well) +* the *Spring Framework* version 6.x (compatible with Spring Boot 3.x) * the *Jackson JSON Processor* version 2.* -* the *Slf4j API* version 1.7.* -* the *Java Development Kit (JDK)* version 11 or later to build, can run on 8 and later +* the *Slf4j API* version 2.0.* +* the *Java Development Kit (JDK)* version 17 or later ##### Retry of failed API calls diff --git a/gooddata-java-model/pom.xml b/gooddata-java-model/pom.xml index 43fdc923f..b7dc84ed2 100644 --- a/gooddata-java-model/pom.xml +++ b/gooddata-java-model/pom.xml @@ -7,7 +7,7 @@ gooddata-java-parent com.gooddata - 3.12.1+api3-SNAPSHOT + 4.0.0+api3-SNAPSHOT @@ -42,6 +42,11 @@ mockito-core test + + org.mockito + mockito-junit-jupiter + test + org.hamcrest hamcrest @@ -78,7 +83,7 @@ test - org.codehaus.groovy + org.apache.groovy groovy test @@ -92,6 +97,11 @@ spring-web test + + org.junit.jupiter + junit-jupiter-api + test + @@ -100,6 +110,18 @@ org.codehaus.gmavenplus gmavenplus-plugin + + org.apache.maven.plugins + maven-dependency-plugin + + false + + com.fasterxml.jackson.core:jackson-core + org.apache.commons:commons-lang3 + com.gooddata:gooddata-rest-common + + + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java index b1810cb17..2cd6a19e1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Account.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -238,3 +238,4 @@ public enum AuthenticationMode { SSO } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java index 5b62dd2db..59b75db0a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/Accounts.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -33,3 +33,4 @@ public class Accounts extends Page { super(items, paging, links); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java index 13a622f46..35995b53c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/AccountsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ protected Accounts createPage(final List items, final Paging paging, fi return new Accounts(items, paging, links); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java index 54400dc20..60bf14a41 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/account/SeparatorSettings.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -74,3 +74,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java index 6a5936234..7fe2606e3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLog.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -94,3 +94,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java index 3ceef048b..3ef125f38 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogs.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public AccessLogs(List items, Paging paging, Map link super(items, paging, links); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java index 9eca1a6d7..988be1f4a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AccessLogsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -20,3 +20,4 @@ protected AccessLogs createPage(List items, Paging paging, Map items, final Paging paging, final Map< } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java index c09a79213..c8dbf523c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ protected AuditEvents createPage(final List items, final Paging pagi return new AuditEvents(items, paging, links); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java index 01716e97a..e1d4c36e6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/auditevent/AuditEventsSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -13,3 +13,4 @@ public AuditEventsSerializer() { super(AuditEvents.ROOT_NODE); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java index 2a6a3baf0..f183b4091 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ConnectorType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -27,3 +27,4 @@ public String getSettingsUrl() { return settingsUrl; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java index f6b28783a..873bcf4aa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Integration.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -85,3 +85,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java index 426774789..65baed4fa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/IntegrationProcessStatus.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -96,3 +96,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java index 87b4b414f..7272208ce 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -24,3 +24,4 @@ public interface ProcessExecution { ConnectorType getConnectorType(); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java index 43849d78e..d89fba21c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/ProcessStatus.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -36,3 +36,4 @@ public class ProcessStatus extends IntegrationProcessStatus { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java index 6e7f89390..5d87cd919 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Reload.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -146,3 +146,4 @@ private Optional getLink(final String linkName) { return links != null ? Optional.ofNullable(links.get(linkName)) : Optional.empty(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java index 9ed375eda..635380210 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Settings.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -24,3 +24,4 @@ public interface Settings { ConnectorType getConnectorType(); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java index 56a82dd26..da4a9f2e3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Status.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -81,3 +81,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java index 121a5fd20..e69639163 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4ProcessExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -179,3 +179,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java index 6abea3026..27b55f903 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/connector/Zendesk4Settings.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -96,3 +96,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java index fb527732b..d5359b9ab 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/OutputStage.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -137,3 +137,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java index 62cd5849d..656a69b15 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/AsyncTask.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -56,3 +56,4 @@ public String getPoll() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java index 7c3173fb9..60eb6778c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcess.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -126,3 +126,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java index 5826a20c4..ee5a94fbc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/DataloadProcesses.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -39,3 +39,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java index 3b6a49628..0a938dd0f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -71,3 +71,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this, "hiddenParams", "executionsUri"); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java index 3a0d81586..99c02a7ce 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionDetail.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -120,3 +120,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java index 3ad825ab9..f33eea1e0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessExecutionTask.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -41,3 +41,4 @@ public String getDetailUri() { return notNullState(links, "links").get(DETAIL_LINK); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java index d21180ff9..359b03d8d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ProcessType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -15,3 +15,4 @@ public enum ProcessType { GROOVY, DATALOAD } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java index b80e96b3e..9a19ce438 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedule.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -267,3 +267,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java index 87256121d..d5c29a940 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -91,3 +91,4 @@ public boolean isFinished() { return FINISHED_STATUSES.contains(getStatus()); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java index b4f5c74b9..ce7a3ea04 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/ScheduleState.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -11,3 +11,4 @@ public enum ScheduleState { ENABLED, DISABLED } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java index f85148bef..320a56f9f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/Schedules.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -28,3 +28,4 @@ public class Schedules extends Page { super(items, paging); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java index e964f36fa..9585a3408 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataload/processes/SchedulesDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ protected Schedules createPage(final List items, final Paging paging, return new Schedules(items, paging); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java index c07f1f185..b60f28131 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -25,3 +25,4 @@ public DatasetLinks(@JsonProperty("category") String category, @JsonProperty("su } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java index 3aac3e9bb..a42790acd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifest.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -210,3 +210,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java index b0b9338eb..361ae0686 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetManifests.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -39,3 +39,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java index 418908c07..bb518fde5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/DatasetNotFoundException.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -24,3 +24,4 @@ public DatasetNotFoundException(String dataset, Throwable cause) { super(format(MESSAGE, dataset), cause); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java index 61221f593..be957001c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlMode.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -45,3 +45,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java index d7c6acf79..6d8192e9f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/EtlModeType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -19,3 +19,4 @@ public String getName() { return name(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java index 071093ede..ca8d0609e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/LookupMode.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -19,3 +19,4 @@ public String getName() { return name().toLowerCase(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java index 6a37f5ce8..b6a171b69 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/MaqlDml.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -19,3 +19,4 @@ public MaqlDml(final String maql) { super(maql); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java index 47eb15305..5d67ccbc5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Pull.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -35,3 +35,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java index f274be952..135a5f7af 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/PullTask.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -47,3 +47,4 @@ private Links(@JsonProperty("poll") String uri) { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java index df02e0f5f..0ec18c18e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/TaskState.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -57,3 +57,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java index 767864185..d0a1b8fc9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Upload.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -127,3 +127,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java index 39d15388e..13d4348c4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadMode.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -61,4 +61,4 @@ public static UploadMode get(String mode) { public String toString() { return this.modeStr; } -} \ No newline at end of file +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java index 25a325563..61e6c852c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadStatistics.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -47,3 +47,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java index cc08112ac..327c7f8d2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/Uploads.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -40,3 +40,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java index 378cef65e..fc29fc972 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/dataset/UploadsInfo.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -137,3 +137,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java index bd7f6bf4b..9c830b95b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Execution.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -53,3 +53,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java index 8bda559bd..91f48c2e3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/IdentifierObjQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -49,3 +49,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java index 7dbfe23ca..a61858de8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/LocalIdentifierQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -59,3 +59,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java index b8ecc0c3e..5bde9a411 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ObjQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -27,3 +27,4 @@ default String getUri() { throw new UnsupportedOperationException("This qualifier has no URI"); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java index 7b216d6b0..1351ca2b9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/Qualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -20,3 +20,4 @@ public interface Qualifier { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java index 3b54bab62..750b7c5f1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/ResultPage.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -53,3 +53,4 @@ private static String toQueryParam(final List list) { return list.stream().map(String::valueOf).collect(joining("%2C")); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java index 2cfab560f..161873a33 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/UriObjQualifier.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -51,3 +51,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java index 6323ef5aa..b0510b633 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/VisualizationExecution.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public VisualizationExecution setFilters(final List filters return this; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java index f5721c28d..88e61e327 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Afm.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -141,3 +141,4 @@ private static T getIdentifiable(final List t } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java index 600a1acbe..94ae081c1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/Aggregation.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -20,3 +20,4 @@ public String toString() { return name().toLowerCase(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java index 4fadfcd38..4e4de8824 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ArithmeticMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -85,3 +85,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java index 101514de0..c1aad0390 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/AttributeItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -99,3 +99,4 @@ public int hashCode() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java index 729340456..36be7b649 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/DerivedMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -65,3 +65,4 @@ public int hashCode() { return Objects.hash(measureIdentifier); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java index 95e3dab5f..bd61f7957 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/LocallyIdentifiable.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -14,3 +14,4 @@ public interface LocallyIdentifiable { */ String getLocalIdentifier(); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java index 870e6f5ad..606ea3e61 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -78,3 +78,4 @@ default String getUri() { @JsonIgnore boolean isAdHoc(); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java index fc9cb36a1..f916b9ad4 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/MeasureItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -111,3 +111,4 @@ public int hashCode() { return Objects.hash(definition, localIdentifier); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java index fb6205426..9585de2d6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/NativeTotalItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -56,3 +56,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java index 84d3c3494..9500bbb2d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjIdentifierUtilities.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -73,3 +73,4 @@ private static IllegalArgumentException buildExceptionForFailedConversion(final } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java index a64c1fe13..01cfa7aae 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/ObjQualifierConverter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -26,3 +26,4 @@ public interface ObjQualifierConverter { */ Optional convertToUriQualifier(IdentifierObjQualifier identifierObjQualifier); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java index 5d7a959a4..6a080d932 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodDateAttribute.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -84,3 +84,4 @@ public Integer getPeriodsAgo() { return periodsAgo; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java index bef97477a..fc6ad1a3d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/OverPeriodMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -117,3 +117,4 @@ public List getDateAttributes() { return dateAttributes; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java index 9e1be405a..1eebdc742 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PopMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -101,3 +101,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java index 68653fe6f..c9066ff71 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodDateDataSet.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -84,3 +84,4 @@ public Integer getPeriodsAgo() { return periodsAgo; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java index 724682560..95a173d9c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/PreviousPeriodMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -117,3 +117,4 @@ public List getDateDataSets() { return dateDataSets; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java index e32562412..aad420d79 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/SimpleMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -249,3 +249,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java index a69cf833e..827e50601 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AbsoluteDateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -89,3 +89,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java index 59395327b..5ffda0a63 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -54,3 +54,4 @@ public int hashCode() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java index 4b17b29b9..112a12482 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/AttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -86,3 +86,4 @@ private static List nodeToElements(JsonNode node) { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java index d1f2fdf1e..bdb2e5743 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -109,3 +109,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java index 72af11832..eefa30774 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ComparisonConditionOperator.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -43,3 +43,4 @@ operator, stream(ComparisonConditionOperator.values()).map(Enum::name).collect(j } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java index 1e001276f..cd92b12dd 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/CompatibilityFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -18,3 +18,4 @@ }) public interface CompatibilityFilter { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java index 2b511d758..dc06bceaa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/DateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -62,3 +62,4 @@ public int hashCode() { return Objects.hash(dataSet); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java index 4ab721053..a31391ad8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExpressionFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -53,3 +53,4 @@ public int hashCode() { return Objects.hash(value); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java index 19dcd2ac9..5c7043969 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ExtendedFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -16,3 +16,4 @@ }) public interface ExtendedFilter { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java index 1e3484166..e79b8ae55 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/FilterItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public interface FilterItem extends CompatibilityFilter, ExtendedFilter { */ FilterItem withObjUriQualifier(UriObjQualifier qualifier); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java index 0755695fa..d51739666 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -101,3 +101,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java index 37df9210f..b583381b3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/MeasureValueFilterCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -53,3 +53,4 @@ public int hashCode() { return Objects.hash(treatNullValuesAs); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java index 8dbf14c48..a13513066 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/NegativeAttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -102,3 +102,4 @@ public int hashCode() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java index f12391f23..a10acbc7a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/PositiveAttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -91,3 +91,4 @@ public int hashCode() { return Objects.hash(in, super.hashCode()); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java index 1e3c00cd4..3cb9af3a9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -119,3 +119,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java index 181614c6c..ecd2e0c4e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RangeConditionOperator.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -39,3 +39,4 @@ operator, stream(RangeConditionOperator.values()).map(Enum::name).collect(joinin } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java index c44e5745e..e8e4b6bb7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -202,3 +202,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java index 65144665c..4f14897a0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RankingFilterOperator.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -40,3 +40,4 @@ operator, stream(RankingFilterOperator.values()).map(Enum::name).collect(joining } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java index 5f3c9449a..86c734377 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/RelativeDateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -91,3 +91,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java index 5edcb4182..b17d66650 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/SimpleAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -34,3 +34,4 @@ public List getElements() { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java index 7717cd865..f3af4911b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/UriAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -68,3 +68,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java index 3160fcae7..ff556c8b7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/afm/filter/ValueAttributeFilterElements.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -68,3 +68,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java index cfa275a88..700a1789e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeHeader.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -152,3 +152,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java index b81965060..63891dea3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/AttributeInHeader.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -82,3 +82,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java index 641501e04..2dc944d30 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ExecutionResponse.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -87,3 +87,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java index 9ea3de116..0d42b342e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/Header.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -20,3 +20,4 @@ }) public interface Header { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java index d01b658a7..78fa320c1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureGroupHeader.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -44,3 +44,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java index 57189ff55..1a71c78cb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/MeasureHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -110,3 +110,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java index b3068d70d..f468d3885 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/ResultDimension.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -51,3 +51,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java index 01df8df3e..2aff3956c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/response/TotalHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -52,3 +52,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java index 3209a9693..a5ad67234 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/AttributeHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -45,3 +45,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java index 148323fc0..228ffbd6f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Data.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -104,3 +104,4 @@ public Data getNullValue(final DeserializationContext ctxt) throws JsonMappingEx } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java index 9119ac5fe..676978a0e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataList.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -73,3 +73,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java index 374342d09..537228cea 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/DataValue.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -65,3 +65,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java index 0655d6081..a4d373108 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ExecutionResult.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -174,3 +174,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java index 1e7018f75..4c049812f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Paging.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -100,3 +100,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java index c838ed97a..2e0a7044d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -40,3 +40,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java index ea5cc96fb..4613950bf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultMeasureHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -39,3 +39,4 @@ public int getOrder() { return order; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java index 3fab549bc..f9ae6f052 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/ResultTotalHeaderItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -68,3 +68,4 @@ public String getType() { return type; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java index 01033d855..5a93b72e1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/result/Warning.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java index bb3415d6d..418d7850a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeLocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -46,3 +46,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java index da41cd591..abcb8b6d9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortAggregation.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ public String toString() { return name().toLowerCase(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java index d0f2766b7..f6381ee48 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/AttributeSortItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -97,3 +97,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java index 566045331..e173b61ef 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Dimension.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -99,3 +99,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java index a336131a3..3de9e2762 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/Direction.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -17,3 +17,4 @@ public String toString() { return name().toLowerCase(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java index 695eb3312..e53a31b52 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/LocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -20,3 +20,4 @@ }) public interface LocatorItem { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java index 8df74743b..a911a133a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureLocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -35,3 +35,4 @@ public String toString() { return measureIdentifier; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java index 8900119cb..31338be92 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/MeasureSortItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -55,3 +55,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java index 7954cb780..6946ae767 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/ResultSpec.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -73,3 +73,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java index 202eab680..673d5a80e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/SortItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -18,3 +18,4 @@ }) public interface SortItem { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java index 046804a24..996dea747 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -86,3 +86,4 @@ public int hashCode() { return Objects.hash(measureIdentifier, type, attributeIdentifier); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java index c78a90c28..c3a55a384 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/executeafm/resultspec/TotalLocatorItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -40,3 +40,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java index 7ed6b8fda..cd51fc4ae 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ClientExport.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -51,3 +51,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java index 476a70195..04f98371d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReport.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -42,3 +42,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java index 67bd1b3aa..6116954f9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExecuteReportDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -42,3 +42,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java index 408a577d2..80edee7e7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ExportFormat.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -24,3 +24,4 @@ public static String[] arrayToStringArray(final ExportFormat... formats) { .toArray(String[]::new); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java index 0d565f384..e7b00bf19 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/export/ReportRequest.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,4 +22,4 @@ public abstract class ReportRequest { public static final String URI = "/gdc/xtab2/executor3"; -} \ No newline at end of file +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java index 2795b29bb..288bc80de 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlag.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -56,3 +56,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java index 1cfb9bf03..53b7a3ab2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/FeatureFlags.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java index 7b888597e..ffd5abf91 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlag.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -126,3 +126,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java index 26d3fd2c2..30db6451a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/featureflag/ProjectFeatureFlags.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -59,3 +59,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java index 7be575b42..29b8d0992 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AboutLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -109,3 +109,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java index 17ee9156a..e8f775c0d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AbstractMaql.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java index 80a83623e..2c95ee793 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/AsyncTask.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -55,3 +55,4 @@ public String getPoll() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java index e2ce5293e..69f819a1f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/LinkEntries.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -60,3 +60,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java index 1bf57443f..83c9c0b8f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/RootLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -237,4 +237,4 @@ private enum LinkCategory { } } -} \ No newline at end of file +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java index c5c6e0c2c..cbd1ae4a5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/TaskStatus.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -71,3 +71,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java index 8e4f292f6..79680f59c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/gdc/UriResponse.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -39,3 +39,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java index 9a338cda8..6eeefa568 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -165,3 +165,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java index 4193cd288..7d3ded8e5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/ConfigItems.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -82,3 +82,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java index be22e210c..4da3888f0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/hierarchicalconfig/SourceType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -86,3 +86,4 @@ public String toString() { return this.name; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java index f2b6cd50a..033f817cf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntities.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -61,3 +61,4 @@ protected LcmEntities createPage(final List items, final Paging pagin } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java index d8880e97c..e36839faa 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntity.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -143,3 +143,4 @@ public static class LinkCategory { public static final String DATA_PRODUCT = "dataProduct"; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java index c757218db..fef502350 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/lcm/LcmEntityFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -97,3 +97,4 @@ public Map> asQueryParams() { return params; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java index d92aa4278..33a12e74b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AbstractObj.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -192,3 +192,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java index 4fd857420..0bae6b090 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attachment.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -57,3 +57,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java index 62c3fcb40..1fa3acdf1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Attribute.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -34,3 +34,4 @@ private Attribute(@JsonProperty("meta") Meta meta, @JsonProperty("content") Nest null, null, null, null, null, null)); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java index 3fa679244..f7ad94a43 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeDisplayForm.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -73,3 +73,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java index 7fffad176..024c92fc3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElement.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -58,3 +58,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java index c5e3afb48..db883c124 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeElements.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -58,3 +58,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java index ff728e24c..d76d9875a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/AttributeSort.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -91,3 +91,4 @@ public void serialize(AttributeSort value, JsonGenerator gen, SerializerProvider } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java index 3b0fc7c60..7c49f1b84 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGet.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -42,3 +42,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java index b207ac4ff..71aba90cc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/BulkGetUris.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -56,3 +56,4 @@ public int hashCode() { return items.hashCode(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java index f71e02bad..fbd1a85a1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Column.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -131,3 +131,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java index d95b2d62c..a136e1513 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DashboardAttachment.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -69,3 +69,4 @@ public String toString() { return new GoodDataToStringBuilder(this).append("uri", getUri()).toString(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java index 63fdcbf4e..8e0924d55 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DataLoadingColumn.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -193,3 +193,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java index cd2eed60d..db41e0a0d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dataset.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -159,3 +159,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java index a93dea5ee..bc3554907 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Dimension.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -73,3 +73,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java index a126133e3..38d1707c6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/DisplayForm.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -131,3 +131,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java index 4f5c3e5af..a84e8c23c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Entry.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -175,3 +175,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java index 3519b3ead..c6c9bf495 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Expression.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -43,3 +43,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java index 3d49022ef..3c945f54e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Fact.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java index 2c1d7b299..a93c2c0f0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierAndUri.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java index a87bbbb47..5dabb1329 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifierToUri.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -54,3 +54,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java index bdd314a16..8fa00d21e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/IdentifiersAndUris.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -73,3 +73,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java index 311f95c23..a7f1e675e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/InUseMany.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -102,3 +102,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java index 7c7e59b60..a0af6e459 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Key.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -43,3 +43,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java index 34dcc28d9..8de1e483f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/MaqlAst.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java index e90060bf0..c6c0e844c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Meta.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -308,3 +308,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java index 5fe0939e0..1f55f8dcf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Metric.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -126,3 +126,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java index 234010c00..e1a99032f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/NestedAttribute.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -265,3 +265,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java index b1cd7d774..0f48fdcb6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Obj.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -43,3 +43,4 @@ public interface Obj { String getUri(); } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java index 68ccd496a..8e411a800 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ProjectDashboard.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -140,3 +140,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java index 13c48a560..6c2835c09 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Query.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -91,3 +91,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java index f1269d4e9..a3955f414 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Queryable.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -10,3 +10,4 @@ */ public interface Queryable extends Obj { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java index 0fb395554..7e96b6756 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ReportAttachment.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -129,3 +129,4 @@ public String toString() { return new GoodDataToStringBuilder(this).append("uri", getUri()).toString(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java index 64814df93..ac6c50884 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Restriction.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -86,3 +86,4 @@ public enum Type { IDENTIFIER, TITLE, SUMMARY } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java index 25ab6e0ca..154d44e6e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMail.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -277,3 +277,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java index 6464e4622..015c3490d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/ScheduledMailWhen.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -86,3 +86,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java index 1be2b6fc3..6d72f44f1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Service.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -42,3 +42,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java index 12d649708..58d192524 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Table.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -105,3 +105,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java index 8a33ed9d5..ef665f4b1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/TableDataLoad.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -94,3 +94,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java index 18e7094a2..5ff04a920 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Updatable.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -10,3 +10,4 @@ */ public interface Updatable extends Obj { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java index 1fdd10afd..1fbd5d8e6 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UriToIdentifier.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -54,3 +54,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java index e405d30a3..2b3a81b89 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/Usage.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -41,3 +41,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java index 3dad10b11..4305ae4ed 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseMany.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -38,3 +38,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java index a1a86dc2a..2997f7009 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/UseManyEntries.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -41,3 +41,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java index 712af258e..cc5eb4794 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/AnalyticalDashboard.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -100,3 +100,4 @@ private String getFilterContext() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java index af24c96c0..d3ab1e1c8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/Kpi.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -177,3 +177,4 @@ public List getIgnoreDashboardFilters() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java index 83961e9a9..0b10abf79 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/KpiAlert.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -182,3 +182,4 @@ public String getKpi() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java index 023308759..51c62bea9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/AttributeFilterReference.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -46,3 +46,4 @@ public String getDisplayFormUri() { return displayFormUri; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java index bce72c6e0..0c9708fa3 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardAttributeFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -85,3 +85,4 @@ public String toString() { return GoodDataToStringBuilder.toString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java index 11e1469e4..14b4c1c99 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardDateFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -148,3 +148,4 @@ public String toString() { return GoodDataToStringBuilder.toString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java index aa4f082c0..4ec8d69fe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -21,3 +21,4 @@ }) public interface DashboardFilter extends Serializable { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java index 23eee6e0f..a6877ba9f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DashboardFilterContext.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java index 814c7f16b..1f6cc914d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/DateFilterReference.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -46,3 +46,4 @@ public String getDatasetUri() { return datasetUri; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java index 02b766b2d..a9add2d3f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/dashboard/filter/FilterReference.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -21,3 +21,4 @@ }) public interface FilterReference extends Serializable { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java index 35eeaa5a7..d31fc3951 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProject.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -89,3 +89,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java index b1d154555..ebbb6dc9d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectArtifact.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -23,3 +23,4 @@ public ExportProjectArtifact(@JsonProperty("status") UriResponse status, @JsonPr super(status, token); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java index a082f3de0..046cf7f54 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/ExportProjectToken.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -41,3 +41,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java index a176f5f68..395e6a27c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdArtifact.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -46,3 +46,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java index 3b6713454..cad798a97 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExport.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -93,3 +93,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java index cc39c1707..a6ae1aa0c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/maintenance/PartialMdExportToken.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -118,3 +118,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java index b2eebdc96..1ebc8b12e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/AttributeInGrid.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -134,3 +134,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java index 1cc756df4..f9171374f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Filter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -39,3 +39,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java index 12514a352..1439451cc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Grid.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -96,3 +96,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java index 05e4bb4fd..f1909b2a0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElement.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -12,3 +12,4 @@ */ public interface GridElement { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java index c94d8f234..fdf9a8c8b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public GridElement deserialize(JsonParser jp, DeserializationContext ctxt) throw } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java index dd3a79856..99b54bb31 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridElementSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -28,3 +28,4 @@ public void serialize(GridElement value, JsonGenerator gen, SerializerProvider s } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java index ce18ac57e..e6f792407 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/GridReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -53,3 +53,4 @@ public static ReportDefinition create(String title, List return new ReportDefinition(new Meta(title), new GridReportDefinitionContent(new Grid(columns, rows, metrics), filters)); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java index 13764e10e..5837e74bb 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricElement.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -81,3 +81,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java index e9dab646c..8488d5269 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/MetricGroup.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -51,3 +51,4 @@ public String toString() { return getValue(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java index fb6fb318f..d728495f9 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/OneNumberReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -91,3 +91,4 @@ public static ReportDefinition create(String title, List columns, L new Grid(columns, rows, metrics), title, filters)); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java index 6dd9bd5b7..5c1cff638 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Report.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -94,3 +94,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java index c76975041..0713352d0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -76,3 +76,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java index f01bd26f9..4a4712463 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/ReportDefinitionContent.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -56,3 +56,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java index b6c4cb321..5333ee9fc 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/report/Total.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -55,3 +55,4 @@ public static List orderedValues() { return Arrays.asList(SUM, MAX, MIN, AVG, MED, NAT); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java index 83d81a4bb..afd516398 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Bucket.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -107,3 +107,4 @@ public int hashCode() { return Objects.hash(localIdentifier, items, totals); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java index e6dafb671..48325429e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/BucketItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ @JsonInclude(JsonInclude.Include.NON_NULL) public interface BucketItem {} + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java index 0dd04b024..df718ef9a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/CollectionType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -18,3 +18,4 @@ boolean isValueOf(final String type) { return name().toLowerCase().equals(type.toLowerCase()); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java index d0a406bfe..253dde4da 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/Measure.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -97,3 +97,4 @@ public int hashCode() { return Objects.hash(super.hashCode()); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java index 92d85a935..cc5f155de 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOPopMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -41,3 +41,4 @@ public VOPopMeasureDefinition(@JsonProperty("measureIdentifier") final String me } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java index 2f30e1fb0..3493ae5a7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VOSimpleMeasureDefinition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -78,3 +78,4 @@ public VOSimpleMeasureDefinition(ObjQualifier item, Aggregation aggregation, Boo super(item, aggregation, computeRatio, filters); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java index cece94b5a..732e90572 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationAttribute.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -59,3 +59,4 @@ public int hashCode() { return Objects.hash(super.hashCode()); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java index c9e319325..a57b21641 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationClass.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -150,3 +150,4 @@ public Float getOrderIndex() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java index 73397793f..a8ff5a3c0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationConverter.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -472,3 +472,4 @@ private static boolean isNativeTotal(TotalItem totalItem) { return totalItem.getType() != null && Total.NAT.name().equals(totalItem.getType().toUpperCase()); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java index 6b73969c7..daacfb5c1 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationObject.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -458,3 +458,4 @@ public Content withBuckets(List buckets) { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java index 4508f034b..81799d243 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/md/visualization/VisualizationType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -31,3 +31,4 @@ type, stream(VisualizationType.values()).map(Enum::name).collect(joining(","))), } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java index 7db2f9542..58a4bf920 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Channel.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -56,3 +56,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java index adb8531f3..207dbda3e 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Configuration.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -18,3 +18,4 @@ }) public interface Configuration { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java index 660681e0f..87376bafe 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/EmailConfiguration.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java index 5a2ab4e9c..3136b9dd0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/MessageTemplate.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -38,3 +38,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java index fb27057ac..7bf7e303a 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/ProjectEvent.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -85,3 +85,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java index 96928d7bd..f9fdf2d64 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Subscription.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -130,3 +130,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java index fe61a714a..32c2c6525 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TimerEvent.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -38,3 +38,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java index d43c267d2..ee97cf589 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/Trigger.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -18,3 +18,4 @@ }) public interface Trigger { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java index 3b8c74ef6..71b51ff00 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/notification/TriggerCondition.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -32,3 +32,4 @@ public String getExpression() { return expression; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java index 5826af041..7f53591a7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/CreatedInvitations.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -66,3 +66,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java index f8a2b4019..dba287726 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Environment.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -17,3 +17,4 @@ public enum Environment { /** 'TESTING' projects or warehouses are not backed-up and archived. */ TESTING } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java index 4ca0248d1..efe5781a0 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitation.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -77,4 +77,4 @@ public String toString() { } } -} \ No newline at end of file +} diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java index 7d613426b..9c02cb010 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Invitations.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -38,3 +38,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java index d8133d5f4..ff608460f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Project.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -538,3 +538,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java index a939f304b..08aadba8d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectDriver.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ public String getValue() { return value; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java index 661aae239..10da1757b 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectEnvironment.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -18,3 +18,4 @@ public enum ProjectEnvironment { /** 'TESTING' projects are not backed-up and archived. */ TESTING } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java index 90d8656c2..1c137ebcf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplate.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -50,3 +50,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java index d1fe834bf..a45055c05 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectTemplates.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -37,3 +37,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java index f75be41d5..31c56e44c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectUsersUpdateResult.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -49,3 +49,4 @@ public List getFailed() { return failed; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java index fa6f8a919..f6ee00f19 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResult.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -101,3 +101,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java index 1b80c465d..67675a0b8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultGdcTimeElParam.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -52,3 +52,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java index 19a544ce5..17d0f3466 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultItem.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -57,3 +57,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java index c45d04296..c907ca002 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultObjectParam.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -58,3 +58,4 @@ public int hashCode() { return result; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java index fa339335e..16c35e4ff 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultParam.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ }) public abstract class ProjectValidationResultParam { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java index a74e4e1fa..c17075abf 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultSliElParam.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -111,3 +111,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java index 3ba53c39b..665ac161f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResultStringParam.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -49,3 +49,4 @@ public int hashCode() { return value != null ? value.hashCode() : 0; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java index 693530ae4..6ebd524a7 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationResults.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -101,3 +101,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java index 09118b20c..46f8f4a28 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidationType.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -54,3 +54,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java index f1f139c33..93bf6d13c 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/ProjectValidations.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -48,3 +48,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java index 8ccfb5583..5b76a8e93 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Projects.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -68,3 +68,4 @@ public String toString() { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java index 841204b9d..7769750e5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Role.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -123,3 +123,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java index d92fa2903..89b971aa2 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Roles.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -35,3 +35,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java index c22d749ac..c363ec887 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/User.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -189,3 +189,4 @@ public String getSelf() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java index 7779ec4cd..2d5998893 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/Users.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -40,3 +40,4 @@ public Users(final User... users) { this(asList(users), null); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java index ce52f86d6..13c1a6ef8 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersDeserializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -22,3 +22,4 @@ protected Users createPage(final List items, final Paging paging, final Ma return new Users(items, paging); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java index cb991c4af..d014d7317 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/UsersSerializer.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -33,3 +33,4 @@ public void serialize(final Users users, final JsonGenerator jgen, final Seriali jgen.writeEndObject(); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java index e7e884dcc..744aa3954 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/DiffRequest.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -51,3 +51,4 @@ public String toString() { return GoodDataToStringBuilder.defaultToString(this); } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java index 9a8745a7b..7656ba11f 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdl.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -20,3 +20,4 @@ public MaqlDdl(final String maql) { } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java index 3064e57fb..f10914254 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/MaqlDdlLinks.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -38,3 +38,4 @@ public String getStatusUri() { return null; } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java index b6c840c3e..2efec61c5 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/project/model/ModelDiff.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -179,3 +179,4 @@ public String toString() { } } } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java index ea03d4f99..53be6da03 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Template.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -192,3 +192,4 @@ public String getUri() { } + diff --git a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java index bbbb1635d..a7b5b2e7d 100644 --- a/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java +++ b/gooddata-java-model/src/main/java/com/gooddata/sdk/model/projecttemplate/Templates.java @@ -1,5 +1,5 @@ /* - * (C) 2023 GoodData Corporation. + * (C) 2025 GoodData Corporation. * This source code is licensed under the BSD-style license found in the * LICENSE.txt file in the root directory of this source tree. */ @@ -35,3 +35,4 @@ public List