GEODE-1654: Fix Javadoc warnings
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/e6c13047 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/e6c13047 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/e6c13047 Branch: refs/heads/master Commit: e6c13047705611a34ce780daadf5203f89221ce5 Parents: f78f70c Author: gmeilen <[email protected]> Authored: Wed Jul 13 09:58:22 2016 -0700 Committer: Kirk Lund <[email protected]> Committed: Thu Jul 14 09:02:38 2016 -0700 ---------------------------------------------------------------------- .../gemstone/gemfire/cache/operations/OperationContext.java | 2 +- .../main/java/org/apache/geode/security/SecurityManager.java | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/e6c13047/geode-core/src/main/java/com/gemstone/gemfire/cache/operations/OperationContext.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/operations/OperationContext.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/operations/OperationContext.java index e1c04ad..f4d5280 100644 --- a/geode-core/src/main/java/com/gemstone/gemfire/cache/operations/OperationContext.java +++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/operations/OperationContext.java @@ -28,7 +28,7 @@ package com.gemstone.gemfire.cache.operations; * * @since GemFire 5.5 * - * @deprecated since Geode1.0, use {@link com.gemstone.gemfire.security.GeodePermission} instead + * @deprecated since Geode1.0, use {@link org.apache.geode.security.GeodePermission} instead */ public abstract class OperationContext{ http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/e6c13047/geode-core/src/main/java/org/apache/geode/security/SecurityManager.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/security/SecurityManager.java b/geode-core/src/main/java/org/apache/geode/security/SecurityManager.java index f5cb7f3..269ed43 100644 --- a/geode-core/src/main/java/org/apache/geode/security/SecurityManager.java +++ b/geode-core/src/main/java/org/apache/geode/security/SecurityManager.java @@ -24,7 +24,7 @@ import com.gemstone.gemfire.security.AuthenticationFailedException; /** * User implementation of a authentication/authorization logic for Integrated Security. - * The implementation will guard client/server, jmx, pulse, gfsh commands + * The implementation will guard client/server, JMX, Pulse, GFSH commands * * @since Geode 1.0 */ @@ -43,16 +43,14 @@ public interface SecurityManager { /** * Verify the credentials provided in the properties - * @param props: + * @param props * it contains the security-username and security-password as keys of the properties * @return * the authenticated Principal object * @throws AuthenticationFailedException */ - Principal authenticate(Properties props) throws AuthenticationFailedException; - /** * Authorize the GeodePermission for a given Principal * @param principal @@ -67,7 +65,7 @@ public interface SecurityManager { } /** - * close any resources used by the SecurityManager, called when a cache is closed. + * Close any resources used by the SecurityManager, called when a cache is closed. */ default void close() {} }
