Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct the comment with using a fullstop #1940

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public OAuthConsumerAppDTO registerAndRetrieveOAuthApplicationData(OAuthConsumer
/**
* Update existing consumer application.
*
* @param consumerAppDTO <code>OAuthConsumerAppDTO</code> with updated application information
* @param consumerAppDTO <code>OAuthConsumerAppDTO</code> with updated application information.
* @throws IdentityOAuthAdminException Error when updating the underlying identity persistence store.
*/
public void updateConsumerApplication(OAuthConsumerAppDTO consumerAppDTO) throws IdentityOAuthAdminException {
Expand All @@ -153,7 +153,7 @@ public void updateConsumerApplication(OAuthConsumerAppDTO consumerAppDTO) throws

/**
* @return
* @throws IdentityOAuthAdminException
* @throws IdentityOAuthAdminException.
*/
public String getOauthApplicationState(String consumerKey) throws IdentityOAuthAdminException {

Expand Down Expand Up @@ -261,7 +261,7 @@ public void updateScope(String scope, String[] addClaims, String[] deleteClaims)
/**
* To load id of the scope table.
*
* @param scope scope name
* @param scope scope name.
* @return id of the given scope.
* @throws IdentityOAuthAdminException if an error occurs when loading scope id.
*/
Expand All @@ -275,9 +275,9 @@ public boolean isScopeExist(String scope) throws IdentityOAuthAdminException {
}

/**
* @param consumerKey
* @param newState
* @throws IdentityOAuthAdminException
* @param consumerKey.
* @param newState.
* @throws IdentityOAuthAdminException.
*/
public void updateConsumerAppState(String consumerKey, String newState) throws IdentityOAuthAdminException {

Expand Down Expand Up @@ -322,7 +322,7 @@ public OAuthConsumerAppDTO updateAndRetrieveOauthSecretKey(String consumerKey) t
/**
* Removes an OAuth consumer application.
*
* @param consumerKey Consumer Key
* @param consumerKey Consumer Key.
* @throws IdentityOAuthAdminException Error when removing the consumer information from the database.
*/
public void removeOAuthApplicationData(String consumerKey) throws IdentityOAuthAdminException {
Expand All @@ -336,9 +336,9 @@ public void removeOAuthApplicationData(String consumerKey) throws IdentityOAuthA
}

/**
* Get apps that are authorized by the given user
* Get apps that are authorized by the given user.
*
* @return OAuth applications authorized by the user that have tokens in ACTIVE or EXPIRED state
* @return OAuth applications authorized by the user that have tokens in ACTIVE or EXPIRED state.
*/
public OAuthConsumerAppDTO[] getAppsAuthorizedByUser() throws IdentityOAuthAdminException {

Expand All @@ -350,10 +350,10 @@ public OAuthConsumerAppDTO[] getAppsAuthorizedByUser() throws IdentityOAuthAdmin
}

/**
* Revoke authorization for OAuth apps by resource owners
* Revoke authorization for OAuth apps by resource owners.
*
* @param revokeRequestDTO DTO representing authorized user and apps[]
* @return revokeRespDTO DTO representing success or failure message
* @return revokeRespDTO DTO representing success or failure message.
*/
public OAuthRevocationResponseDTO revokeAuthzForAppsByResoureOwner(
OAuthRevocationRequestDTO revokeRequestDTO) throws IdentityOAuthAdminException {
Expand All @@ -366,11 +366,11 @@ public OAuthRevocationResponseDTO revokeAuthzForAppsByResoureOwner(
}

/**
* Revoke approve always of the consent for OAuth apps by resource owners
* Revoke approve always of the consent for OAuth apps by resource owners.
*
* @param appName name of the app
* @param state state of the approve always
* @return revokeRespDTO DTO representing success or failure message
* @param appName name of the app.
* @param state state of the approve always.
* @return revokeRespDTO DTO representing success or failure message.
*/
public OAuthRevocationResponseDTO updateApproveAlwaysForAppConsentByResourceOwner(String appName, String state)
throws IdentityOAuthAdminException {
Expand Down