summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/user/UserResource.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2013-02-01 13:05:38 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2013-02-18 12:47:28 -0500
commit1a96cb363c87ec7c2e3caff407289dcfd323e31b (patch)
tree18c929a526396ddd401c13557d090b43bed17899 /base/common/src/com/netscape/certsrv/user/UserResource.java
parentdd01437171044ecb4cdc63998250a4d9f3277119 (diff)
downloadpki-1a96cb363c87ec7c2e3caff407289dcfd323e31b.tar.gz
pki-1a96cb363c87ec7c2e3caff407289dcfd323e31b.tar.xz
pki-1a96cb363c87ec7c2e3caff407289dcfd323e31b.zip
Added authentication method validation.ticket-477-5
A new mechanism has been added to limit the authentication methods that can be used to invoke the REST methods. The AuthMethodMapping annotation maps each REST method to a list of allowed authentication methods defined auth-method.properties. When a client calls a REST method, the AuthMethod- Interceptor will intercept the call and verify that the client uses an allowed authentication method. 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 the installation token from security domain. The auth.properties have been renamed to acl.properties since it's used to store ACL mappings. Ticket #477
Diffstat (limited to 'base/common/src/com/netscape/certsrv/user/UserResource.java')
-rw-r--r--base/common/src/com/netscape/certsrv/user/UserResource.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/base/common/src/com/netscape/certsrv/user/UserResource.java b/base/common/src/com/netscape/certsrv/user/UserResource.java
index e72bb0cef..078992897 100644
--- a/base/common/src/com/netscape/certsrv/user/UserResource.java
+++ b/base/common/src/com/netscape/certsrv/user/UserResource.java
@@ -32,12 +32,14 @@ import javax.ws.rs.core.Response;
import org.jboss.resteasy.annotations.ClientResponseType;
import com.netscape.certsrv.acls.ACLMapping;
+import com.netscape.certsrv.authentication.AuthMethodMapping;
/**
* @author Endi S. Dewata
*/
@Path("admin/users")
@ACLMapping("admin.users")
+@AuthMethodMapping("admin")
public interface UserResource {
@GET