EndpointKeys Interface

public interface EndpointKeys

An instance of this class provides access to all the operations defined in EndpointKeys.

Method Summary

Modifier and Type Method and Description
abstract EndpointKeysDTO getKeys()

Gets endpoint keys for an endpoint.

abstract rx.Observable<EndpointKeysDTO> getKeysAsync()

Gets endpoint keys for an endpoint.

abstract EndpointKeysDTO refreshKeys(String keyType)

Re-generates an endpoint key.

abstract rx.Observable<EndpointKeysDTO> refreshKeysAsync(String keyType)

Re-generates an endpoint key.

Method Details

getKeys

public abstract EndpointKeysDTO getKeys()

Gets endpoint keys for an endpoint.

Returns:

the EndpointKeysDTO object if successful.

getKeysAsync

public abstract Observable getKeysAsync()

Gets endpoint keys for an endpoint.

Returns:

the observable to the EndpointKeysDTO object

refreshKeys

public abstract EndpointKeysDTO refreshKeys(String keyType)

Re-generates an endpoint key.

Parameters:

keyType - Type of Key.

Returns:

the EndpointKeysDTO object if successful.

refreshKeysAsync

public abstract Observable refreshKeysAsync(String keyType)

Re-generates an endpoint key.

Parameters:

keyType - Type of Key.

Returns:

the observable to the EndpointKeysDTO object

Applies to