You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/02/28 23:56:54 UTC

[accumulo] branch master updated: Added missing since javadoc tags (#1001)

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 6aee389  Added missing since javadoc tags (#1001)
6aee389 is described below

commit 6aee38933cfb12e286efc41a9e59097b47456d83
Author: Keith Turner <kt...@apache.org>
AuthorDate: Thu Feb 28 18:56:50 2019 -0500

    Added missing since javadoc tags (#1001)
---
 .../accumulo/core/client/security/tokens/CredentialProviderToken.java | 4 ++++
 .../apache/accumulo/core/client/summary/SummarizerConfiguration.java  | 3 +++
 core/src/main/java/org/apache/accumulo/core/data/AbstractId.java      | 2 ++
 core/src/main/java/org/apache/accumulo/core/data/NamespaceId.java     | 2 ++
 core/src/main/java/org/apache/accumulo/core/data/TableId.java         | 2 ++
 5 files changed, 13 insertions(+)

diff --git a/core/src/main/java/org/apache/accumulo/core/client/security/tokens/CredentialProviderToken.java b/core/src/main/java/org/apache/accumulo/core/client/security/tokens/CredentialProviderToken.java
index de6e2cb..65f82ca 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/security/tokens/CredentialProviderToken.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/security/tokens/CredentialProviderToken.java
@@ -65,6 +65,8 @@ public class CredentialProviderToken extends PasswordToken {
 
   /**
    * @return Name used to extract Accumulo user password from CredentialProvider
+   *
+   * @since 2.0.0
    */
   public String getName() {
     return name;
@@ -72,6 +74,8 @@ public class CredentialProviderToken extends PasswordToken {
 
   /**
    * @return CSV list of CredentialProvider(s)
+   *
+   * @since 2.0.0
    */
   public String getCredentialProviders() {
     return credentialProviders;
diff --git a/core/src/main/java/org/apache/accumulo/core/client/summary/SummarizerConfiguration.java b/core/src/main/java/org/apache/accumulo/core/client/summary/SummarizerConfiguration.java
index cf27e75..ab2a2bd 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/summary/SummarizerConfiguration.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/summary/SummarizerConfiguration.java
@@ -176,6 +176,9 @@ public class SummarizerConfiguration {
     return SummarizerConfigurationUtil.getSummarizerConfigs(props);
   }
 
+  /**
+   * @since 2.0.0
+   */
   public static class Builder {
     private String className;
     private ImmutableMap.Builder<String,String> imBuilder;
diff --git a/core/src/main/java/org/apache/accumulo/core/data/AbstractId.java b/core/src/main/java/org/apache/accumulo/core/data/AbstractId.java
index 269eb9e..63492d0 100644
--- a/core/src/main/java/org/apache/accumulo/core/data/AbstractId.java
+++ b/core/src/main/java/org/apache/accumulo/core/data/AbstractId.java
@@ -21,6 +21,8 @@ import java.util.Objects;
 
 /**
  * An abstract identifier class for comparing equality of identifiers of the same type.
+ *
+ * @since 2.0.0
  */
 public abstract class AbstractId<T extends AbstractId<T>> implements Comparable<T>, Serializable {
 
diff --git a/core/src/main/java/org/apache/accumulo/core/data/NamespaceId.java b/core/src/main/java/org/apache/accumulo/core/data/NamespaceId.java
index dc58a96..643e0ae 100644
--- a/core/src/main/java/org/apache/accumulo/core/data/NamespaceId.java
+++ b/core/src/main/java/org/apache/accumulo/core/data/NamespaceId.java
@@ -24,6 +24,8 @@ import com.google.common.cache.CacheBuilder;
 /**
  * A strongly typed representation of a namespace ID. This class cannot be used to get a namespace
  * ID from a namespace name, but does provide the namespace ID string wrapped with a stronger type.
+ *
+ * @since 2.0.0
  */
 public class NamespaceId extends AbstractId<NamespaceId> {
   private static final long serialVersionUID = 1L;
diff --git a/core/src/main/java/org/apache/accumulo/core/data/TableId.java b/core/src/main/java/org/apache/accumulo/core/data/TableId.java
index c191170..7ed052f 100644
--- a/core/src/main/java/org/apache/accumulo/core/data/TableId.java
+++ b/core/src/main/java/org/apache/accumulo/core/data/TableId.java
@@ -24,6 +24,8 @@ import com.google.common.cache.CacheBuilder;
 /**
  * A strongly typed representation of a table ID. This class cannot be used to get a table ID from a
  * table name, but does provide the table ID string wrapped with a stronger type.
+ *
+ * @since 2.0.0
  */
 public class TableId extends AbstractId<TableId> {
   private static final long serialVersionUID = 1L;