Class AppleRegistration
- java.lang.Object
-
- com.azure.resourcemanager.appcontainers.models.AppleRegistration
-
public final class AppleRegistration extends Object
The configuration settings of the registration for the Apple provider.
-
-
Constructor Summary
Constructors Constructor Description AppleRegistration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
clientId()
Get the clientId property: The Client ID of the app used for login.String
clientSecretSettingName()
Get the clientSecretSettingName property: The app setting name that contains the client secret.void
validate()
Validates the instance.AppleRegistration
withClientId(String clientId)
Set the clientId property: The Client ID of the app used for login.AppleRegistration
withClientSecretSettingName(String clientSecretSettingName)
Set the clientSecretSettingName property: The app setting name that contains the client secret.
-
-
-
Method Detail
-
clientId
public String clientId()
Get the clientId property: The Client ID of the app used for login.- Returns:
- the clientId value.
-
withClientId
public AppleRegistration withClientId(String clientId)
Set the clientId property: The Client ID of the app used for login.- Parameters:
clientId
- the clientId value to set.- Returns:
- the AppleRegistration object itself.
-
clientSecretSettingName
public String clientSecretSettingName()
Get the clientSecretSettingName property: The app setting name that contains the client secret.- Returns:
- the clientSecretSettingName value.
-
withClientSecretSettingName
public AppleRegistration withClientSecretSettingName(String clientSecretSettingName)
Set the clientSecretSettingName property: The app setting name that contains the client secret.- Parameters:
clientSecretSettingName
- the clientSecretSettingName value to set.- Returns:
- the AppleRegistration object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-