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

com.authlete.common.util.ClientMetadataControl Maven / Gradle / Ivy

Go to download

Authlete Java library used commonly by service implementations and the Authlete server.

The newest version!
/*
 * Copyright (C) 2022 Authlete, Inc.
 *
 * 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 com.authlete.common.util;


/**
 * Flags to control contents of a map that represents client metadata.
 *
 * @since 3.45
 */
public class ClientMetadataControl extends MapControl
{
    private boolean secretIncluded;
    private boolean customIncluded;
    private boolean aliasPreferred;
    private boolean entityIdPreferred;


    @Override
    public ClientMetadataControl setNullIncluded(boolean included)
    {
        return (ClientMetadataControl)super.setNullIncluded(included);
    }


    @Override
    public ClientMetadataControl setZeroIncluded(boolean included)
    {
        return (ClientMetadataControl)super.setZeroIncluded(included);
    }


    @Override
    public ClientMetadataControl setFalseIncluded(boolean included)
    {
        return (ClientMetadataControl)super.setFalseIncluded(included);
    }


    /**
     * Get the flag indicating whether to include the {@code client_secret}
     * property.
     *
     * 

* Note that the {@code client_secret} property is not included when * the client type is not "confidential" * (cf. {@code Client.}{@link com.authlete.common.dto.Client#getClientType() getClientType()}). *

* * @return * {@code true} if the {@code client_secret} property is included. * {@code false} if the {@code client_secret} property is not * included. */ public boolean isSecretIncluded() { return secretIncluded; } /** * Set the flag indicating whether to include the {@code client_secret} * property. * *

* Note that the {@code client_secret} property is not included when * the client type is not "confidential" * (cf. {@code Client.}{@link com.authlete.common.dto.Client#getClientType() getClientType()}). *

* * @param included * {@code true} to include the {@code client_secret} property. * {@code false} not to include the {@code client_secret} property. * * @return * {@code this} object. */ public ClientMetadataControl setSecretIncluded(boolean included) { this.secretIncluded = included; return this; } /** * Get the flag indicating whether to include custom metadata. * * @return * {@code true} if custom metadata are included. * {@code false} if custom metadata are not included. */ public boolean isCustomIncluded() { return customIncluded; } /** * Set the flag indicating whether to include custom metadata. * * @param included * {@code true} to include custom metadata. * {@code false} not to include custom metadata. * * @return * {@code this} object. */ public ClientMetadataControl setCustomIncluded(boolean included) { this.customIncluded = included; return this; } /** * Get the flag whether to use the client ID alias as the value of the * {@code client_id} property when available. * *

* Note that the alias is not used if the alias feature is not enabled * (cf. {@code Client.}{@link com.authlete.common.dto.Client#isClientIdAliasEnabled() * isClientIdAliasEnabled()}). *

* * @return * {@code true} if the client ID alias is used as the value of the * {@code client_id} property when available. */ public boolean isAliasPreferred() { return aliasPreferred; } /** * Set the flag whether to use the client ID alias as the value of the * {@code client_id} property when available. * *

* Note that the alias is not used if the alias feature is not enabled * (cf. {@code Client.}{@link com.authlete.common.dto.Client#isClientIdAliasEnabled() * isClientIdAliasEnabled()}). *

* * @param preferred * {@code true} to use the client ID alias as the value of the * {@code client_id} property when available. * * @return * {@code this} object. */ public ClientMetadataControl setAliasPreferred(boolean preferred) { this.aliasPreferred = preferred; return this; } /** * Get the flag whether to use the entity ID as the value of the * {@code client_id} property when available. * * @return * {@code true} if the entity ID is used as the value of the * {@code client_id} property when available. */ public boolean isEntityIdPreferred() { return entityIdPreferred; } /** * Set the flag whether to use the entity ID as the value of the * {@code client_id} property when available. * * @param preferred * {@code true} to use the entity ID as the value of the * {@code client_id} property when available. * * @return * {@code this} object. */ public ClientMetadataControl setEntityIdPreferred(boolean preferred) { this.entityIdPreferred = preferred; return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy