From 0adbfbc77a4c9a7661b796d93c47cbf04b0e3a6b Mon Sep 17 00:00:00 2001 From: Chris Edwards Date: Fri, 19 Dec 2025 11:29:20 -0500 Subject: [PATCH 1/5] Add environments filter to LibraryFilterForm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Support filtering libraries by environment (DEVELOPMENT, QA, PRODUCTION) to match TeamServer NgLibraryFilterRequest capabilities. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../http/LibraryFilterForm.java | 19 +++++ .../http/LibraryFilterFormTest.java | 76 +++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java diff --git a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java index 1856b79f..c9d2e346 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java @@ -21,6 +21,7 @@ */ import java.util.ArrayList; +import java.util.EnumSet; import java.util.List; import java.util.stream.Collectors; @@ -64,6 +65,7 @@ public String toString() { private LibraryQuickFilterType quickFilter; private boolean includeUsed; private boolean includeUnused; + private EnumSet environments; public LibraryFilterForm() { super(); @@ -78,6 +80,7 @@ public LibraryFilterForm() { this.quickFilter = null; this.includeUsed = false; this.includeUnused = false; + this.environments = EnumSet.noneOf(ServerEnvironment.class); } public List getApps() { @@ -160,6 +163,14 @@ public void setIncludeUnused(boolean includeUnused) { this.includeUnused = includeUnused; } + public EnumSet getEnvironments() { + return environments; + } + + public void setEnvironments(EnumSet environments) { + this.environments = environments; + } + @Override public String toString() { String formString = super.toString(); @@ -199,6 +210,14 @@ public String toString() { filters.add("quickFilter=" + quickFilter.toString()); } + if (environments != null && !environments.isEmpty()) { + filters.add( + "environments=" + + environments.stream() + .map(ServerEnvironment::toURIString) + .collect(Collectors.joining(","))); + } + filters.add("includeUsed=" + includeUsed); filters.add("includeUnused=" + includeUnused); diff --git a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java new file mode 100644 index 00000000..df73c611 --- /dev/null +++ b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java @@ -0,0 +1,76 @@ +package com.contrastsecurity.http; + +/*- + * #%L + * Contrast Java SDK + * %% + * Copyright (C) 2022 - 2025 Contrast Security, 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. + * #L% + */ + +import static org.assertj.core.api.Assertions.assertThat; + +import java.util.EnumSet; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +final class LibraryFilterFormTest { + + LibraryFilterForm form; + + @BeforeEach + public void setUp() { + form = new LibraryFilterForm(); + } + + @Test + public void toString_should_include_environments_when_set() { + form.setEnvironments(EnumSet.of(ServerEnvironment.DEVELOPMENT, ServerEnvironment.PRODUCTION)); + String qs = form.toString(); + + assertThat(qs).contains("environments="); + assertThat(qs).contains("DEVELOPMENT"); + assertThat(qs).contains("PRODUCTION"); + } + + @Test + public void toString_should_not_include_environments_when_empty() { + String qs = form.toString(); + + assertThat(qs).doesNotContain("environments="); + } + + @Test + public void toString_should_include_single_environment() { + form.setEnvironments(EnumSet.of(ServerEnvironment.QA)); + String qs = form.toString(); + + assertThat(qs).contains("environments=QA"); + } + + @Test + public void getEnvironments_should_return_set_environments() { + EnumSet expected = + EnumSet.of(ServerEnvironment.DEVELOPMENT, ServerEnvironment.QA); + form.setEnvironments(expected); + + assertThat(form.getEnvironments()).isEqualTo(expected); + } + + @Test + public void environments_should_be_empty_by_default() { + assertThat(form.getEnvironments()).isEmpty(); + } +} From 076523d92c7ab5f2c68f57a0e8ed521cf05e7fc9 Mon Sep 17 00:00:00 2001 From: Chris Edwards Date: Fri, 19 Dec 2025 11:37:40 -0500 Subject: [PATCH 2/5] Add statuses filter to LibraryFilterForm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Support filtering libraries by status (CURRENT, FLAGGED, STALE, etc.) to match TeamServer NgLibraryFilterRequest capabilities. Note: Named 'statuses' (plural) since parent FilterForm already has 'status' as a String field. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../http/LibraryFilterForm.java | 14 +++++++ .../http/LibraryFilterFormTest.java | 40 +++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java index c9d2e346..093ec34c 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java @@ -66,6 +66,7 @@ public String toString() { private boolean includeUsed; private boolean includeUnused; private EnumSet environments; + private List statuses; public LibraryFilterForm() { super(); @@ -81,6 +82,7 @@ public LibraryFilterForm() { this.includeUsed = false; this.includeUnused = false; this.environments = EnumSet.noneOf(ServerEnvironment.class); + this.statuses = new ArrayList<>(); } public List getApps() { @@ -171,6 +173,14 @@ public void setEnvironments(EnumSet environments) { this.environments = environments; } + public List getStatuses() { + return statuses; + } + + public void setStatuses(List statuses) { + this.statuses = statuses; + } + @Override public String toString() { String formString = super.toString(); @@ -218,6 +228,10 @@ public String toString() { .collect(Collectors.joining(","))); } + if (!statuses.isEmpty()) { + filters.add("statuses=" + String.join(",", statuses)); + } + filters.add("includeUsed=" + includeUsed); filters.add("includeUnused=" + includeUnused); diff --git a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java index df73c611..930415d6 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java @@ -22,7 +22,9 @@ import static org.assertj.core.api.Assertions.assertThat; +import java.util.Arrays; import java.util.EnumSet; +import java.util.List; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -73,4 +75,42 @@ public void getEnvironments_should_return_set_environments() { public void environments_should_be_empty_by_default() { assertThat(form.getEnvironments()).isEmpty(); } + + @Test + public void toString_should_include_statuses_when_set() { + form.setStatuses(Arrays.asList("CURRENT", "FLAGGED")); + String qs = form.toString(); + + assertThat(qs).contains("statuses="); + assertThat(qs).contains("CURRENT"); + assertThat(qs).contains("FLAGGED"); + } + + @Test + public void toString_should_not_include_statuses_when_empty() { + String qs = form.toString(); + + assertThat(qs).doesNotContain("statuses="); + } + + @Test + public void toString_should_include_single_status() { + form.setStatuses(Arrays.asList("STALE")); + String qs = form.toString(); + + assertThat(qs).contains("statuses=STALE"); + } + + @Test + public void getStatuses_should_return_set_statuses() { + List expected = Arrays.asList("CURRENT", "UNKNOWN"); + form.setStatuses(expected); + + assertThat(form.getStatuses()).isEqualTo(expected); + } + + @Test + public void statuses_should_be_empty_by_default() { + assertThat(form.getStatuses()).isEmpty(); + } } From 4f8e349e4beaec5fca7ab250b5e04dc5483fd71c Mon Sep 17 00:00:00 2001 From: Chris Edwards Date: Fri, 19 Dec 2025 11:45:28 -0500 Subject: [PATCH 3/5] Add severities filter to LibraryFilterForm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Support filtering libraries by CVE severity (CRITICAL, HIGH, MEDIUM, LOW, NOTE) to achieve parity with TeamServer's NgLibraryFilterRequest. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../http/LibraryFilterForm.java | 14 +++++++ .../http/LibraryFilterFormTest.java | 38 +++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java index 093ec34c..8afd9056 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java @@ -67,6 +67,7 @@ public String toString() { private boolean includeUnused; private EnumSet environments; private List statuses; + private List severities; public LibraryFilterForm() { super(); @@ -83,6 +84,7 @@ public LibraryFilterForm() { this.includeUnused = false; this.environments = EnumSet.noneOf(ServerEnvironment.class); this.statuses = new ArrayList<>(); + this.severities = new ArrayList<>(); } public List getApps() { @@ -181,6 +183,14 @@ public void setStatuses(List statuses) { this.statuses = statuses; } + public List getSeverities() { + return severities; + } + + public void setSeverities(List severities) { + this.severities = severities; + } + @Override public String toString() { String formString = super.toString(); @@ -232,6 +242,10 @@ public String toString() { filters.add("statuses=" + String.join(",", statuses)); } + if (!severities.isEmpty()) { + filters.add("severities=" + String.join(",", severities)); + } + filters.add("includeUsed=" + includeUsed); filters.add("includeUnused=" + includeUnused); diff --git a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java index 930415d6..b4d53920 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java @@ -113,4 +113,42 @@ public void getStatuses_should_return_set_statuses() { public void statuses_should_be_empty_by_default() { assertThat(form.getStatuses()).isEmpty(); } + + @Test + public void toString_should_include_severities_when_set() { + form.setSeverities(Arrays.asList("CRITICAL", "HIGH")); + String qs = form.toString(); + + assertThat(qs).contains("severities="); + assertThat(qs).contains("CRITICAL"); + assertThat(qs).contains("HIGH"); + } + + @Test + public void toString_should_not_include_severities_when_empty() { + String qs = form.toString(); + + assertThat(qs).doesNotContain("severities="); + } + + @Test + public void toString_should_include_single_severity() { + form.setSeverities(Arrays.asList("MEDIUM")); + String qs = form.toString(); + + assertThat(qs).contains("severities=MEDIUM"); + } + + @Test + public void getSeverities_should_return_set_severities() { + List expected = Arrays.asList("LOW", "NOTE"); + form.setSeverities(expected); + + assertThat(form.getSeverities()).isEqualTo(expected); + } + + @Test + public void severities_should_be_empty_by_default() { + assertThat(form.getSeverities()).isEmpty(); + } } From 2838ef1cf43e5a1646511d005e59d2080997ed42 Mon Sep 17 00:00:00 2001 From: Chris Edwards Date: Fri, 2 Jan 2026 14:51:30 -0500 Subject: [PATCH 4/5] Improve test assertions per PR review feedback Update tests to verify complete query string format (e.g., environments=DEVELOPMENT,PRODUCTION) instead of checking parameter names and values separately. --- .../http/LibraryFilterFormTest.java | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java index b4d53920..663c8e61 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/LibraryFilterFormTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -42,9 +42,8 @@ public void toString_should_include_environments_when_set() { form.setEnvironments(EnumSet.of(ServerEnvironment.DEVELOPMENT, ServerEnvironment.PRODUCTION)); String qs = form.toString(); - assertThat(qs).contains("environments="); - assertThat(qs).contains("DEVELOPMENT"); - assertThat(qs).contains("PRODUCTION"); + // EnumSet order may vary, so check for either ordering + assertThat(qs).containsPattern("environments=(DEVELOPMENT,PRODUCTION|PRODUCTION,DEVELOPMENT)"); } @Test @@ -81,9 +80,7 @@ public void toString_should_include_statuses_when_set() { form.setStatuses(Arrays.asList("CURRENT", "FLAGGED")); String qs = form.toString(); - assertThat(qs).contains("statuses="); - assertThat(qs).contains("CURRENT"); - assertThat(qs).contains("FLAGGED"); + assertThat(qs).contains("statuses=CURRENT,FLAGGED"); } @Test @@ -119,9 +116,7 @@ public void toString_should_include_severities_when_set() { form.setSeverities(Arrays.asList("CRITICAL", "HIGH")); String qs = form.toString(); - assertThat(qs).contains("severities="); - assertThat(qs).contains("CRITICAL"); - assertThat(qs).contains("HIGH"); + assertThat(qs).contains("severities=CRITICAL,HIGH"); } @Test From d7a2dde5789de4e34611aef16bbb4733cf28477b Mon Sep 17 00:00:00 2001 From: Chris Edwards Date: Fri, 2 Jan 2026 14:53:46 -0500 Subject: [PATCH 5/5] Update license headers to 2026 --- .../main/java-templates/com/contrastsecurity/sdk/Version.java | 2 +- .../contrastsecurity/exceptions/ApplicationCreateException.java | 2 +- .../com/contrastsecurity/exceptions/ConfigurationException.java | 2 +- .../java/com/contrastsecurity/exceptions/ContrastException.java | 2 +- .../com/contrastsecurity/exceptions/HttpResponseException.java | 2 +- .../contrastsecurity/exceptions/InvalidConversionException.java | 2 +- .../contrastsecurity/exceptions/ResourceNotFoundException.java | 2 +- .../contrastsecurity/exceptions/ServerResponseException.java | 2 +- .../com/contrastsecurity/exceptions/UnauthorizedException.java | 2 +- .../java/com/contrastsecurity/http/ApplicationFilterForm.java | 2 +- sdk/src/main/java/com/contrastsecurity/http/FilterForm.java | 2 +- sdk/src/main/java/com/contrastsecurity/http/HttpMethod.java | 2 +- .../com/contrastsecurity/http/JobOutcomePolicyListResponse.java | 2 +- .../main/java/com/contrastsecurity/http/LibraryFilterForm.java | 2 +- sdk/src/main/java/com/contrastsecurity/http/MediaType.java | 2 +- .../main/java/com/contrastsecurity/http/RequestConstants.java | 2 +- .../java/com/contrastsecurity/http/RequestUrlConstants.java | 2 +- sdk/src/main/java/com/contrastsecurity/http/RuleSeverity.java | 2 +- .../java/com/contrastsecurity/http/SecurityCheckFilter.java | 2 +- .../main/java/com/contrastsecurity/http/SecurityCheckForm.java | 2 +- .../java/com/contrastsecurity/http/SecurityCheckResponse.java | 2 +- .../main/java/com/contrastsecurity/http/ServerEnvironment.java | 2 +- .../main/java/com/contrastsecurity/http/ServerFilterForm.java | 2 +- .../main/java/com/contrastsecurity/http/TraceFilterForm.java | 2 +- .../main/java/com/contrastsecurity/http/TraceFilterKeycode.java | 2 +- .../main/java/com/contrastsecurity/http/TraceFilterType.java | 2 +- sdk/src/main/java/com/contrastsecurity/http/UrlBuilder.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/AgentType.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Application.java | 2 +- .../java/com/contrastsecurity/models/ApplicationImportance.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Applications.java | 2 +- .../java/com/contrastsecurity/models/AssessLicenseOverview.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Card.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Chapter.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/CodeObject.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Coverage.java | 2 +- .../java/com/contrastsecurity/models/CustomRecommendation.java | 2 +- .../java/com/contrastsecurity/models/CustomRuleReferences.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Event.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/EventDetails.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/EventItem.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/EventModel.java | 2 +- .../main/java/com/contrastsecurity/models/EventResource.java | 2 +- .../java/com/contrastsecurity/models/EventSummaryResponse.java | 2 +- .../main/java/com/contrastsecurity/models/FreeformMetadata.java | 2 +- .../main/java/com/contrastsecurity/models/GenericResponse.java | 2 +- .../main/java/com/contrastsecurity/models/GlobalProperties.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/HttpRequest.java | 2 +- .../java/com/contrastsecurity/models/HttpRequestResponse.java | 2 +- .../main/java/com/contrastsecurity/models/JobOutcomePolicy.java | 2 +- .../com/contrastsecurity/models/JobOutcomePolicySeverity.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Libraries.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Library.java | 2 +- .../main/java/com/contrastsecurity/models/LibraryScores.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/LibraryStats.java | 2 +- .../java/com/contrastsecurity/models/LibraryVulnerability.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/License.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Login.java | 2 +- .../java/com/contrastsecurity/models/MakeRequestResponse.java | 2 +- .../main/java/com/contrastsecurity/models/MetadataEntity.java | 2 +- .../java/com/contrastsecurity/models/MetadataFilterGroup.java | 2 +- .../com/contrastsecurity/models/MetadataFilterResponse.java | 2 +- .../java/com/contrastsecurity/models/MetadataFilterValue.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/MetadataItem.java | 2 +- .../main/java/com/contrastsecurity/models/NameValuePair.java | 2 +- .../java/com/contrastsecurity/models/NotificationResource.java | 2 +- .../java/com/contrastsecurity/models/NotificationsResponse.java | 2 +- .../main/java/com/contrastsecurity/models/NumericMetadata.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Organization.java | 2 +- .../main/java/com/contrastsecurity/models/Organizations.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Parameter.java | 2 +- .../com/contrastsecurity/models/PointOfContactMetadata.java | 2 +- .../main/java/com/contrastsecurity/models/PropertyResource.java | 2 +- .../main/java/com/contrastsecurity/models/Recommendation.java | 2 +- .../com/contrastsecurity/models/RecommendationResponse.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Risk.java | 2 +- .../models/RouteCoverageBySessionIDAndMetadataRequest.java | 2 +- .../models/RouteCoverageMetadataLabelValues.java | 2 +- .../java/com/contrastsecurity/models/RouteCoverageResponse.java | 2 +- .../main/java/com/contrastsecurity/models/RuleReferences.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Rules.java | 2 +- .../main/java/com/contrastsecurity/models/ScanPagedResult.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Scores.java | 2 +- .../main/java/com/contrastsecurity/models/SecurityCheck.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Server.java | 2 +- .../java/com/contrastsecurity/models/ServerTagsResponse.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Servers.java | 2 +- .../main/java/com/contrastsecurity/models/SessionMetadata.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/SignUp.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Stacktrace.java | 2 +- .../main/java/com/contrastsecurity/models/StatusRequest.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Story.java | 2 +- .../main/java/com/contrastsecurity/models/StoryResponse.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Tag.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Tags.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/TagsResponse.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Trace.java | 2 +- .../main/java/com/contrastsecurity/models/TraceBreakdown.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/TraceEvent.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/TraceFilter.java | 2 +- .../main/java/com/contrastsecurity/models/TraceFilterBody.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/TraceListing.java | 2 +- .../java/com/contrastsecurity/models/TraceMetadataFilter.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/TraceNote.java | 2 +- .../java/com/contrastsecurity/models/TraceNoteResource.java | 2 +- .../java/com/contrastsecurity/models/TraceNotesResponse.java | 2 +- .../main/java/com/contrastsecurity/models/TraceResponse.java | 2 +- .../java/com/contrastsecurity/models/TraceTimestampField.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Traces.java | 2 +- .../java/com/contrastsecurity/models/TracesWithResponse.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/URLEntry.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/User.java | 2 +- sdk/src/main/java/com/contrastsecurity/models/Users.java | 2 +- .../contrastsecurity/models/VulnerabilityQuickFilterType.java | 2 +- .../java/com/contrastsecurity/models/VulnerabilityTrend.java | 2 +- .../contrastsecurity/models/dtm/ApplicationCreateRequest.java | 2 +- .../contrastsecurity/models/dtm/AttestationCreateRequest.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/ContrastSDK.java | 2 +- .../main/java/com/contrastsecurity/sdk/UserAgentProduct.java | 2 +- .../java/com/contrastsecurity/sdk/internal/GsonFactory.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/internal/Lists.java | 2 +- .../main/java/com/contrastsecurity/sdk/internal/Nullable.java | 2 +- .../java/com/contrastsecurity/sdk/internal/Refreshable.java | 2 +- .../main/java/com/contrastsecurity/sdk/internal/URIBuilder.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/CodeArtifact.java | 2 +- .../java/com/contrastsecurity/sdk/scan/CodeArtifactClient.java | 2 +- .../com/contrastsecurity/sdk/scan/CodeArtifactClientImpl.java | 2 +- .../java/com/contrastsecurity/sdk/scan/CodeArtifactImpl.java | 2 +- .../java/com/contrastsecurity/sdk/scan/CodeArtifactInner.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/CodeArtifacts.java | 2 +- .../java/com/contrastsecurity/sdk/scan/CodeArtifactsImpl.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/Project.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ProjectClient.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ProjectClientImpl.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ProjectCreate.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ProjectImpl.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ProjectInner.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/Projects.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ProjectsImpl.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ProjectsQuery.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/Sample.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/Scan.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClient.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ScanClientImpl.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanCreate.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ScanException.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanImpl.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanInner.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ScanManager.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanManagerImpl.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanPagedResult.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanStatus.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/ScanSummary.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanSummaryImpl.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanSummaryInner.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/Scans.java | 2 +- sdk/src/main/java/com/contrastsecurity/sdk/scan/ScansImpl.java | 2 +- .../main/java/com/contrastsecurity/sdk/scan/package-info.java | 2 +- .../main/java/com/contrastsecurity/utils/ContrastSDKUtils.java | 2 +- .../java/com/contrastsecurity/utils/MetadataDeserializer.java | 2 +- .../java/com/contrastsecurity/EqualsAndHashcodeContract.java | 2 +- sdk/src/test/java/com/contrastsecurity/GsonTest.java | 2 +- sdk/src/test/java/com/contrastsecurity/PactConstants.java | 2 +- sdk/src/test/java/com/contrastsecurity/TestDataConstants.java | 2 +- .../contrastsecurity/exceptions/HttpResponseExceptionTest.java | 2 +- .../contrastsecurity/exceptions/UnauthorizedExceptionTest.java | 2 +- .../contrastsecurity/http/ApplicationFilterFilterFormTest.java | 2 +- sdk/src/test/java/com/contrastsecurity/http/FilterFormTest.java | 2 +- .../java/com/contrastsecurity/http/TraceFilterFormTest.java | 2 +- sdk/src/test/java/com/contrastsecurity/http/UrlBuilderTest.java | 2 +- .../java/com/contrastsecurity/models/TraceFilterBodyTest.java | 2 +- sdk/src/test/java/com/contrastsecurity/sdk/ContrastSDKTest.java | 2 +- .../java/com/contrastsecurity/sdk/internal/URIBuilderTest.java | 2 +- .../java/com/contrastsecurity/sdk/scan/CodeArtifactAssert.java | 2 +- .../contrastsecurity/sdk/scan/CodeArtifactClientImplTest.java | 2 +- .../com/contrastsecurity/sdk/scan/CodeArtifactsImplTest.java | 2 +- .../com/contrastsecurity/sdk/scan/CodeArtifactsPactTest.java | 2 +- .../test/java/com/contrastsecurity/sdk/scan/ProjectAssert.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ProjectsImplTest.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ProjectsPactTest.java | 2 +- sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanAssert.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanManagerImplTest.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanSummaryAssert.java | 2 +- .../java/com/contrastsecurity/sdk/scan/ScanSummaryImplTest.java | 2 +- .../test/java/com/contrastsecurity/sdk/scan/ScansImplTest.java | 2 +- .../test/java/com/contrastsecurity/sdk/scan/ScansPactTest.java | 2 +- .../java/com/contrastsecurity/utils/ContrastSDKUtilsTest.java | 2 +- 187 files changed, 187 insertions(+), 187 deletions(-) diff --git a/sdk/src/main/java-templates/com/contrastsecurity/sdk/Version.java b/sdk/src/main/java-templates/com/contrastsecurity/sdk/Version.java index 4f92fedf..3803abf8 100644 --- a/sdk/src/main/java-templates/com/contrastsecurity/sdk/Version.java +++ b/sdk/src/main/java-templates/com/contrastsecurity/sdk/Version.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/ApplicationCreateException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/ApplicationCreateException.java index f8fb973f..43cc2a0d 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/ApplicationCreateException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/ApplicationCreateException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/ConfigurationException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/ConfigurationException.java index 6853bfad..5d895432 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/ConfigurationException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/ConfigurationException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/ContrastException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/ContrastException.java index 94a3baa5..254f78f5 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/ContrastException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/ContrastException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/HttpResponseException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/HttpResponseException.java index 86670ff7..e9ea1e00 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/HttpResponseException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/HttpResponseException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/InvalidConversionException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/InvalidConversionException.java index e2a0f8e6..2b6b6894 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/InvalidConversionException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/InvalidConversionException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/ResourceNotFoundException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/ResourceNotFoundException.java index 2cbe7d46..e51f3b80 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/ResourceNotFoundException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/ResourceNotFoundException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/ServerResponseException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/ServerResponseException.java index 816fb2a4..2c978000 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/ServerResponseException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/ServerResponseException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/exceptions/UnauthorizedException.java b/sdk/src/main/java/com/contrastsecurity/exceptions/UnauthorizedException.java index 3546bf7e..ceb3515c 100644 --- a/sdk/src/main/java/com/contrastsecurity/exceptions/UnauthorizedException.java +++ b/sdk/src/main/java/com/contrastsecurity/exceptions/UnauthorizedException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/ApplicationFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/ApplicationFilterForm.java index 28b39f2e..2ce1b6aa 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/ApplicationFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/ApplicationFilterForm.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/FilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/FilterForm.java index 162d6fef..7b97666f 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/FilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/FilterForm.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/HttpMethod.java b/sdk/src/main/java/com/contrastsecurity/http/HttpMethod.java index 6346432c..2aeda074 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/HttpMethod.java +++ b/sdk/src/main/java/com/contrastsecurity/http/HttpMethod.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/JobOutcomePolicyListResponse.java b/sdk/src/main/java/com/contrastsecurity/http/JobOutcomePolicyListResponse.java index fda73542..a6716565 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/JobOutcomePolicyListResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/http/JobOutcomePolicyListResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java index 8afd9056..28360505 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/LibraryFilterForm.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/MediaType.java b/sdk/src/main/java/com/contrastsecurity/http/MediaType.java index 1b83b469..6ba2a707 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/MediaType.java +++ b/sdk/src/main/java/com/contrastsecurity/http/MediaType.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/RequestConstants.java b/sdk/src/main/java/com/contrastsecurity/http/RequestConstants.java index cc659c00..b00d11b8 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/RequestConstants.java +++ b/sdk/src/main/java/com/contrastsecurity/http/RequestConstants.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/RequestUrlConstants.java b/sdk/src/main/java/com/contrastsecurity/http/RequestUrlConstants.java index 7118ec82..efd2d5bc 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/RequestUrlConstants.java +++ b/sdk/src/main/java/com/contrastsecurity/http/RequestUrlConstants.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/RuleSeverity.java b/sdk/src/main/java/com/contrastsecurity/http/RuleSeverity.java index b4d06ee4..44e2dcdd 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/RuleSeverity.java +++ b/sdk/src/main/java/com/contrastsecurity/http/RuleSeverity.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckFilter.java b/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckFilter.java index e7c70a20..feeeac5c 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckFilter.java +++ b/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckFilter.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckForm.java b/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckForm.java index bbd71a70..8b8f34c2 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckForm.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckResponse.java b/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckResponse.java index 9a20ffa5..37689b59 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/http/SecurityCheckResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/ServerEnvironment.java b/sdk/src/main/java/com/contrastsecurity/http/ServerEnvironment.java index adfec832..9c1c56eb 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/ServerEnvironment.java +++ b/sdk/src/main/java/com/contrastsecurity/http/ServerEnvironment.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/ServerFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/ServerFilterForm.java index 9ef3a94f..06c08f31 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/ServerFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/ServerFilterForm.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/TraceFilterForm.java b/sdk/src/main/java/com/contrastsecurity/http/TraceFilterForm.java index 3c063a1b..5478c77b 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/TraceFilterForm.java +++ b/sdk/src/main/java/com/contrastsecurity/http/TraceFilterForm.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/TraceFilterKeycode.java b/sdk/src/main/java/com/contrastsecurity/http/TraceFilterKeycode.java index 606b51ea..0b9342c3 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/TraceFilterKeycode.java +++ b/sdk/src/main/java/com/contrastsecurity/http/TraceFilterKeycode.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/TraceFilterType.java b/sdk/src/main/java/com/contrastsecurity/http/TraceFilterType.java index 96de9d37..900452a3 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/TraceFilterType.java +++ b/sdk/src/main/java/com/contrastsecurity/http/TraceFilterType.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/http/UrlBuilder.java b/sdk/src/main/java/com/contrastsecurity/http/UrlBuilder.java index 4f7e231c..81c4d585 100644 --- a/sdk/src/main/java/com/contrastsecurity/http/UrlBuilder.java +++ b/sdk/src/main/java/com/contrastsecurity/http/UrlBuilder.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/AgentType.java b/sdk/src/main/java/com/contrastsecurity/models/AgentType.java index f841b60b..be5e4183 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/AgentType.java +++ b/sdk/src/main/java/com/contrastsecurity/models/AgentType.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Application.java b/sdk/src/main/java/com/contrastsecurity/models/Application.java index c97937b3..eb1afdc6 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Application.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Application.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/ApplicationImportance.java b/sdk/src/main/java/com/contrastsecurity/models/ApplicationImportance.java index 66fd5e31..44f31bde 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/ApplicationImportance.java +++ b/sdk/src/main/java/com/contrastsecurity/models/ApplicationImportance.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Applications.java b/sdk/src/main/java/com/contrastsecurity/models/Applications.java index 10367496..5a8ce935 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Applications.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Applications.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/AssessLicenseOverview.java b/sdk/src/main/java/com/contrastsecurity/models/AssessLicenseOverview.java index 75730d5c..2bd5d465 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/AssessLicenseOverview.java +++ b/sdk/src/main/java/com/contrastsecurity/models/AssessLicenseOverview.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Card.java b/sdk/src/main/java/com/contrastsecurity/models/Card.java index a87e847d..09352472 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Card.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Card.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Chapter.java b/sdk/src/main/java/com/contrastsecurity/models/Chapter.java index e54f66df..a61d0f85 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Chapter.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Chapter.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/CodeObject.java b/sdk/src/main/java/com/contrastsecurity/models/CodeObject.java index 008eccbb..c28ac43e 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/CodeObject.java +++ b/sdk/src/main/java/com/contrastsecurity/models/CodeObject.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Coverage.java b/sdk/src/main/java/com/contrastsecurity/models/Coverage.java index 95b3d59c..c13f0b49 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Coverage.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Coverage.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/CustomRecommendation.java b/sdk/src/main/java/com/contrastsecurity/models/CustomRecommendation.java index 345db25c..f1b74a0f 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/CustomRecommendation.java +++ b/sdk/src/main/java/com/contrastsecurity/models/CustomRecommendation.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/CustomRuleReferences.java b/sdk/src/main/java/com/contrastsecurity/models/CustomRuleReferences.java index c06bee5f..636b8a6c 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/CustomRuleReferences.java +++ b/sdk/src/main/java/com/contrastsecurity/models/CustomRuleReferences.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Event.java b/sdk/src/main/java/com/contrastsecurity/models/Event.java index a9a386b1..07e0356b 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Event.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Event.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/EventDetails.java b/sdk/src/main/java/com/contrastsecurity/models/EventDetails.java index 6d13b1cb..d31c0fc0 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/EventDetails.java +++ b/sdk/src/main/java/com/contrastsecurity/models/EventDetails.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/EventItem.java b/sdk/src/main/java/com/contrastsecurity/models/EventItem.java index 5d88f310..f5f4ba31 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/EventItem.java +++ b/sdk/src/main/java/com/contrastsecurity/models/EventItem.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/EventModel.java b/sdk/src/main/java/com/contrastsecurity/models/EventModel.java index 32e93cd4..ffca0b27 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/EventModel.java +++ b/sdk/src/main/java/com/contrastsecurity/models/EventModel.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/EventResource.java b/sdk/src/main/java/com/contrastsecurity/models/EventResource.java index 4f3dc7fc..9d656176 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/EventResource.java +++ b/sdk/src/main/java/com/contrastsecurity/models/EventResource.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/EventSummaryResponse.java b/sdk/src/main/java/com/contrastsecurity/models/EventSummaryResponse.java index 52860abe..08229e01 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/EventSummaryResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/EventSummaryResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/FreeformMetadata.java b/sdk/src/main/java/com/contrastsecurity/models/FreeformMetadata.java index f06381dc..83fef9bc 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/FreeformMetadata.java +++ b/sdk/src/main/java/com/contrastsecurity/models/FreeformMetadata.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/GenericResponse.java b/sdk/src/main/java/com/contrastsecurity/models/GenericResponse.java index c4f7ee11..8aa19fa1 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/GenericResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/GenericResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/GlobalProperties.java b/sdk/src/main/java/com/contrastsecurity/models/GlobalProperties.java index c29bb6c7..c9f65112 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/GlobalProperties.java +++ b/sdk/src/main/java/com/contrastsecurity/models/GlobalProperties.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/HttpRequest.java b/sdk/src/main/java/com/contrastsecurity/models/HttpRequest.java index 54eeaa90..f456811f 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/HttpRequest.java +++ b/sdk/src/main/java/com/contrastsecurity/models/HttpRequest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/HttpRequestResponse.java b/sdk/src/main/java/com/contrastsecurity/models/HttpRequestResponse.java index eb53a67b..0c87ffcf 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/HttpRequestResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/HttpRequestResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicy.java b/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicy.java index cff66729..25acb4f4 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicy.java +++ b/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicy.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicySeverity.java b/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicySeverity.java index a68a8716..bb2df5e4 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicySeverity.java +++ b/sdk/src/main/java/com/contrastsecurity/models/JobOutcomePolicySeverity.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Libraries.java b/sdk/src/main/java/com/contrastsecurity/models/Libraries.java index 920b4d97..6c1c64bd 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Libraries.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Libraries.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Library.java b/sdk/src/main/java/com/contrastsecurity/models/Library.java index 248bcca3..31bba83c 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Library.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Library.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/LibraryScores.java b/sdk/src/main/java/com/contrastsecurity/models/LibraryScores.java index d3eee324..f982d1d5 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/LibraryScores.java +++ b/sdk/src/main/java/com/contrastsecurity/models/LibraryScores.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/LibraryStats.java b/sdk/src/main/java/com/contrastsecurity/models/LibraryStats.java index 3fb49d3e..241db910 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/LibraryStats.java +++ b/sdk/src/main/java/com/contrastsecurity/models/LibraryStats.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/LibraryVulnerability.java b/sdk/src/main/java/com/contrastsecurity/models/LibraryVulnerability.java index f1a64542..e06af740 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/LibraryVulnerability.java +++ b/sdk/src/main/java/com/contrastsecurity/models/LibraryVulnerability.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/License.java b/sdk/src/main/java/com/contrastsecurity/models/License.java index 768a889a..b11201ce 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/License.java +++ b/sdk/src/main/java/com/contrastsecurity/models/License.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Login.java b/sdk/src/main/java/com/contrastsecurity/models/Login.java index 7358f7b1..78a715a9 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Login.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Login.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/MakeRequestResponse.java b/sdk/src/main/java/com/contrastsecurity/models/MakeRequestResponse.java index ca7c7dfd..303c67d5 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/MakeRequestResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/MakeRequestResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/MetadataEntity.java b/sdk/src/main/java/com/contrastsecurity/models/MetadataEntity.java index 55bdec36..5f1466ce 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/MetadataEntity.java +++ b/sdk/src/main/java/com/contrastsecurity/models/MetadataEntity.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterGroup.java b/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterGroup.java index 743d7b51..e220d136 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterGroup.java +++ b/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterGroup.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterResponse.java b/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterResponse.java index 4c6f1537..2c23afdf 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterValue.java b/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterValue.java index 63f42c15..54abaec9 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterValue.java +++ b/sdk/src/main/java/com/contrastsecurity/models/MetadataFilterValue.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/MetadataItem.java b/sdk/src/main/java/com/contrastsecurity/models/MetadataItem.java index ecf412f1..3c6f8b31 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/MetadataItem.java +++ b/sdk/src/main/java/com/contrastsecurity/models/MetadataItem.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/NameValuePair.java b/sdk/src/main/java/com/contrastsecurity/models/NameValuePair.java index e77292dd..4f6356c4 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/NameValuePair.java +++ b/sdk/src/main/java/com/contrastsecurity/models/NameValuePair.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/NotificationResource.java b/sdk/src/main/java/com/contrastsecurity/models/NotificationResource.java index eff967c2..cb80b80d 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/NotificationResource.java +++ b/sdk/src/main/java/com/contrastsecurity/models/NotificationResource.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/NotificationsResponse.java b/sdk/src/main/java/com/contrastsecurity/models/NotificationsResponse.java index 35449699..19b0cdf1 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/NotificationsResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/NotificationsResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/NumericMetadata.java b/sdk/src/main/java/com/contrastsecurity/models/NumericMetadata.java index 9e357bca..3d860191 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/NumericMetadata.java +++ b/sdk/src/main/java/com/contrastsecurity/models/NumericMetadata.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Organization.java b/sdk/src/main/java/com/contrastsecurity/models/Organization.java index 0e7879c0..0338bc25 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Organization.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Organization.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Organizations.java b/sdk/src/main/java/com/contrastsecurity/models/Organizations.java index f64f880f..d80e7c6d 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Organizations.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Organizations.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Parameter.java b/sdk/src/main/java/com/contrastsecurity/models/Parameter.java index 811e26fd..083637ad 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Parameter.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Parameter.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/PointOfContactMetadata.java b/sdk/src/main/java/com/contrastsecurity/models/PointOfContactMetadata.java index 04a169c8..29ef4421 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/PointOfContactMetadata.java +++ b/sdk/src/main/java/com/contrastsecurity/models/PointOfContactMetadata.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/PropertyResource.java b/sdk/src/main/java/com/contrastsecurity/models/PropertyResource.java index c8159903..2451c8df 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/PropertyResource.java +++ b/sdk/src/main/java/com/contrastsecurity/models/PropertyResource.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Recommendation.java b/sdk/src/main/java/com/contrastsecurity/models/Recommendation.java index 336465b3..45d43ae3 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Recommendation.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Recommendation.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/RecommendationResponse.java b/sdk/src/main/java/com/contrastsecurity/models/RecommendationResponse.java index d6691409..fe0a0c7b 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/RecommendationResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/RecommendationResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Risk.java b/sdk/src/main/java/com/contrastsecurity/models/Risk.java index 7e4b0c0b..589d1f89 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Risk.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Risk.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageBySessionIDAndMetadataRequest.java b/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageBySessionIDAndMetadataRequest.java index 115e268a..5d326058 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageBySessionIDAndMetadataRequest.java +++ b/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageBySessionIDAndMetadataRequest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageMetadataLabelValues.java b/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageMetadataLabelValues.java index c01c980d..a90a77b5 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageMetadataLabelValues.java +++ b/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageMetadataLabelValues.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageResponse.java b/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageResponse.java index 8485aba4..7c3d8a33 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/RouteCoverageResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/RuleReferences.java b/sdk/src/main/java/com/contrastsecurity/models/RuleReferences.java index 9535e0be..76846e8b 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/RuleReferences.java +++ b/sdk/src/main/java/com/contrastsecurity/models/RuleReferences.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Rules.java b/sdk/src/main/java/com/contrastsecurity/models/Rules.java index 89ec0ce6..eac6bb13 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Rules.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Rules.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/ScanPagedResult.java b/sdk/src/main/java/com/contrastsecurity/models/ScanPagedResult.java index 3b02e8ad..a5df5060 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/ScanPagedResult.java +++ b/sdk/src/main/java/com/contrastsecurity/models/ScanPagedResult.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Scores.java b/sdk/src/main/java/com/contrastsecurity/models/Scores.java index 3f9822f2..6c8530b9 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Scores.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Scores.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/SecurityCheck.java b/sdk/src/main/java/com/contrastsecurity/models/SecurityCheck.java index 89d786ce..9de3c8e9 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/SecurityCheck.java +++ b/sdk/src/main/java/com/contrastsecurity/models/SecurityCheck.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Server.java b/sdk/src/main/java/com/contrastsecurity/models/Server.java index 6f427d91..4cb42d48 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Server.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Server.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/ServerTagsResponse.java b/sdk/src/main/java/com/contrastsecurity/models/ServerTagsResponse.java index cf0e874d..1fc4c909 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/ServerTagsResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/ServerTagsResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Servers.java b/sdk/src/main/java/com/contrastsecurity/models/Servers.java index 73c211ac..9efb4da9 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Servers.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Servers.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/SessionMetadata.java b/sdk/src/main/java/com/contrastsecurity/models/SessionMetadata.java index b1b4d60c..70f7a9dd 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/SessionMetadata.java +++ b/sdk/src/main/java/com/contrastsecurity/models/SessionMetadata.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/SignUp.java b/sdk/src/main/java/com/contrastsecurity/models/SignUp.java index 5a37b4e2..ebff2ea6 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/SignUp.java +++ b/sdk/src/main/java/com/contrastsecurity/models/SignUp.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Stacktrace.java b/sdk/src/main/java/com/contrastsecurity/models/Stacktrace.java index 82a6e011..11d2a8c4 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Stacktrace.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Stacktrace.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/StatusRequest.java b/sdk/src/main/java/com/contrastsecurity/models/StatusRequest.java index 60e19120..23ae0a27 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/StatusRequest.java +++ b/sdk/src/main/java/com/contrastsecurity/models/StatusRequest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Story.java b/sdk/src/main/java/com/contrastsecurity/models/Story.java index 226280e0..338e6662 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Story.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Story.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/StoryResponse.java b/sdk/src/main/java/com/contrastsecurity/models/StoryResponse.java index 05b43a76..a00e0f93 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/StoryResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/StoryResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Tag.java b/sdk/src/main/java/com/contrastsecurity/models/Tag.java index c93ff896..48041093 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Tag.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Tag.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Tags.java b/sdk/src/main/java/com/contrastsecurity/models/Tags.java index d00d4ba5..4e651275 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Tags.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Tags.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TagsResponse.java b/sdk/src/main/java/com/contrastsecurity/models/TagsResponse.java index dfe3bccb..5d5d7b83 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TagsResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TagsResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Trace.java b/sdk/src/main/java/com/contrastsecurity/models/Trace.java index ea68d253..feb8a823 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Trace.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Trace.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceBreakdown.java b/sdk/src/main/java/com/contrastsecurity/models/TraceBreakdown.java index 69b91aa3..cccadbc7 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceBreakdown.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceBreakdown.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceEvent.java b/sdk/src/main/java/com/contrastsecurity/models/TraceEvent.java index 72d1ca31..45f718e4 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceEvent.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceEvent.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceFilter.java b/sdk/src/main/java/com/contrastsecurity/models/TraceFilter.java index 8d7f7765..8968bfef 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceFilter.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceFilter.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceFilterBody.java b/sdk/src/main/java/com/contrastsecurity/models/TraceFilterBody.java index f677ac5f..b3f5d7ed 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceFilterBody.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceFilterBody.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceListing.java b/sdk/src/main/java/com/contrastsecurity/models/TraceListing.java index 5efe8016..8328a545 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceListing.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceListing.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceMetadataFilter.java b/sdk/src/main/java/com/contrastsecurity/models/TraceMetadataFilter.java index 7cbacce7..75ba8b97 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceMetadataFilter.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceMetadataFilter.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceNote.java b/sdk/src/main/java/com/contrastsecurity/models/TraceNote.java index 0502a89f..0637cde1 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceNote.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceNote.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceNoteResource.java b/sdk/src/main/java/com/contrastsecurity/models/TraceNoteResource.java index 46b589f9..91a1cc5c 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceNoteResource.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceNoteResource.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceNotesResponse.java b/sdk/src/main/java/com/contrastsecurity/models/TraceNotesResponse.java index a9585d68..664fd63d 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceNotesResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceNotesResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceResponse.java b/sdk/src/main/java/com/contrastsecurity/models/TraceResponse.java index e6001592..b77eac81 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TraceTimestampField.java b/sdk/src/main/java/com/contrastsecurity/models/TraceTimestampField.java index 28c79913..cfdfd155 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TraceTimestampField.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TraceTimestampField.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Traces.java b/sdk/src/main/java/com/contrastsecurity/models/Traces.java index fcac82cc..4105a74f 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Traces.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Traces.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/TracesWithResponse.java b/sdk/src/main/java/com/contrastsecurity/models/TracesWithResponse.java index f5cbff32..71ba94b9 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/TracesWithResponse.java +++ b/sdk/src/main/java/com/contrastsecurity/models/TracesWithResponse.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/URLEntry.java b/sdk/src/main/java/com/contrastsecurity/models/URLEntry.java index 04e7fab9..e020ffae 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/URLEntry.java +++ b/sdk/src/main/java/com/contrastsecurity/models/URLEntry.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/User.java b/sdk/src/main/java/com/contrastsecurity/models/User.java index 2235d9ac..79827f28 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/User.java +++ b/sdk/src/main/java/com/contrastsecurity/models/User.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/Users.java b/sdk/src/main/java/com/contrastsecurity/models/Users.java index b1d054bf..d3fe4b9d 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/Users.java +++ b/sdk/src/main/java/com/contrastsecurity/models/Users.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityQuickFilterType.java b/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityQuickFilterType.java index 89d1704a..4e9ff7db 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityQuickFilterType.java +++ b/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityQuickFilterType.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityTrend.java b/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityTrend.java index 2312d1be..5a56f8b3 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityTrend.java +++ b/sdk/src/main/java/com/contrastsecurity/models/VulnerabilityTrend.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/dtm/ApplicationCreateRequest.java b/sdk/src/main/java/com/contrastsecurity/models/dtm/ApplicationCreateRequest.java index 10f33f17..062cb47d 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/dtm/ApplicationCreateRequest.java +++ b/sdk/src/main/java/com/contrastsecurity/models/dtm/ApplicationCreateRequest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/models/dtm/AttestationCreateRequest.java b/sdk/src/main/java/com/contrastsecurity/models/dtm/AttestationCreateRequest.java index be501afb..a7b25f89 100644 --- a/sdk/src/main/java/com/contrastsecurity/models/dtm/AttestationCreateRequest.java +++ b/sdk/src/main/java/com/contrastsecurity/models/dtm/AttestationCreateRequest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/ContrastSDK.java b/sdk/src/main/java/com/contrastsecurity/sdk/ContrastSDK.java index 3873e259..6f516270 100755 --- a/sdk/src/main/java/com/contrastsecurity/sdk/ContrastSDK.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/ContrastSDK.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/UserAgentProduct.java b/sdk/src/main/java/com/contrastsecurity/sdk/UserAgentProduct.java index 2f1b304f..8e8e6f50 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/UserAgentProduct.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/UserAgentProduct.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/internal/GsonFactory.java b/sdk/src/main/java/com/contrastsecurity/sdk/internal/GsonFactory.java index d3e40923..9c6bad63 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/internal/GsonFactory.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/internal/GsonFactory.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/internal/Lists.java b/sdk/src/main/java/com/contrastsecurity/sdk/internal/Lists.java index 0f03afcd..211d1783 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/internal/Lists.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/internal/Lists.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/internal/Nullable.java b/sdk/src/main/java/com/contrastsecurity/sdk/internal/Nullable.java index 759781ea..9908e3d2 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/internal/Nullable.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/internal/Nullable.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/internal/Refreshable.java b/sdk/src/main/java/com/contrastsecurity/sdk/internal/Refreshable.java index 23895815..aa73fe6b 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/internal/Refreshable.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/internal/Refreshable.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/internal/URIBuilder.java b/sdk/src/main/java/com/contrastsecurity/sdk/internal/URIBuilder.java index 037623c4..8a145573 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/internal/URIBuilder.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/internal/URIBuilder.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifact.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifact.java index 6f0d7566..249672d2 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifact.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifact.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClient.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClient.java index fc27d906..fb626dfb 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClient.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClient.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImpl.java index 0525406d..5d86b42c 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactImpl.java index 5a86ddb5..06226c23 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactInner.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactInner.java index dbe95d07..17f47872 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactInner.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactInner.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifacts.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifacts.java index e411d831..682e2b30 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifacts.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifacts.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactsImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactsImpl.java index cb98935c..2077ddd2 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactsImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/CodeArtifactsImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Project.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Project.java index f9f78ba7..bb829255 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Project.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Project.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClient.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClient.java index ed91d2b4..d5b724d2 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClient.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClient.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClientImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClientImpl.java index 5740e154..6a784ec8 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClientImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectClientImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectCreate.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectCreate.java index f4ac8621..762006c5 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectCreate.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectCreate.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectImpl.java index 60b7a3b0..11b96991 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectInner.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectInner.java index 88017783..9c83db7c 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectInner.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectInner.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Projects.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Projects.java index 7fca306a..7f41a2e7 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Projects.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Projects.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsImpl.java index ee6c38b1..357b1e52 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsQuery.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsQuery.java index 4a9575b5..3628a1be 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsQuery.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ProjectsQuery.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Sample.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Sample.java index 06d8199f..0e5f42a2 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Sample.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Sample.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scan.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scan.java index 0ef742cd..a3428331 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scan.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scan.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClient.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClient.java index 5e615f84..4802c4e7 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClient.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClient.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClientImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClientImpl.java index 4923327c..cd83e550 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClientImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanClientImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanCreate.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanCreate.java index 33c10e9d..91361841 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanCreate.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanCreate.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanException.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanException.java index e1fb2728..70d467e8 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanException.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanException.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanImpl.java index 75ec9462..2c47bc1e 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanInner.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanInner.java index 1ebb81d2..66aea0b4 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanInner.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanInner.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManager.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManager.java index 9307da5e..0f3e5562 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManager.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManager.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManagerImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManagerImpl.java index cb8a7907..ec0e7bb9 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManagerImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanManagerImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanPagedResult.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanPagedResult.java index 66f744b9..3c0f5a29 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanPagedResult.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanPagedResult.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanStatus.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanStatus.java index 4c912f41..dd02c227 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanStatus.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanStatus.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummary.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummary.java index 26a21e5f..2522b280 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummary.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummary.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryImpl.java index 27850403..b1007007 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryInner.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryInner.java index f8c6a55e..fff4c47a 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryInner.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScanSummaryInner.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scans.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scans.java index b00f9ca1..bf7f419e 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scans.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/Scans.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScansImpl.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScansImpl.java index 907f02b7..02bbc87d 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScansImpl.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/ScansImpl.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/sdk/scan/package-info.java b/sdk/src/main/java/com/contrastsecurity/sdk/scan/package-info.java index 7877a074..c32ca7b4 100644 --- a/sdk/src/main/java/com/contrastsecurity/sdk/scan/package-info.java +++ b/sdk/src/main/java/com/contrastsecurity/sdk/scan/package-info.java @@ -14,7 +14,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/utils/ContrastSDKUtils.java b/sdk/src/main/java/com/contrastsecurity/utils/ContrastSDKUtils.java index 12fc10a2..061a187c 100644 --- a/sdk/src/main/java/com/contrastsecurity/utils/ContrastSDKUtils.java +++ b/sdk/src/main/java/com/contrastsecurity/utils/ContrastSDKUtils.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/main/java/com/contrastsecurity/utils/MetadataDeserializer.java b/sdk/src/main/java/com/contrastsecurity/utils/MetadataDeserializer.java index feb6ab53..08f04620 100644 --- a/sdk/src/main/java/com/contrastsecurity/utils/MetadataDeserializer.java +++ b/sdk/src/main/java/com/contrastsecurity/utils/MetadataDeserializer.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/EqualsAndHashcodeContract.java b/sdk/src/test/java/com/contrastsecurity/EqualsAndHashcodeContract.java index 33ee4ead..8db4d370 100644 --- a/sdk/src/test/java/com/contrastsecurity/EqualsAndHashcodeContract.java +++ b/sdk/src/test/java/com/contrastsecurity/EqualsAndHashcodeContract.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/GsonTest.java b/sdk/src/test/java/com/contrastsecurity/GsonTest.java index 35ea0213..408c34ea 100644 --- a/sdk/src/test/java/com/contrastsecurity/GsonTest.java +++ b/sdk/src/test/java/com/contrastsecurity/GsonTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/PactConstants.java b/sdk/src/test/java/com/contrastsecurity/PactConstants.java index 72c8c35e..8080d212 100644 --- a/sdk/src/test/java/com/contrastsecurity/PactConstants.java +++ b/sdk/src/test/java/com/contrastsecurity/PactConstants.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/TestDataConstants.java b/sdk/src/test/java/com/contrastsecurity/TestDataConstants.java index 112f1586..9384e9b6 100644 --- a/sdk/src/test/java/com/contrastsecurity/TestDataConstants.java +++ b/sdk/src/test/java/com/contrastsecurity/TestDataConstants.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/exceptions/HttpResponseExceptionTest.java b/sdk/src/test/java/com/contrastsecurity/exceptions/HttpResponseExceptionTest.java index b452b58d..e2fe0aaf 100644 --- a/sdk/src/test/java/com/contrastsecurity/exceptions/HttpResponseExceptionTest.java +++ b/sdk/src/test/java/com/contrastsecurity/exceptions/HttpResponseExceptionTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/exceptions/UnauthorizedExceptionTest.java b/sdk/src/test/java/com/contrastsecurity/exceptions/UnauthorizedExceptionTest.java index 569a2e02..0716e315 100644 --- a/sdk/src/test/java/com/contrastsecurity/exceptions/UnauthorizedExceptionTest.java +++ b/sdk/src/test/java/com/contrastsecurity/exceptions/UnauthorizedExceptionTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/http/ApplicationFilterFilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/ApplicationFilterFilterFormTest.java index 05789eef..36493bdb 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/ApplicationFilterFilterFormTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/ApplicationFilterFilterFormTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/http/FilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/FilterFormTest.java index f30065f4..fccce4cf 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/FilterFormTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/FilterFormTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/http/TraceFilterFormTest.java b/sdk/src/test/java/com/contrastsecurity/http/TraceFilterFormTest.java index 35a1ac7d..69bac15e 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/TraceFilterFormTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/TraceFilterFormTest.java @@ -3,7 +3,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/http/UrlBuilderTest.java b/sdk/src/test/java/com/contrastsecurity/http/UrlBuilderTest.java index af8f96a5..597da492 100644 --- a/sdk/src/test/java/com/contrastsecurity/http/UrlBuilderTest.java +++ b/sdk/src/test/java/com/contrastsecurity/http/UrlBuilderTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/models/TraceFilterBodyTest.java b/sdk/src/test/java/com/contrastsecurity/models/TraceFilterBodyTest.java index 26423f09..69bff292 100644 --- a/sdk/src/test/java/com/contrastsecurity/models/TraceFilterBodyTest.java +++ b/sdk/src/test/java/com/contrastsecurity/models/TraceFilterBodyTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/ContrastSDKTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/ContrastSDKTest.java index 752fac2e..e8c27c5d 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/ContrastSDKTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/ContrastSDKTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/internal/URIBuilderTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/internal/URIBuilderTest.java index 75c4fcc4..97696799 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/internal/URIBuilderTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/internal/URIBuilderTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactAssert.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactAssert.java index 19943b4a..761ccca3 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactAssert.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactAssert.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImplTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImplTest.java index fe34b1e2..7088f3f3 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImplTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactClientImplTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsImplTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsImplTest.java index 9947e453..8d51553d 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsImplTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsImplTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsPactTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsPactTest.java index 10d642eb..e482fb8b 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsPactTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/CodeArtifactsPactTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectAssert.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectAssert.java index 9bc2a5f3..ca8a1cbd 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectAssert.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectAssert.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsImplTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsImplTest.java index f66b2326..2f459085 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsImplTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsImplTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsPactTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsPactTest.java index b4818ea4..a9f95c45 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsPactTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ProjectsPactTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanAssert.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanAssert.java index 5ff024ea..9ca3ede4 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanAssert.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanAssert.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanManagerImplTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanManagerImplTest.java index 7ba6db25..7547577e 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanManagerImplTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanManagerImplTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryAssert.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryAssert.java index 1988da06..a3ca2aeb 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryAssert.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryAssert.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryImplTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryImplTest.java index 4207ac7a..7cb9e5cd 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryImplTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScanSummaryImplTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansImplTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansImplTest.java index 44c1f1ec..b4d28477 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansImplTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansImplTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansPactTest.java b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansPactTest.java index 600b0e80..95dacb51 100644 --- a/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansPactTest.java +++ b/sdk/src/test/java/com/contrastsecurity/sdk/scan/ScansPactTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sdk/src/test/java/com/contrastsecurity/utils/ContrastSDKUtilsTest.java b/sdk/src/test/java/com/contrastsecurity/utils/ContrastSDKUtilsTest.java index c3274d85..7bb93622 100644 --- a/sdk/src/test/java/com/contrastsecurity/utils/ContrastSDKUtilsTest.java +++ b/sdk/src/test/java/com/contrastsecurity/utils/ContrastSDKUtilsTest.java @@ -4,7 +4,7 @@ * #%L * Contrast Java SDK * %% - * Copyright (C) 2022 - 2025 Contrast Security, Inc. + * Copyright (C) 2022 - 2026 Contrast Security, Inc. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.