Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E46F317BD8 for ; Fri, 17 Apr 2015 07:14:45 +0000 (UTC) Received: (qmail 58058 invoked by uid 500); 17 Apr 2015 04:05:21 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 46150 invoked by uid 500); 17 Apr 2015 04:05:14 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 19196 invoked by uid 99); 17 Apr 2015 03:19:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Apr 2015 03:19:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BC293E10A8; Fri, 17 Apr 2015 03:19:10 +0000 (UTC) From: joshelser To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request: Clarify Accumulo API Content-Type: text/plain Message-Id: <20150417031910.BC293E10A8@git1-us-west.apache.org> Date: Fri, 17 Apr 2015 03:19:10 +0000 (UTC) Github user joshelser commented on a diff in the pull request: https://github.com/apache/accumulo/pull/28#discussion_r28567621 --- Diff: README.md --- @@ -76,15 +76,25 @@ API The public Accumulo API is composed of : - * All public classes and interfaces in the org.apache.accumulo.core.client - package, as as well as all of its subpackages excluding those named *impl*. - * Key, Mutation, Value, Range, Condition, and ConditionalMutation in - org.apache.accumulo.core.data. - * All public classes and interfaces in the org.apache.accumulo.minicluster - package, as well as all of its subpackages excluding those named *impl*. - * Anything with public or protected acccess within any Class or Interface that - is in the public API. This includes, but is not limited to: methods, members - classes, interfaces, and enums. +All public types in the following packages and their subpackages excluding +those named *impl*, *thrift*, or *crypto*. + + * org.apache.accumulo.core.client + * org.apache.accumulo.core.data + * org.apache.accumulo.core.security + * org.apache.accumulo.minicluster + +A type is a class, interface, or enum. Anything with public or protected --- End diff -- Can this be clarified to include package-protected as that's what we've been going on to date? --- 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. ---