Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.skyflow</groupId>
<artifactId>skyflow-java</artifactId>
<version>2.0.1</version>
<version>3.0.0-beta.8-dev.c20e456</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Map<String, List<String>> headers() {
return this.headers;
}

@java.lang.Override
@Override
public String toString() {
return "ApiClientApiException{" + "message: " + getMessage() + ", statusCode: " + statusCode + ", body: " + body
+ "}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private ClientOptions(
{
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.skyflow.fern:api-sdk");
put("X-Fern-SDK-Version", "0.0.378");
put("X-Fern-SDK-Version", "0.0.385");
}
});
this.headerSuppliers = headerSuppliers;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public BadRequestError(Object body, Response rawResponse) {
/**
* @return the body
*/
@java.lang.Override
@Override
public Object body() {
return this.body;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public InternalServerError(ErrorResponse body, Response rawResponse) {
/**
* @return the body
*/
@java.lang.Override
@Override
public ErrorResponse body() {
return this.body;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public NotFoundError(Object body, Response rawResponse) {
/**
* @return the body
*/
@java.lang.Override
@Override
public Object body() {
return this.body;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public UnauthorizedError(Object body, Response rawResponse) {
/**
* @return the body
*/
@java.lang.Override
@Override
public Object body() {
return this.body;
}
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public enum AuditServiceListAuditEventsRequestFilterOpsActionType {
}

@JsonValue
@java.lang.Override
@Override
public String toString() {
return this.value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public enum AuditServiceListAuditEventsRequestFilterOpsContextAccessType {
}

@JsonValue
@java.lang.Override
@Override
public String toString() {
return this.value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public enum AuditServiceListAuditEventsRequestFilterOpsContextActorType {
}

@JsonValue
@java.lang.Override
@Override
public String toString() {
return this.value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public enum AuditServiceListAuditEventsRequestFilterOpsContextAuthMode {
}

@JsonValue
@java.lang.Override
@Override
public String toString() {
return this.value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public enum AuditServiceListAuditEventsRequestFilterOpsResourceType {
}

@JsonValue
@java.lang.Override
@Override
public String toString() {
return this.value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public enum AuditServiceListAuditEventsRequestSortOpsOrderBy {
}

@JsonValue
@java.lang.Override
@Override
public String toString() {
return this.value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public Optional<String> getScope() {
return scope;
}

@java.lang.Override
@Override
public boolean equals(Object other) {
if (this == other) return true;
return other instanceof V1GetAuthTokenRequest && equalTo((V1GetAuthTokenRequest) other);
Expand All @@ -120,7 +120,7 @@ private boolean equalTo(V1GetAuthTokenRequest other) {
&& scope.equals(other.scope);
}

@java.lang.Override
@Override
public int hashCode() {
return Objects.hash(
this.grantType,
Expand All @@ -131,7 +131,7 @@ public int hashCode() {
this.scope);
}

@java.lang.Override
@Override
public String toString() {
return ObjectMappers.stringify(this);
}
Expand Down Expand Up @@ -207,7 +207,7 @@ public static final class Builder implements GrantTypeStage, AssertionStage, _Fi

private Builder() {}

@java.lang.Override
@Override
public Builder from(V1GetAuthTokenRequest other) {
grantType(other.getGrantType());
assertion(other.getAssertion());
Expand All @@ -222,7 +222,7 @@ public Builder from(V1GetAuthTokenRequest other) {
* Grant type of the request. Set this to `urn:ietf:params:oauth:grant-type:jwt-bearer`.<p>Grant type of the request. Set this to <code>urn:ietf:params:oauth:grant-type:jwt-bearer</code>.</p>
* @return Reference to {@code this} so that method calls can be chained together.
*/
@java.lang.Override
@Override
@JsonSetter("grant_type")
public AssertionStage grantType(@NotNull String grantType) {
this.grantType = Objects.requireNonNull(grantType, "grantType must not be null");
Expand All @@ -233,7 +233,7 @@ public AssertionStage grantType(@NotNull String grantType) {
* User-signed JWT token that contains the following fields: <br/> <ul><li><code>iss</code>: Issuer of the JWT.</li><li><code>key</code>: Unique identifier for the key.</li><li><code>aud</code>: Recipient the JWT is intended for.</li><li><code>exp</code>: Time the JWT expires.</li><li><code>sub</code>: Subject of the JWT.</li><li><code>ctx</code>: (Optional) Value for <a href='/context-aware-overview/'>Context-aware authorization</a>.</li></ul><p>User-signed JWT token that contains the following fields: &lt;br/&gt; &lt;ul&gt;&lt;li&gt;&lt;code&gt;iss&lt;/code&gt;: Issuer of the JWT.&lt;/li&gt;&lt;li&gt;&lt;code&gt;key&lt;/code&gt;: Unique identifier for the key.&lt;/li&gt;&lt;li&gt;&lt;code&gt;aud&lt;/code&gt;: Recipient the JWT is intended for.&lt;/li&gt;&lt;li&gt;&lt;code&gt;exp&lt;/code&gt;: Time the JWT expires.&lt;/li&gt;&lt;li&gt;&lt;code&gt;sub&lt;/code&gt;: Subject of the JWT.&lt;/li&gt;&lt;li&gt;&lt;code&gt;ctx&lt;/code&gt;: (Optional) Value for &lt;a href='/context-aware-overview/'&gt;Context-aware authorization&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;</p>
* @return Reference to {@code this} so that method calls can be chained together.
*/
@java.lang.Override
@Override
@JsonSetter("assertion")
public _FinalStage assertion(@NotNull String assertion) {
this.assertion = Objects.requireNonNull(assertion, "assertion must not be null");
Expand All @@ -244,7 +244,7 @@ public _FinalStage assertion(@NotNull String assertion) {
* <p>Subset of available &lt;a href='#Roles'&gt;roles&lt;/a&gt; to associate with the requested token. Uses the format &quot;role:&lt;roleID1&gt; role:&lt;roleID2&gt;&quot;.</p>
* @return Reference to {@code this} so that method calls can be chained together.
*/
@java.lang.Override
@Override
public _FinalStage scope(String scope) {
this.scope = Optional.ofNullable(scope);
return this;
Expand All @@ -253,7 +253,7 @@ public _FinalStage scope(String scope) {
/**
* <p>Subset of available &lt;a href='#Roles'&gt;roles&lt;/a&gt; to associate with the requested token. Uses the format &quot;role:&lt;roleID1&gt; role:&lt;roleID2&gt;&quot;.</p>
*/
@java.lang.Override
@Override
@JsonSetter(value = "scope", nulls = Nulls.SKIP)
public _FinalStage scope(Optional<String> scope) {
this.scope = scope;
Expand All @@ -264,7 +264,7 @@ public _FinalStage scope(Optional<String> scope) {
* <p>Token use type. Either <code>delegation</code> or <code>impersonation</code>.</p>
* @return Reference to {@code this} so that method calls can be chained together.
*/
@java.lang.Override
@Override
public _FinalStage requestedTokenUse(String requestedTokenUse) {
this.requestedTokenUse = Optional.ofNullable(requestedTokenUse);
return this;
Expand All @@ -273,7 +273,7 @@ public _FinalStage requestedTokenUse(String requestedTokenUse) {
/**
* <p>Token use type. Either <code>delegation</code> or <code>impersonation</code>.</p>
*/
@java.lang.Override
@Override
@JsonSetter(value = "requested_token_use", nulls = Nulls.SKIP)
public _FinalStage requestedTokenUse(Optional<String> requestedTokenUse) {
this.requestedTokenUse = requestedTokenUse;
Expand All @@ -284,7 +284,7 @@ public _FinalStage requestedTokenUse(Optional<String> requestedTokenUse) {
* <p>Subject token type.</p>
* @return Reference to {@code this} so that method calls can be chained together.
*/
@java.lang.Override
@Override
public _FinalStage subjectTokenType(String subjectTokenType) {
this.subjectTokenType = Optional.ofNullable(subjectTokenType);
return this;
Expand All @@ -293,7 +293,7 @@ public _FinalStage subjectTokenType(String subjectTokenType) {
/**
* <p>Subject token type.</p>
*/
@java.lang.Override
@Override
@JsonSetter(value = "subject_token_type", nulls = Nulls.SKIP)
public _FinalStage subjectTokenType(Optional<String> subjectTokenType) {
this.subjectTokenType = subjectTokenType;
Expand All @@ -304,7 +304,7 @@ public _FinalStage subjectTokenType(Optional<String> subjectTokenType) {
* <p>Subject token.</p>
* @return Reference to {@code this} so that method calls can be chained together.
*/
@java.lang.Override
@Override
public _FinalStage subjectToken(String subjectToken) {
this.subjectToken = Optional.ofNullable(subjectToken);
return this;
Expand All @@ -313,14 +313,14 @@ public _FinalStage subjectToken(String subjectToken) {
/**
* <p>Subject token.</p>
*/
@java.lang.Override
@Override
@JsonSetter(value = "subject_token", nulls = Nulls.SKIP)
public _FinalStage subjectToken(Optional<String> subjectToken) {
this.subjectToken = subjectToken;
return this;
}

@java.lang.Override
@Override
public V1GetAuthTokenRequest build() {
return new V1GetAuthTokenRequest(
grantType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public Optional<String> getSkyflowId() {
return skyflowId;
}

@java.lang.Override
@Override
public boolean equals(Object other) {
if (this == other) return true;
return other instanceof V1BinListRequest && equalTo((V1BinListRequest) other);
Expand All @@ -92,12 +92,12 @@ private boolean equalTo(V1BinListRequest other) {
&& skyflowId.equals(other.skyflowId);
}

@java.lang.Override
@Override
public int hashCode() {
return Objects.hash(this.fields, this.bin, this.vaultSchemaConfig, this.skyflowId);
}

@java.lang.Override
@Override
public String toString() {
return ObjectMappers.stringify(this);
}
Expand Down
Loading
Loading