Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 26A41200CC4 for ; Thu, 13 Jul 2017 23:13:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2513616CE79; Thu, 13 Jul 2017 21:13:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4998B16CE73 for ; Thu, 13 Jul 2017 23:13:17 +0200 (CEST) Received: (qmail 21919 invoked by uid 500); 13 Jul 2017 21:13:16 -0000 Mailing-List: contact commits-help@yetus.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@yetus.apache.org Delivered-To: mailing list commits@yetus.apache.org Received: (qmail 21166 invoked by uid 99); 13 Jul 2017 21:13:16 -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; Thu, 13 Jul 2017 21:13:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 26F69F5548; Thu, 13 Jul 2017 21:13:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aw@apache.org To: commits@yetus.apache.org Date: Thu, 13 Jul 2017 21:13:44 -0000 Message-Id: <4bb54efa6f404a5e9a0b54d39416cb05@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [31/49] yetus git commit: git hash a444ed18a504a2378f0cd1c6223105f0d1a78416 archived-at: Thu, 13 Jul 2017 21:13:22 -0000 http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.0/releasedocmaker/index.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.0/releasedocmaker/index.html b/documentation/0.2.0/releasedocmaker/index.html deleted file mode 100644 index 5477ad9..0000000 --- a/documentation/0.2.0/releasedocmaker/index.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - Apache Yetus - - - - - - - - - - - - - - - -
- - -

releasedocmaker

- - - -

Purpose

- -

Building changelog information in a form that is human digestible but still containing as much useful information is difficult. Many attempts over the years have resulted in a variety of methods that projects use to solve this problem:

- -
    -
  • JIRA-generated release notes from the Release Notes button
  • -
  • Manually modified CHANGES file
  • -
  • Processing git log information
  • -
- -

All of these methods have their pros and cons. Some have issues with accuracy. Some have issues with lack of details. None of these methods seem to cover all of the needs of many projects and are full of potential pitfalls.

- -

In order to solve these problems, releasedocmaker was written to automatically generate a changelog and release notes by querying Apache’s JIRA instance.

- -

Basic Usage

- -

Minimally, the name of the JIRA project and a version registered in JIRA must be provided:

-
$ releasedocmaker.py --project (project) --version (version)
-
-

This will query Apache JIRA, generating two files in a directory named after the given version in an extended markdown format which can be processed by both mvn site and GitHub.

- -
    -
  • CHANGES.(version).md
  • -
- -

This is similar to the JIRA Release Notes button but is in tabular format and includes the priority, component, reporter, and contributor fields. It also highlights Incompatible Changes so that readers know what to look out for when upgrading. The top of the file also includes the date that the version was marked as released in JIRA.

- -
    -
  • RELEASENOTES.(version).md
  • -
- -

If your JIRA project supports the release note field, this will contain any JIRA mentioned in the CHANGES log that is either an incompatible change or has a release note associated with it. If your JIRA project does not support the release notes field, this will be the description field.

- -

For example, to build the release documentation for HBase v1.2.0…

-
$ releasedocmaker.py --project HBASE --version 1.2.0
-
-

… will create a 1.2.0 directory and inside that directory will be CHANGES.1.2.0.md and RELEASENOTES.1.2.0.md .

- -

By default, release notes are expected to be in plain text. However, you can write them in markdown if you include a header at the top of your release note:

-
<!-- markdown -->
-remaining text
-
-

Changing the Header

- -

By default, it will use a header that matches the project name. But that is kind of ugly and the case may be wrong. Luckily, the title can be changed:

-
$ releasedocmaker.py --project HBASE --version 1.2.0 --projecttitle "Apache HBase"
-
-

Now instead of HBASE, it will use Apache HBASE for some titles and headers.

- -

Multiple Versions

- -

The script can also generate multiple versions at once, by

-
$ releasedocmaker.py --project HBASE --version 1.0.0 --version 1.2.0
-
-

This will create the files for versions 1.0.0 and versions 1.2.0 in their own directories.

- -

But what if the version numbers are not known? releasedocmaker can also generate version data based upon ranges:

-
$ releasedocmaker.py --project HBASE --version 1.0.0 --version 1.2.0 --range
-
-

In this form, releasedocmaker will query JIRA, discover all versions that alphabetically appear to be between 1.0.0 and 1.2.0, inclusive, and generate all of the relative release documents. This is especially useful when bootstrapping an existing project.

- -

Unreleased Dates

- -

For released versions, releasedocmaker will pull the date of the release from JIRA. However, for unreleased versions it marks the release as Unreleased. This can be inconvenient when actually building a release and wanting to include it inside the source package.

- -

The –usetoday option can be used to signify that instead of using Unreleased, releasedocmaker should use today’s date.

-
$ releasedocmaker.py --project HBASE --version 1.0.0 --usetoday
-
-

After using this option and release, don’t forget to change JIRA’s release date to match!

- -

Lint Mode

- -

In order to ensure proper formatting while using mvn site, releasedocmaker puts in periods (.) for fields that are empty or unassigned. This can be unsightly and not proper for any given project. There are also other things, such as missing release notes for incompatible changes, that are less than desirable.

- -

In order to help release managers from having to scan through potentially large documents, releasedocmaker features a lint mode, triggered via –lint:

-
$ releasedocmaker.py --project HBASE --version 1.0.0 --lint
-
-

This will do the normal JIRA querying, looking for items it considers problematic. It will print the information to the screen and then exit with either success or failure, depending upon if any issues were discovered.

- -

Index Mode

- -

There is basic support for an autoindexer. It will create two files that contain links to all directories that have a major.minor.micro-style version numbering system, where all fields are numeric.

- -
    -
  • index.md: a file suitable for conversion to HTML via mvn site
  • -
  • README.md: a file suitable for display on Github and other Markdown rendering websites
  • -
- -
-
-
- -
- - - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/CHANGES/index.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/CHANGES/index.html b/documentation/0.2.1/CHANGES/index.html deleted file mode 100644 index 19e8564..0000000 --- a/documentation/0.2.1/CHANGES/index.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - Apache Yetus - - - - - - - - - - - - - - - -
- - -

Apache Yetus Changelog

- -

Release 0.2.1 - 2016-04-07

- -

IMPROVEMENTS:

- - - - - - - - - - - - - - - - -
JIRASummaryPriorityComponentReporterContributor
YETUS-358make use of BSD tar in build script explicitBlockerbuildSean BusbeySean Busbey
-

BUG FIXES:

- - - - - - - - - - - - - - - - - - - - - - - - -
JIRASummaryPriorityComponentReporterContributor
YETUS-345mvn dependency dupe fix broke hadoopBlockerTest PatchAllen WittenauerAllen Wittenauer
YETUS-334mvn dependency ordering generates duplicatesCriticalTest PatchPhil YangAllen Wittenauer
-

OTHER:

- - - - - - - - - - - - - - - - -
JIRASummaryPriorityComponentReporterContributor
YETUS-344Release 0.2.1Criticalwebsite and documentationSean BusbeySean Busbey
-
-
-
- -
- - - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/RELEASENOTES/index.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/RELEASENOTES/index.html b/documentation/0.2.1/RELEASENOTES/index.html deleted file mode 100644 index 1e0159d..0000000 --- a/documentation/0.2.1/RELEASENOTES/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - Apache Yetus - - - - - - - - - - - - - - - -
- - -

Apache Yetus 0.2.1 Release Notes

- -

These release notes cover new developer and user-facing incompatibilities, important issues, features, and major improvements.

- -
-
-
- -
- - - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/allclasses-frame.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/allclasses-frame.html b/documentation/0.2.1/audience-annotations-apidocs/allclasses-frame.html deleted file mode 100644 index ed6ffd4..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/allclasses-frame.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - -All Classes (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - -

All Classes

- - - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/allclasses-noframe.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/allclasses-noframe.html b/documentation/0.2.1/audience-annotations-apidocs/allclasses-noframe.html deleted file mode 100644 index 9e79363..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/allclasses-noframe.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - -All Classes (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - -

All Classes

- - - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/constant-values.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/constant-values.html b/documentation/0.2.1/audience-annotations-apidocs/constant-values.html deleted file mode 100644 index 1330699..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/constant-values.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Constant Field Values (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - - - - -
- - - - - - - -
- - -
-

Constant Field Values

-

Contents

-
- -
- - - - - - - -
- - -

Copyright © 2015–2017 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/deprecated-list.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/deprecated-list.html b/documentation/0.2.1/audience-annotations-apidocs/deprecated-list.html deleted file mode 100644 index 1f138d6..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/deprecated-list.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Deprecated List (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - - - - -
- - - - - - - -
- - -
-

Deprecated API

-

Contents

-
- -
- - - - - - - -
- - -

Copyright © 2015–2017 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/help-doc.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/help-doc.html b/documentation/0.2.1/audience-annotations-apidocs/help-doc.html deleted file mode 100644 index 7a8b14c..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/help-doc.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - -API Help (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - - - - -
- - - - - - - -
- - -
-

How This API Document Is Organized

-
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
-
-
-
    -
  • -

    Overview

    -

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    -
  • -
  • -

    Package

    -

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    -
      -
    • Interfaces (italic)
    • -
    • Classes
    • -
    • Enums
    • -
    • Exceptions
    • -
    • Errors
    • -
    • Annotation Types
    • -
    -
  • -
  • -

    Class/Interface

    -

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
      -
    • Class inheritance diagram
    • -
    • Direct Subclasses
    • -
    • All Known Subinterfaces
    • -
    • All Known Implementing Classes
    • -
    • Class/interface declaration
    • -
    • Class/interface description
    • -
    -
      -
    • Nested Class Summary
    • -
    • Field Summary
    • -
    • Constructor Summary
    • -
    • Method Summary
    • -
    -
      -
    • Field Detail
    • -
    • Constructor Detail
    • -
    • Method Detail
    • -
    -

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    -
  • -
  • -

    Annotation Type

    -

    Each annotation type has its own separate page with the following sections:

    -
      -
    • Annotation Type declaration
    • -
    • Annotation Type description
    • -
    • Required Element Summary
    • -
    • Optional Element Summary
    • -
    • Element Detail
    • -
    -
  • -
  • -

    Enum

    -

    Each enum has its own separate page with the following sections:

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Use

    -

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    -
  • -
  • -

    Tree (Class Hierarchy)

    -

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    -
      -
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • -
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • -
    -
  • -
  • -

    Deprecated API

    -

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    -
  • -
  • -

    Index

    -

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    -
  • -
  • -

    Prev/Next

    -

    These links take you to the next or previous class, interface, package, or related page.

    -
  • -
  • -

    Frames/No Frames

    -

    These links show and hide the HTML frames. All pages are available with or without frames.

    -
  • -
  • -

    All Classes

    -

    The All Classes link shows all classes and interfaces except non-static nested types.

    -
  • -
  • -

    Serialized Form

    -

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    -
  • -
  • -

    Constant Field Values

    -

    The Constant Field Values page lists the static final fields and their values.

    -
  • -
-This help file applies to API documentation generated using the standard doclet.
- -
- - - - - - - -
- - -

Copyright © 2015–2017 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/index-all.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/index-all.html b/documentation/0.2.1/audience-annotations-apidocs/index-all.html deleted file mode 100644 index 379b49e..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/index-all.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - -Index (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - - - - -
- - - - - - - -
- - -
E I L O S V  - - -

E

-
-
ExcludePrivateAnnotationsJDiffDoclet - Class in org.apache.yetus.audience.tools
-
-
A Doclet - for excluding elements that are annotated with - InterfaceAudience.Private or - InterfaceAudience.LimitedPrivate.
-
-
ExcludePrivateAnnotationsJDiffDoclet() - Constructor for class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsJDiffDoclet
-
 
-
ExcludePrivateAnnotationsStandardDoclet - Class in org.apache.yetus.audience.tools
-
-
A Doclet - for excluding elements that are annotated with - InterfaceAudience.Private or - InterfaceAudience.LimitedPrivate.
-
-
ExcludePrivateAnnotationsStandardDoclet() - Constructor for class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsStandardDoclet
-
 
-
- - - -

I

-
-
IncludePublicAnnotationsStandardDoclet - Class in org.apache.yetus.audience.tools
-
-
A Doclet - that only includes class-level elements that are annotated with - InterfaceAudience.Public.
-
-
IncludePublicAnnotationsStandardDoclet() - Constructor for class org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
-
 
-
InterfaceAudience - Class in org.apache.yetus.audience
-
-
Annotation to inform users of a package, class or method's intended audience.
-
-
InterfaceAudience.LimitedPrivate - Annotation Type in org.apache.yetus.audience
-
-
Intended only for the project(s) specified in the annotation.
-
-
InterfaceAudience.Private - Annotation Type in org.apache.yetus.audience
-
-
Intended for use only within a given project.
-
-
InterfaceAudience.Public - Annotation Type in org.apache.yetus.audience
-
-
Intended for use by any project or application.
-
-
InterfaceStability - Class in org.apache.yetus.audience
-
-
Annotation to inform users of how much to rely on a particular package, - class or method not changing over time.
-
-
InterfaceStability() - Constructor for class org.apache.yetus.audience.InterfaceStability
-
 
-
InterfaceStability.Evolving - Annotation Type in org.apache.yetus.audience
-
-
Evolving, but can break compatibility at minor release (i.e.
-
-
InterfaceStability.Stable - Annotation Type in org.apache.yetus.audience
-
-
Can evolve while retaining compatibility for minor release boundaries.; - can break compatibility only at major release (ie.
-
-
InterfaceStability.Unstable - Annotation Type in org.apache.yetus.audience
-
-
No guarantee is provided as to reliability or stability across any - level of release granularity.
-
-
- - - -

L

-
-
languageVersion() - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsJDiffDoclet
-
 
-
languageVersion() - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsStandardDoclet
-
 
-
languageVersion() - Static method in class org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
-
 
-
- - - -

O

-
-
optionLength(String) - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsJDiffDoclet
-
 
-
optionLength(String) - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsStandardDoclet
-
 
-
optionLength(String) - Static method in class org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
-
 
-
org.apache.yetus.audience - package org.apache.yetus.audience
-
 
-
org.apache.yetus.audience.tools - package org.apache.yetus.audience.tools
-
 
-
- - - -

S

-
-
start(RootDoc) - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsJDiffDoclet
-
 
-
start(RootDoc) - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsStandardDoclet
-
 
-
start(RootDoc) - Static method in class org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
-
 
-
- - - -

V

-
-
validOptions(String[][], DocErrorReporter) - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsJDiffDoclet
-
 
-
validOptions(String[][], DocErrorReporter) - Static method in class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsStandardDoclet
-
 
-
validOptions(String[][], DocErrorReporter) - Static method in class org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
-
 
-
-E I L O S V 
- -
- - - - - - - -
- - -

Copyright © 2015–2017 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/index.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/index.html b/documentation/0.2.1/audience-annotations-apidocs/index.html deleted file mode 100644 index 9932911..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/index.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - -Apache Yetus - Audience Annotations Component 0.2.1 API - - - - - - - - - -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -<h2>Frame Alert</h2> -<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> - - - http://git-wip-us.apache.org/repos/asf/yetus/blob/6ca1d766/documentation/0.2.1/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html ---------------------------------------------------------------------- diff --git a/documentation/0.2.1/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html b/documentation/0.2.1/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html deleted file mode 100644 index fd7f88f..0000000 --- a/documentation/0.2.1/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - -InterfaceAudience.LimitedPrivate (Apache Yetus - Audience Annotations Component 0.2.1 API) - - - - - - - - - - - - -
-
org.apache.yetus.audience
-

Annotation Type InterfaceAudience.LimitedPrivate

-
-
-
-
    -
  • -
    -
    -
    @Documented
    - @Retention(value=RUNTIME)
    -public static @interface InterfaceAudience.LimitedPrivate
    -
    Intended only for the project(s) specified in the annotation. - For example, "Hadoop Common", "HDFS", "MapReduce", "ZooKeeper", "HBase".
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Required Element Summary

      - - - - - - - - - - -
      Required Elements 
      Modifier and TypeRequired Element and Description
      String[]value 
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Element Detail

      - - - -
        -
      • -

        value

        -
        public abstract String[] value
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2015–2017 The Apache Software Foundation. All rights reserved.

- -