From 8d21db36015f8560d9cd2bcee9817f2c0a07a386 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 14:11:47 +0000
Subject: [PATCH] Autorefactored javadocs
---
opendj-server-legacy/src/main/java/org/opends/server/schema/CertificateExactAssertionSyntax.java | 78 +++++++-------------------------------
1 files changed, 15 insertions(+), 63 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/schema/CertificateExactAssertionSyntax.java b/opendj-server-legacy/src/main/java/org/opends/server/schema/CertificateExactAssertionSyntax.java
index fda59b0..99fafa9 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/schema/CertificateExactAssertionSyntax.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/schema/CertificateExactAssertionSyntax.java
@@ -22,13 +22,11 @@
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
- * Portions Copyright 2012-2014 ForgeRock AS
+ * Portions Copyright 2012-2015 ForgeRock AS
* Portions Copyright 2013-2014 Manuel Gaupp
*/
package org.opends.server.schema;
-
-
import org.opends.server.admin.std.server.AttributeSyntaxCfg;
import org.forgerock.i18n.slf4j.LocalizedLogger;
import org.forgerock.opendj.ldap.schema.MatchingRule;
@@ -53,17 +51,15 @@
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
- // The default equality matching rule for this syntax.
+ /** The default equality matching rule for this syntax. */
private MatchingRule defaultEqualityMatchingRule;
- // The default ordering matching rule for this syntax.
+ /** The default ordering matching rule for this syntax. */
private MatchingRule defaultOrderingMatchingRule;
- // The default substring matching rule for this syntax.
+ /** The default substring matching rule for this syntax. */
private MatchingRule defaultSubstringMatchingRule;
-
-
/**
* Creates a new instance of this syntax. Note that the only thing that
* should be done here is to invoke the default constructor for the
@@ -75,11 +71,7 @@
super();
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void initializeSyntax(AttributeSyntaxCfg configuration)
throws ConfigException
{
@@ -108,82 +100,50 @@
}
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public String getName()
{
return SYNTAX_CERTIFICATE_EXACT_ASSERTION_NAME;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public String getOID()
{
return SYNTAX_CERTIFICATE_EXACT_ASSERTION_OID;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public String getDescription()
{
return SYNTAX_CERTIFICATE_EXACT_ASSERTION_DESCRIPTION;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public MatchingRule getEqualityMatchingRule()
{
return defaultEqualityMatchingRule;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public MatchingRule getOrderingMatchingRule()
{
return defaultOrderingMatchingRule;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public MatchingRule getSubstringMatchingRule()
{
return defaultSubstringMatchingRule;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public MatchingRule getApproximateMatchingRule()
{
// Approximate matching will not be allowed by default.
return null;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public boolean valueIsAcceptable(ByteSequence value,
LocalizableMessageBuilder invalidReason)
{
@@ -192,21 +152,13 @@
return true;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public boolean isBEREncodingRequired()
{
return false;
}
-
-
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public boolean isHumanReadable()
{
return true;
--
Gitblit v1.10.0