Package net.webpdf.wsclient.openapi
Class ServerConfigUserAzureAd
- java.lang.Object
-
- net.webpdf.wsclient.openapi.ServerConfigUserAzureAd
-
public class ServerConfigUserAzureAd extends Object
Defines an Azure Active Directory as user source.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_AUTHORITYstatic StringJSON_PROPERTY_CLIENT_IDstatic StringJSON_PROPERTY_SCOPE
-
Constructor Summary
Constructors Constructor Description ServerConfigUserAzureAd()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerConfigUserAzureAdauthority(String authority)ServerConfigUserAzureAdclientId(String clientId)booleanequals(Object o)@Nullable StringgetAuthority()Defines the URL to be used for logging in to Azure AD.@Nullable StringgetClientId()Defines the client (application) ID that is stored in the Azure AD in the application registration.@Nullable StringgetScope()Defines the scope to be used when logging in to Anzure AD.inthashCode()ServerConfigUserAzureAdscope(String scope)voidsetAuthority(String authority)voidsetClientId(String clientId)voidsetScope(String scope)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_AUTHORITY
public static final String JSON_PROPERTY_AUTHORITY
- See Also:
- Constant Field Values
-
JSON_PROPERTY_CLIENT_ID
public static final String JSON_PROPERTY_CLIENT_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SCOPE
public static final String JSON_PROPERTY_SCOPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
authority
public ServerConfigUserAzureAd authority(String authority)
-
getAuthority
@Nullable public @Nullable String getAuthority()
Defines the URL to be used for logging in to Azure AD.- Returns:
- authority
-
setAuthority
public void setAuthority(String authority)
-
clientId
public ServerConfigUserAzureAd clientId(String clientId)
-
getClientId
@Nullable public @Nullable String getClientId()
Defines the client (application) ID that is stored in the Azure AD in the application registration.- Returns:
- clientId
-
setClientId
public void setClientId(String clientId)
-
scope
public ServerConfigUserAzureAd scope(String scope)
-
getScope
@Nullable public @Nullable String getScope()
Defines the scope to be used when logging in to Anzure AD.- Returns:
- scope
-
setScope
public void setScope(String scope)
-
-