Skip to content

Commit

Permalink
- Updated readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Wirtz committed Feb 18, 2016
1 parent c74aa10 commit 54df522
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,34 @@
# MIDANAuthenticator
MIDANAuthenticator combines Crowd SSO and JIRA local database authorization.

## Files
- MIDANAuthenticator.java combines Crowd SSO and JIRA local database authorization.
- JIAAuthenticatorWrapper.java provides a wrapper for the JIRA Seraph authenticator.
- SSOAuthenticatorWrapper.java provides a wrapper for the Crowd SSO authenticator.

## Installation
1. Copy the 3 class files to [JIRA ROOT]\atlassian-jira\WEB-INF\classes\eu\midan\
2. Enable the MIDANAuthenticator in your seraph-config.xml and comment out all other authenticators.

```xml
<!-- CROWD:START - If enabling Crowd SSO integration uncomment the following SSOSeraphAuthenticator and comment out the JiraSeraphAuthenticator below -->
<!--<authenticator class="com.atlassian.jira.security.login.SSOSeraphAuthenticator"/>-->
<!-- CROWD:END -->

<!-- CROWD:START - The authenticator below here will need to be commented out for Crowd SSO integration -->
<!--<authenticator class="com.atlassian.jira.security.login.JiraSeraphAuthenticator"/>-->
<!-- CROWD:END -->

<!-- CROWD:START - The authenticator below here will need to be commented out for Crowd SSO integration -->
<authenticator class="eu.midan.MIDANAuthenticator"/>
<!-- CROWD:END -->
```

## Compiling
The following Atlassian libraries and class folders need to be linked:

- WEB-INF\lib\atlassian-seraph-2.6.4.jar
- WEB-INF\classes\
- WEB-INF\lib\crowd-integration-seraph25-2.8.3.jar
- WEB-INF\lib\embedded-crowd-api-2.8.3.jar
- WEB-INF\lib\jira-api-6.4.11.jar

0 comments on commit 54df522

Please sign in to comment.