All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.elastic.clients.elasticsearch.security.InvalidateTokenResponse Maven / Gradle / Ivy

There is a newer version: 8.17.0
Show newest version
/*
 * Licensed to Elasticsearch B.V. under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch B.V. licenses this file to you under
 * the Apache License, Version 2.0 (the "License"); you may
 * not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------

package co.elastic.clients.elasticsearch.security;

import co.elastic.clients.elasticsearch._types.ErrorCause;
import co.elastic.clients.json.JsonpDeserializable;
import co.elastic.clients.json.JsonpDeserializer;
import co.elastic.clients.json.JsonpMapper;
import co.elastic.clients.json.JsonpSerializable;
import co.elastic.clients.json.ObjectBuilderDeserializer;
import co.elastic.clients.json.ObjectDeserializer;
import co.elastic.clients.util.ApiTypeHelper;
import co.elastic.clients.util.ObjectBuilder;
import co.elastic.clients.util.WithJsonObjectBuilderBase;
import jakarta.json.stream.JsonGenerator;
import java.lang.Long;
import java.util.List;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;

// typedef: security.invalidate_token.Response

/**
 *
 * @see API
 *      specification
 */
@JsonpDeserializable
public class InvalidateTokenResponse implements JsonpSerializable {
	private final long errorCount;

	private final List errorDetails;

	private final long invalidatedTokens;

	private final long previouslyInvalidatedTokens;

	// ---------------------------------------------------------------------------------------------

	private InvalidateTokenResponse(Builder builder) {

		this.errorCount = ApiTypeHelper.requireNonNull(builder.errorCount, this, "errorCount");
		this.errorDetails = ApiTypeHelper.unmodifiable(builder.errorDetails);
		this.invalidatedTokens = ApiTypeHelper.requireNonNull(builder.invalidatedTokens, this, "invalidatedTokens");
		this.previouslyInvalidatedTokens = ApiTypeHelper.requireNonNull(builder.previouslyInvalidatedTokens, this,
				"previouslyInvalidatedTokens");

	}

	public static InvalidateTokenResponse of(Function> fn) {
		return fn.apply(new Builder()).build();
	}

	/**
	 * Required - API name: {@code error_count}
	 */
	public final long errorCount() {
		return this.errorCount;
	}

	/**
	 * API name: {@code error_details}
	 */
	public final List errorDetails() {
		return this.errorDetails;
	}

	/**
	 * Required - API name: {@code invalidated_tokens}
	 */
	public final long invalidatedTokens() {
		return this.invalidatedTokens;
	}

	/**
	 * Required - API name: {@code previously_invalidated_tokens}
	 */
	public final long previouslyInvalidatedTokens() {
		return this.previouslyInvalidatedTokens;
	}

	/**
	 * Serialize this object to JSON.
	 */
	public void serialize(JsonGenerator generator, JsonpMapper mapper) {
		generator.writeStartObject();
		serializeInternal(generator, mapper);
		generator.writeEnd();
	}

	protected void serializeInternal(JsonGenerator generator, JsonpMapper mapper) {

		generator.writeKey("error_count");
		generator.write(this.errorCount);

		if (ApiTypeHelper.isDefined(this.errorDetails)) {
			generator.writeKey("error_details");
			generator.writeStartArray();
			for (ErrorCause item0 : this.errorDetails) {
				item0.serialize(generator, mapper);

			}
			generator.writeEnd();

		}
		generator.writeKey("invalidated_tokens");
		generator.write(this.invalidatedTokens);

		generator.writeKey("previously_invalidated_tokens");
		generator.write(this.previouslyInvalidatedTokens);

	}

	// ---------------------------------------------------------------------------------------------

	/**
	 * Builder for {@link InvalidateTokenResponse}.
	 */

	public static class Builder extends WithJsonObjectBuilderBase
			implements
				ObjectBuilder {
		private Long errorCount;

		@Nullable
		private List errorDetails;

		private Long invalidatedTokens;

		private Long previouslyInvalidatedTokens;

		/**
		 * Required - API name: {@code error_count}
		 */
		public final Builder errorCount(long value) {
			this.errorCount = value;
			return this;
		}

		/**
		 * API name: {@code error_details}
		 * 

* Adds all elements of list to errorDetails. */ public final Builder errorDetails(List list) { this.errorDetails = _listAddAll(this.errorDetails, list); return this; } /** * API name: {@code error_details} *

* Adds one or more values to errorDetails. */ public final Builder errorDetails(ErrorCause value, ErrorCause... values) { this.errorDetails = _listAdd(this.errorDetails, value, values); return this; } /** * API name: {@code error_details} *

* Adds a value to errorDetails using a builder lambda. */ public final Builder errorDetails(Function> fn) { return errorDetails(fn.apply(new ErrorCause.Builder()).build()); } /** * Required - API name: {@code invalidated_tokens} */ public final Builder invalidatedTokens(long value) { this.invalidatedTokens = value; return this; } /** * Required - API name: {@code previously_invalidated_tokens} */ public final Builder previouslyInvalidatedTokens(long value) { this.previouslyInvalidatedTokens = value; return this; } @Override protected Builder self() { return this; } /** * Builds a {@link InvalidateTokenResponse}. * * @throws NullPointerException * if some of the required fields are null. */ public InvalidateTokenResponse build() { _checkSingleUse(); return new InvalidateTokenResponse(this); } } // --------------------------------------------------------------------------------------------- /** * Json deserializer for {@link InvalidateTokenResponse} */ public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer .lazy(Builder::new, InvalidateTokenResponse::setupInvalidateTokenResponseDeserializer); protected static void setupInvalidateTokenResponseDeserializer( ObjectDeserializer op) { op.add(Builder::errorCount, JsonpDeserializer.longDeserializer(), "error_count"); op.add(Builder::errorDetails, JsonpDeserializer.arrayDeserializer(ErrorCause._DESERIALIZER), "error_details"); op.add(Builder::invalidatedTokens, JsonpDeserializer.longDeserializer(), "invalidated_tokens"); op.add(Builder::previouslyInvalidatedTokens, JsonpDeserializer.longDeserializer(), "previously_invalidated_tokens"); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy