ApplicationOperations Interface

public interface ApplicationOperations

Resource collection API of ApplicationOperations.

Method Summary

Modifier and Type Method and Description
abstract Blank define(String name)

Begins definition for a new Application resource.

abstract void delete(String applicationId)

Delete an Application over a given scope.

abstract void deleteById(String id)

Delete an Application over a given scope.

abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Delete an Application over a given scope.

abstract Response<Void> deleteWithResponse(String applicationId, Context context)

Delete an Application over a given scope.

abstract Application get(String applicationId)

Get a specific application for the requested scope by applicationId.

abstract Application getById(String id)

Get a specific application for the requested scope by applicationId.

abstract Response<Application> getByIdWithResponse(String id, Context context)

Get a specific application for the requested scope by applicationId.

abstract Response<Application> getWithResponse(String applicationId, Context context)

Get a specific application for the requested scope by applicationId.

Method Details

define

public abstract Application.DefinitionStages.Blank define(String name)

Begins definition for a new Application resource.

Parameters:

name - resource name.

Returns:

the first stage of the new Application definition.

delete

public abstract void delete(String applicationId)

Delete an Application over a given scope.

Parameters:

applicationId - The security Application key - unique key for the standard application.

deleteById

public abstract void deleteById(String id)

Delete an Application over a given scope.

Parameters:

id - the resource ID.

deleteByIdWithResponse

public abstract Response deleteByIdWithResponse(String id, Context context)

Delete an Application over a given scope.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

deleteWithResponse

public abstract Response deleteWithResponse(String applicationId, Context context)

Delete an Application over a given scope.

Parameters:

applicationId - The security Application key - unique key for the standard application.
context - The context to associate with this operation.

Returns:

get

public abstract Application get(String applicationId)

Get a specific application for the requested scope by applicationId.

Parameters:

applicationId - The security Application key - unique key for the standard application.

Returns:

a specific application for the requested scope by applicationId.

getById

public abstract Application getById(String id)

Get a specific application for the requested scope by applicationId.

Parameters:

id - the resource ID.

Returns:

a specific application for the requested scope by applicationId along with Response<T>.

getByIdWithResponse

public abstract Response getByIdWithResponse(String id, Context context)

Get a specific application for the requested scope by applicationId.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

a specific application for the requested scope by applicationId along with Response<T>.

getWithResponse

public abstract Response getWithResponse(String applicationId, Context context)

Get a specific application for the requested scope by applicationId.

Parameters:

applicationId - The security Application key - unique key for the standard application.
context - The context to associate with this operation.

Returns:

a specific application for the requested scope by applicationId along with Response<T>.

Applies to