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

io.milvus.param.credential.DeleteCredentialParam Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
Show newest version
package io.milvus.param.credential;

import io.milvus.exception.ParamException;
import io.milvus.param.ParamUtils;
import lombok.Getter;
import lombok.NonNull;

@Getter
public class DeleteCredentialParam {
    private final String username;

    private DeleteCredentialParam(@NonNull DeleteCredentialParam.Builder builder) {
        this.username = builder.username;
    }

    public static DeleteCredentialParam.Builder newBuilder() {
        return new DeleteCredentialParam.Builder();
    }

    /**
     * Builder for {@link DeleteCredentialParam} class.
     */
    public static final class Builder {
        private String username;

        private Builder() {
        }

        /**
         * Sets the username. Username cannot be empty or null.
         *
         * @param username username
         * @return Builder
         */
        public DeleteCredentialParam.Builder withUsername(@NonNull String username) {
            this.username = username;
            return this;
        }

        /**
         * Verifies parameters and creates a new {@link DeleteCredentialParam} instance.
         *
         * @return {@link DeleteCredentialParam}
         */
        public DeleteCredentialParam build() throws ParamException {
            ParamUtils.CheckNullEmptyString(username, "Username");

            return new DeleteCredentialParam(this);
        }
    }

    /**
     * Constructs a String by {@link DeleteCredentialParam} instance.
     *
     * @return String
     */
    @Override
    public String toString() {
        return "DeleteCredentialParam{" +
                "username='" + username + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy