Class NSAccessGatewayInfo

Access gateway related data and operations. Carrier object for AccessGatewayInfo.

Constructors

NSAccessGatewayInfo()

Initializes a new instance of the NSAccessGatewayInfo class.

Declaration

NSAccessGatewayInfo

Methods

GetClientId()

Returns the registered client ID for AccessGateway OIDC.

Declaration

String GetClientId()

Examples

NSAccessGatewayInfo thing;
String clientId = thing.GetClientId();

Returns

Type Description
String The registered client ID for AccessGateway OIDC.

GetRedirectUri()

Returns the registered redirect_uri for AccessGateway OIDC.

Declaration

String GetRedirectUri()

Examples

NSAccessGatewayInfo thing;
String redirectUri = thing.GetRedirectUri();

Returns

Type Description
String The registered redirect_uri for AccessGateway OIDC.

SetClientId(String)

Sets the client ID for AccessGateway OIDC.

Declaration

Void SetClientId(String clientId)

Examples

NSAccessGatewayInfo thing;
String clientId;
thing.SetClientId(clientId);

Parameters

Type Name Description
String clientId Client ID for AccessGateway OIDC.

Returns

Type Description
Void

SetRedirectUri(String)

Sets the redirect_uri for AccessGateway OIDC.

Declaration

Void SetRedirectUri(String redirectUri)

Examples

NSAccessGatewayInfo thing;
String redirectUri;
thing.SetRedirectUri(redirectUri);

Parameters

Type Name Description
String redirectUri The redirect_uri for AccessGateway OIDC.

Returns

Type Description
Void