co.elastic.clients.elasticsearch.security.User Maven / Gradle / Ivy
Show all versions of elasticsearch-java Show documentation
/*
* 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.
*/
package co.elastic.clients.elasticsearch.security;
import co.elastic.clients.json.JsonData;
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.JsonpUtils;
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.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;
//----------------------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------------------
//
// This code is generated from the Elasticsearch API specification
// at https://github.com/elastic/elasticsearch-specification
//
// Manual updates to this file will be lost when the code is
// re-generated.
//
// If you find a property that is missing or wrongly typed, please
// open an issue or a PR on the API specification repository.
//
//----------------------------------------------------------------
// typedef: security._types.User
/**
*
* @see API
* specification
*/
@JsonpDeserializable
public class User implements JsonpSerializable {
@Nullable
private final String email;
@Nullable
private final String fullName;
private final Map metadata;
private final List roles;
private final String username;
private final boolean enabled;
@Nullable
private final String profileUid;
// ---------------------------------------------------------------------------------------------
protected User(AbstractBuilder> builder) {
this.email = builder.email;
this.fullName = builder.fullName;
this.metadata = ApiTypeHelper.unmodifiableRequired(builder.metadata, this, "metadata");
this.roles = ApiTypeHelper.unmodifiableRequired(builder.roles, this, "roles");
this.username = ApiTypeHelper.requireNonNull(builder.username, this, "username");
this.enabled = ApiTypeHelper.requireNonNull(builder.enabled, this, "enabled");
this.profileUid = builder.profileUid;
}
public static User userOf(Function> fn) {
return fn.apply(new Builder()).build();
}
/**
* API name: {@code email}
*/
@Nullable
public final String email() {
return this.email;
}
/**
* API name: {@code full_name}
*/
@Nullable
public final String fullName() {
return this.fullName;
}
/**
* Required - API name: {@code metadata}
*/
public final Map metadata() {
return this.metadata;
}
/**
* Required - API name: {@code roles}
*/
public final List roles() {
return this.roles;
}
/**
* Required - API name: {@code username}
*/
public final String username() {
return this.username;
}
/**
* Required - API name: {@code enabled}
*/
public final boolean enabled() {
return this.enabled;
}
/**
* API name: {@code profile_uid}
*/
@Nullable
public final String profileUid() {
return this.profileUid;
}
/**
* 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) {
if (this.email != null) {
generator.writeKey("email");
generator.write(this.email);
}
if (this.fullName != null) {
generator.writeKey("full_name");
generator.write(this.fullName);
}
if (ApiTypeHelper.isDefined(this.metadata)) {
generator.writeKey("metadata");
generator.writeStartObject();
for (Map.Entry item0 : this.metadata.entrySet()) {
generator.writeKey(item0.getKey());
item0.getValue().serialize(generator, mapper);
}
generator.writeEnd();
}
if (ApiTypeHelper.isDefined(this.roles)) {
generator.writeKey("roles");
generator.writeStartArray();
for (String item0 : this.roles) {
generator.write(item0);
}
generator.writeEnd();
}
generator.writeKey("username");
generator.write(this.username);
generator.writeKey("enabled");
generator.write(this.enabled);
if (this.profileUid != null) {
generator.writeKey("profile_uid");
generator.write(this.profileUid);
}
}
@Override
public String toString() {
return JsonpUtils.toString(this);
}
// ---------------------------------------------------------------------------------------------
/**
* Builder for {@link User}.
*/
public static class Builder extends User.AbstractBuilder implements ObjectBuilder {
@Override
protected Builder self() {
return this;
}
/**
* Builds a {@link User}.
*
* @throws NullPointerException
* if some of the required fields are null.
*/
public User build() {
_checkSingleUse();
return new User(this);
}
}
public abstract static class AbstractBuilder>
extends
WithJsonObjectBuilderBase {
@Nullable
private String email;
@Nullable
private String fullName;
private Map metadata;
private List roles;
private String username;
private Boolean enabled;
@Nullable
private String profileUid;
/**
* API name: {@code email}
*/
public final BuilderT email(@Nullable String value) {
this.email = value;
return self();
}
/**
* API name: {@code full_name}
*/
public final BuilderT fullName(@Nullable String value) {
this.fullName = value;
return self();
}
/**
* Required - API name: {@code metadata}
*
* Adds all entries of map
to metadata
.
*/
public final BuilderT metadata(Map map) {
this.metadata = _mapPutAll(this.metadata, map);
return self();
}
/**
* Required - API name: {@code metadata}
*
* Adds an entry to metadata
.
*/
public final BuilderT metadata(String key, JsonData value) {
this.metadata = _mapPut(this.metadata, key, value);
return self();
}
/**
* Required - API name: {@code roles}
*
* Adds all elements of list
to roles
.
*/
public final BuilderT roles(List list) {
this.roles = _listAddAll(this.roles, list);
return self();
}
/**
* Required - API name: {@code roles}
*
* Adds one or more values to roles
.
*/
public final BuilderT roles(String value, String... values) {
this.roles = _listAdd(this.roles, value, values);
return self();
}
/**
* Required - API name: {@code username}
*/
public final BuilderT username(String value) {
this.username = value;
return self();
}
/**
* Required - API name: {@code enabled}
*/
public final BuilderT enabled(boolean value) {
this.enabled = value;
return self();
}
/**
* API name: {@code profile_uid}
*/
public final BuilderT profileUid(@Nullable String value) {
this.profileUid = value;
return self();
}
protected abstract BuilderT self();
}
// ---------------------------------------------------------------------------------------------
/**
* Json deserializer for {@link User}
*/
public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer.lazy(Builder::new,
User::setupUserDeserializer);
protected static > void setupUserDeserializer(
ObjectDeserializer op) {
op.add(AbstractBuilder::email, JsonpDeserializer.stringDeserializer(), "email");
op.add(AbstractBuilder::fullName, JsonpDeserializer.stringDeserializer(), "full_name");
op.add(AbstractBuilder::metadata, JsonpDeserializer.stringMapDeserializer(JsonData._DESERIALIZER), "metadata");
op.add(AbstractBuilder::roles, JsonpDeserializer.arrayDeserializer(JsonpDeserializer.stringDeserializer()),
"roles");
op.add(AbstractBuilder::username, JsonpDeserializer.stringDeserializer(), "username");
op.add(AbstractBuilder::enabled, JsonpDeserializer.booleanDeserializer(), "enabled");
op.add(AbstractBuilder::profileUid, JsonpDeserializer.stringDeserializer(), "profile_uid");
}
}