From 94e9037522922b67e8af412b4cfe476f5e991118 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 23:00:35 +0000
Subject: [PATCH] AutoRefactor: fix modifiers usage
---
opendj-server-legacy/src/main/java/org/opends/server/api/AuthenticationPolicyState.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/api/AuthenticationPolicyState.java b/opendj-server-legacy/src/main/java/org/opends/server/api/AuthenticationPolicyState.java
index d2e7597..7869abf 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/api/AuthenticationPolicyState.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/api/AuthenticationPolicyState.java
@@ -21,7 +21,7 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2011-2014 ForgeRock AS.
+ * Portions Copyright 2011-2015 ForgeRock AS.
* Portions Copyright 2014 ForgeRock AS
*/
package org.opends.server.api;
@@ -78,7 +78,7 @@
* policy for the user.
* @see AuthenticationPolicy#forUser(Entry, boolean)
*/
- public final static AuthenticationPolicyState forUser(final Entry userEntry,
+ public static AuthenticationPolicyState forUser(final Entry userEntry,
final boolean useDefaultOnError) throws DirectoryException
{
final AuthenticationPolicy policy = AuthenticationPolicy.forUser(userEntry,
@@ -102,7 +102,7 @@
* @throws DirectoryException
* If the value cannot be decoded as a boolean.
*/
- protected static final ConditionResult getBoolean(final Entry entry,
+ protected static ConditionResult getBoolean(final Entry entry,
final AttributeType attributeType) throws DirectoryException
{
final List<Attribute> attrList = entry.getAttribute(attributeType);
@@ -182,7 +182,7 @@
* If a problem occurs while attempting to decode the value as a
* generalized time.
*/
- protected static final long getGeneralizedTime(final Entry entry,
+ protected static long getGeneralizedTime(final Entry entry,
final AttributeType attributeType) throws DirectoryException
{
long timeValue = -1;
--
Gitblit v1.10.0