You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by spmallette <gi...@git.apache.org> on 2017/04/03 17:36:57 UTC

[GitHub] tinkerpop pull request #583: TINKERPOP-1657 Provide abstraction to easily al...

Github user spmallette commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/583#discussion_r109478243
  
    --- Diff: gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java ---
    @@ -384,9 +384,25 @@ public SerializerSettings() {}
              * used to load the implementation from the classpath. Defaults to {@link AllowAllAuthenticator} when
              * not specified.
              */
    +        public String authenticator = null;
    +
    +        /**
    +         * The fully qualified class name of the {@link Authenticator} implementation. This class name will be
    +         * used to load the implementation from the classpath. Defaults to {@link AllowAllAuthenticator} when
    +         * not specified.
    +         * Deprecated in favor of {@link authenticator}.
    --- End diff --
    
    Note that our deprecation form in javadoc typically looks like this:
    
    ```java
    @deprecated As of release 3.2.5, replaced by {@link authenticator}.
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---