From 94af7fde4bf372b77568f47e066925073748cb1f Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Thu, 29 Sep 2011 09:50:04 +0000
Subject: [PATCH] Issue OPENDJ-262: Implement pass through authentication (PTA)
---
opends/src/server/org/opends/server/config/ConfigConstants.java | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/config/ConfigConstants.java b/opends/src/server/org/opends/server/config/ConfigConstants.java
index 18cd876..232f815 100644
--- a/opends/src/server/org/opends/server/config/ConfigConstants.java
+++ b/opends/src/server/org/opends/server/config/ConfigConstants.java
@@ -23,6 +23,7 @@
*
*
* Copyright 2006-2010 Sun Microsystems, Inc.
+ * Portions copyright 2011 ForgeRock AS
*/
package org.opends.server.config;
@@ -3685,6 +3686,25 @@
/**
+ * The name of the operational attribute which will be put in user's entry in
+ * order to cache a copy of their password for pass through authentication.
+ */
+ public static final String OP_ATTR_PTAPOLICY_CACHED_PASSWORD =
+ "ds-pta-cached-password";
+
+
+
+ /**
+ * The name of the operational attribute which will be put in user's entry in
+ * order to record the time at which their password was cached for pass
+ * through authentication.
+ */
+ public static final String OP_ATTR_PTAPOLICY_CACHED_PASSWORD_TIME =
+ "ds-pta-cached-password-time";
+
+
+
+ /**
* The name of the attribute option used to indicate that a configuration
* attribute has one or more pending values.
*/
--
Gitblit v1.10.0