Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
b9073e3f
Commit
b9073e3f
authored
14 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
doc: improve javadoc comments
(merged from 10.06.x) SVN: 18550
parent
da93ac7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
authentication/source/java/ch/systemsx/cisd/authentication/IAuthenticationService.java
+3
-3
3 additions, 3 deletions
.../systemsx/cisd/authentication/IAuthenticationService.java
with
3 additions
and
3 deletions
authentication/source/java/ch/systemsx/cisd/authentication/IAuthenticationService.java
+
3
−
3
View file @
b9073e3f
...
...
@@ -93,6 +93,9 @@ public interface IAuthenticationService extends ISelfTestable
* <p>
* <b>Note: if multiple users with this email address exist in the authentication repository,
* the first one regarding an arbitrary (repository determined) order will be returned.</b>
* <p>
* <i>Only available, if {@link #supportsListingByEmail()} returns <code>true</code>, otherwise
* will throw an {@link UnsupportedOperationException}.</i>
*
* @param email The email of the user to get the details for.
* @param passwordOrNull The password to use for the authentication request. If
...
...
@@ -103,7 +106,6 @@ public interface IAuthenticationService extends ISelfTestable
* been successful.
* @throws UnsupportedOperationException if this authentication service does not support this
* operation.
* @throws IllegalArgumentException If the <var>applicationToken</var> is invalid.
*/
public
Principal
tryGetAndAuthenticateUserByEmail
(
String
email
,
String
passwordOrNull
);
...
...
@@ -114,7 +116,6 @@ public interface IAuthenticationService extends ISelfTestable
* characters (<code>*</code>).
* @throws UnsupportedOperationException if this authentication service does not support this
* operation.
* @throws IllegalArgumentException If the <var>applicationToken</var> is invalid.
*/
public
List
<
Principal
>
listPrincipalsByEmail
(
String
emailQuery
)
throws
IllegalArgumentException
;
...
...
@@ -131,7 +132,6 @@ public interface IAuthenticationService extends ISelfTestable
* characters (<code>*</code>).
* @throws UnsupportedOperationException if this authentication service does not support this
* operation.
* @throws IllegalArgumentException If the <var>applicationToken</var> is invalid.
*/
public
List
<
Principal
>
listPrincipalsByLastName
(
String
lastNameQuery
)
throws
IllegalArgumentException
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment