summaryrefslogtreecommitdiffstats
path: root/base/kra/shared/webapps/kra/WEB-INF/auth.properties
Commit message (Collapse)AuthorAgeFilesLines
* Added AuthMapping annotation.ticket-474-6Endi Sukma Dewata2013-02-021-9/+7
| | | | | | | | | | | | | | | | A new AuthMapping annotation has been added to configure the required authentication methods to acces each REST method. The annotation maps each method into a list of authentication methods in auth.properties. For security reason, most REST methods that require authentication have been configured to require client certificate authentication. Authentication using username and password will only be used to get installation token from the security domain. Previously the auth.properties files were used to store ACL mappings. Now the ACL mappings have been moved into acl.properties. Ticket #477
* Added ACLInterceptor.Endi Sukma Dewata2012-11-081-8/+8
| | | | | | | | | Previously ACL checking was done in PKIRealm by matching the URL. This code has been replaced by ACLInterceptor which will intercept RESTEasy method invocations. This allows more precise mapping of REST methods to ACL entries in acl.ldif. Ticket #287
* Added REST account service.Endi Sukma Dewata2012-10-221-0/+2
| | | | | | | | | A REST account service has been added to allow client to login to establish a session and to logout to destroy the session. This way multiple operations can be executed using the same session without having to re-authenticate. Ticket #357
* Moved REST services into separate URLs.Endi Sukma Dewata2012-08-031-10/+4
| | | | | | | | | | | To support different access control configurations the REST services have been separated by roles. Services that don't need authentication will be available under /rest. Services that require agent rights will be available under /rest/agent. Services that require admin rights will be available under /rest/admin. Ticket #107
* Removed unnecessary pki folder.Endi Sukma Dewata2012-03-261-0/+16
Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131