/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.module.extension.internal.runtime.connectivity.oauth; import org.mule.runtime.extension.api.connectivity.oauth.AuthorizationCodeGrantType; import java.lang.reflect.Field; import java.util.Map; import java.util.Optional; /** * Groups the sum of all the parameters that a user configured in order to consume * an OAuth provider through an extension * * @since 4.0 */ public class OAuthConfig { private final String ownerConfigName; private final AuthCodeConfig authCodeConfig; private final OAuthCallbackConfig callbackConfig; private final Optional<OAuthObjectStoreConfig> storeConfig; private final AuthorizationCodeGrantType grantType; private final Map<String, String> customParameters; private final Map<Field, String> parameterExtractors; public OAuthConfig(String ownerConfigName, AuthCodeConfig authCodeConfig, OAuthCallbackConfig callbackConfig, Optional<OAuthObjectStoreConfig> storeConfig, AuthorizationCodeGrantType grantType, Map<String, String> customParameters, Map<Field, String> parameterExtractors) { this.ownerConfigName = ownerConfigName; this.authCodeConfig = authCodeConfig; this.callbackConfig = callbackConfig; this.storeConfig = storeConfig; this.grantType = grantType; this.customParameters = customParameters; this.parameterExtractors = parameterExtractors; } public String getOwnerConfigName() { return ownerConfigName; } public AuthCodeConfig getAuthCodeConfig() { return authCodeConfig; } public OAuthCallbackConfig getCallbackConfig() { return callbackConfig; } public Optional<OAuthObjectStoreConfig> getStoreConfig() { return storeConfig; } public AuthorizationCodeGrantType getGrantType() { return grantType; } public Map<String, String> getCustomParameters() { return customParameters; } public Map<Field, String> getParameterExtractors() { return parameterExtractors; } }