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

io.helidon.integrations.oci.sdk.cdi.ResourcePrincipalAdpSupplier Maven / Gradle / Ivy

There is a newer version: 4.1.4
Show newest version
/*
 * Copyright (c) 2024 Oracle and/or its affiliates.
 *
 * 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.
 */
package io.helidon.integrations.oci.sdk.cdi;

import java.util.Optional;
import java.util.function.Function;
import java.util.function.Supplier;

import com.oracle.bmc.auth.ResourcePrincipalAuthenticationDetailsProvider;
import com.oracle.bmc.auth.ResourcePrincipalAuthenticationDetailsProvider.ResourcePrincipalAuthenticationDetailsProviderBuilder;

/**
 * An {@link AdpSupplier} of {@link ResourcePrincipalAuthenticationDetailsProvider} instances.
 *
 * @see #get()
 *
 * @see #ResourcePrincipalAdpSupplier(Supplier, Function)
 *
 * @see ResourcePrincipalAuthenticationDetailsProvider
 *
 * @see ResourcePrincipalAuthenticationDetailsProviderBuilder
 */
class ResourcePrincipalAdpSupplier implements AdpSupplier {


    /*
     * Instance fields.
     */


    private final Supplier bs;

    private final Function f;


    /*
     * Constructors.
     */


    /**
     * Creates a new {@link ResourcePrincipalAdpSupplier}.
     *
     * @see #ResourcePrincipalAdpSupplier(Supplier, Function)
     */
    ResourcePrincipalAdpSupplier() {
        this(ResourcePrincipalAuthenticationDetailsProvider::builder,
             ResourcePrincipalAuthenticationDetailsProviderBuilder::build);
    }

    /**
     * Creates a new {@link ResourcePrincipalAdpSupplier}.
     *
     * @param bs a {@link Supplier} of {@link ResourcePrincipalAuthenticationDetailsProviderBuilder
     * ResourcePrincipalAuthenticationDetailsProviderBuilder} instances; must not be {@code null}; {@link
     * ResourcePrincipalAuthenticationDetailsProvider#builder() ResourcePrincipalAuthenticationDetailsProvider::builder}
     * is a commonly-supplied value
     *
     * @exception NullPointerException if any argument is {@code null}
     *
     * @see #ResourcePrincipalAdpSupplier(Supplier, Function)
     */
    ResourcePrincipalAdpSupplier(Supplier bs) {
        this(bs, ResourcePrincipalAuthenticationDetailsProviderBuilder::build);
    }

    /**
     * Creates a new {@link ResourcePrincipalAdpSupplier}.
     *
     * @param f a {@link Function} that accepts an {@link ResourcePrincipalAuthenticationDetailsProviderBuilder
     * ResourcePrincipalAuthenticationDetailsProviderBuilder} and returns an {@link
     * ResourcePrincipalAuthenticationDetailsProvider} sourced ultimately from its {@link
     * ResourcePrincipalAuthenticationDetailsProviderBuilder#build() build()} method; must not be {@code null}; {@link
     * ResourcePrincipalAuthenticationDetailsProviderBuilder#build()
     * ResourcePrincipalAuthenticationDetailsProviderBuilder::build} is a commonly-supplied value
     *
     * @exception NullPointerException if any argument is {@code null}
     *
     * @see #ResourcePrincipalAdpSupplier(Supplier, Function)
     */
    ResourcePrincipalAdpSupplier(Function f) {
        this(ResourcePrincipalAuthenticationDetailsProvider::builder, f);
    }

    /**
     * Creates a new {@link ResourcePrincipalAdpSupplier}.
     *
     * @param bs a {@link Supplier} of {@link ResourcePrincipalAuthenticationDetailsProviderBuilder
     * ResourcePrincipalAuthenticationDetailsProviderBuilder} instances; must not be {@code null}; {@link
     * ResourcePrincipalAuthenticationDetailsProvider#builder() ResourcePrincipalAuthenticationDetailsProvider::builder}
     * is a commonly-supplied value
     *
     * @param f a {@link Function} that accepts an {@link ResourcePrincipalAuthenticationDetailsProviderBuilder
     * ResourcePrincipalAuthenticationDetailsProviderBuilder} and returns an {@link
     * ResourcePrincipalAuthenticationDetailsProvider} sourced ultimately from its {@link
     * ResourcePrincipalAuthenticationDetailsProviderBuilder#build() build()} method; must not be {@code null}; {@link
     * ResourcePrincipalAuthenticationDetailsProviderBuilder#build()
     * ResourcePrincipalAuthenticationDetailsProviderBuilder::build} is a commonly-supplied value
     *
     * @exception NullPointerException if any argument is {@code null}
     */
    // This is The Way.
    ResourcePrincipalAdpSupplier(Supplier bs,
                                 Function f) {
        super();
        this.bs = bs == null ? ResourcePrincipalAuthenticationDetailsProvider::builder : bs;
        this.f = f == null ? ResourcePrincipalAuthenticationDetailsProviderBuilder::build : f;
    }


    /*
     * Instance methods.
     */


    /**
     * Returns an {@link Optional} {@linkplain Optional#get() housing} a {@link
     * ResourcePrincipalAuthenticationDetailsProvider} instance.
     *
     * 

An {@linkplain Optional#isEmpty() empty Optional} return value indicates only that at the moment * of invocation minimal requirements were not met. It implies no further semantics of any kind.

* *

This method will return an {@linkplain Optional#isEmpty() empty Optional} if at the moment of * invocation an invocation of the {@link #available()} method returns {@code false}.

* * @return an {@link Optional} {@linkplain Optional#get() housing} a {@link * ResourcePrincipalAuthenticationDetailsProvider} instance; never {@code null} * * @see #ResourcePrincipalAdpSupplier(Supplier, Function) * * @see #available() * * @see ResourcePrincipalAuthenticationDetailsProvider */ @Override public final Optional get() { return Optional.ofNullable(available() ? this.f.apply(this.bs.get()) : null); } /* * Static methods. */ /** * Returns {@code true} if a non-{@code null} value {@linkplain System#getenv(String) exists for the environment * variable} named "{@link ResourcePrincipalAuthenticationDetailsProvider OCI_RESOURCE_PRINCIPAL_VERSION}" and * {@code false} if it does not. * * @return {@code true} if a non-{@code null} value {@linkplain System#getenv(String) exists for the environment * variable} named "{@link ResourcePrincipalAuthenticationDetailsProvider OCI_RESOURCE_PRINCIPAL_VERSION}" and * {@code false} if it does not * * @see ResourcePrincipalAuthenticationDetailsProvider */ public static boolean available() { return System.getenv("OCI_RESOURCE_PRINCIPAL_VERSION") != null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy