This repository has been archived by the owner on Mar 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #298 from junkerm/develop
v.0.2.6
- Loading branch information
Showing
243 changed files
with
40,809 additions
and
42,868 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
c618a3e3d022ffb786ca36b0b27aa93a3093ab723675ce07e0231bce22e9d1d2 | ||
79659d8793c884ee6d323bd0455d746ac2ff61d150aa6fc4395cbf5f24e7ab75 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<repository increment="0" name="Release" xmlns="http://www.osgi.org/xmlns/repository/v1.0.0"> | ||
</repository> | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<repository xmlns="http://www.osgi.org/xmlns/repository/v1.0.0" name="Release" increment="1538979873740"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
b699f269b1871b7ef42e54b5ceb7529989f9474ffa4217c696e5ad333ac8936c | ||
588e9daeffa76506497afdf3ef329dcd7523eb8a8431ee9963eab24645a30b73 |
9 changes: 6 additions & 3 deletions
9
bundles/specmate-auth-api/src/com/specmate/auth/api/IAuthenticationService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
bundles/specmate-auth-api/src/com/specmate/auth/api/ISessionService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
package com.specmate.auth.api; | ||
|
||
import com.specmate.common.SpecmateException; | ||
import com.specmate.common.SpecmateValidationException; | ||
import com.specmate.usermodel.AccessRights; | ||
import com.specmate.usermodel.UserSession; | ||
|
||
public interface ISessionService { | ||
public UserSession create(AccessRights alm, AccessRights ppm, String userName, String projectName) | ||
throws SpecmateException; | ||
throws SpecmateException, SpecmateValidationException; | ||
|
||
public UserSession create(); | ||
|
||
public boolean isExpired(String token) throws SpecmateException; | ||
|
||
public boolean isAuthorized(String token, String path) throws SpecmateException; | ||
|
||
public void refresh(String token) throws SpecmateException; | ||
public void refresh(String token) throws SpecmateException, SpecmateValidationException; | ||
|
||
public String getUserName(String token) throws SpecmateException; | ||
|
||
public AccessRights getSourceAccessRights(String token) throws SpecmateException; | ||
|
||
public AccessRights getTargetAccessRights(String token) throws SpecmateException; | ||
|
||
public void delete(String token) throws SpecmateException; | ||
public void delete(String token) throws SpecmateException, SpecmateValidationException; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.