From 0cf967c0239a8ab9c8b8831b700b72d9a08f7b03 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Fri, 16 Oct 2020 13:09:11 +0100 Subject: Remove apex asciidoc documents Apex documentation has now all been ported to use the ONAP recommended rst format. This review removes the old asciidoc documents. Issue-ID: POLICY-2824 Change-Id: I562bd344cb7d6ff36e7d54bdb8f95e3b656468f8 Signed-off-by: liamfallon --- .../adoc/fragments/example-cli-version.adoc | 50 --------- .../src/site-docs/adoc/fragments/example-cli.adoc | 125 --------------------- 2 files changed, 175 deletions(-) delete mode 100644 tools/tools-common/src/site-docs/adoc/fragments/example-cli-version.adoc delete mode 100644 tools/tools-common/src/site-docs/adoc/fragments/example-cli.adoc (limited to 'tools/tools-common') diff --git a/tools/tools-common/src/site-docs/adoc/fragments/example-cli-version.adoc b/tools/tools-common/src/site-docs/adoc/fragments/example-cli-version.adoc deleted file mode 100644 index 178799c44..000000000 --- a/tools/tools-common/src/site-docs/adoc/fragments/example-cli-version.adoc +++ /dev/null @@ -1,50 +0,0 @@ -// -// ============LICENSE_START======================================================= -// Copyright (C) 2016-2018 Ericsson. All rights reserved. -// ================================================================================ -// This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE -// Full license text at https://creativecommons.org/licenses/by/4.0/legalcode -// -// SPDX-License-Identifier: CC-BY-4.0 -// ============LICENSE_END========================================================= -// -// @author Sven van der Meer (sven.van.der.meer@ericsson.com) -// - -== Autoversioning an Application - -The APEX utilities project provides means to versioning an application automatically towards the APEX version it is written for. -This is realized by generating a file called `app-version.txt` that includes the Maven project version. -This file is then automatically deployed in the folder `etc` of a full APEX distribution. -The CLI Parser here provides a mthod to access this version for an application. - -First, create a new CLI Parser object, add some options (in the example an option for version, but any options will do), then parse the command line: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleAppVersionTest.java[tags=setupParser,indent=0] ----- - -Next, we check if the version option was used in the command line and print application name and version if it was used: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleAppVersionTest.java[tags=processCliVersion,indent=0] ----- - -The output will be: - -[source,sh,subs="attributes+"] ----- -myApp {release-version} ----- - -The auto-version information comes from the method call `cli.getAppVersion()` in line 2 in the example above. -The method is defined in the `CliParser` class as: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/main/java/org/onap/policy/apex/tools/common/CliParser.java[tags=cliParserVersion,indent=0] ----- - -The file `app-version.txt` is automatically added to an APEX full distribution, as described above (for details on this see the POM files in the APEX application packaging projects). diff --git a/tools/tools-common/src/site-docs/adoc/fragments/example-cli.adoc b/tools/tools-common/src/site-docs/adoc/fragments/example-cli.adoc deleted file mode 100644 index d2edc446d..000000000 --- a/tools/tools-common/src/site-docs/adoc/fragments/example-cli.adoc +++ /dev/null @@ -1,125 +0,0 @@ -// -// ============LICENSE_START======================================================= -// Copyright (C) 2016-2018 Ericsson. All rights reserved. -// ================================================================================ -// This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE -// Full license text at https://creativecommons.org/licenses/by/4.0/legalcode -// -// SPDX-License-Identifier: CC-BY-4.0 -// ============LICENSE_END========================================================= -// -// @author Sven van der Meer (sven.van.der.meer@ericsson.com) -// - -== CLI Example - -Using the APEX CLI utilities can be done as follows. -First, add the dependency of the utility project to your POM file. - -[source,xml,subs="attributes+"] ----- - - org.onap.policy.apex-pdp.tools - tools-common - {release-version} - ----- - -Now, create a new application project, for instance `MyApp`. -In this project, create a new main application class as `Application.java`. -In this class, create a new main method as `public static void main(String[] args)`. - -No use the provided `CliOptions` and `CliParser`. -Manually importing means to add the following lines to the start of your application (in Eclipse this import will be done automatically): - -[source,java, linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=import,indent=0] ----- - -Now, inside your `main()` method, start setting some general application properties. -Important are the application name and some description of your application. -For instance: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=setApp,indent=0] ----- - -Next, create a new CLI Parser and add a few CLI options from the standard `CliOptions`. -The following example adds options for help, version, and a model file: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=setCli,indent=0] ----- - -Next, parse the given CLI arguments: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=parseCli,indent=0] ----- - -Once the command line is parsed, we can look into the individual options, check if they are set, and then act accordingly. -We start with the option for __help__. -If the option is present, we print a help screen and return: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=processCliHelp,indent=0] ----- - -Next, we process the option for __version__. -Here, we want to print a version for our application and return. -The CLI Parser already provides a method to obtain the correct version for an APEX build, so we use that: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=processCliVersion,indent=0] ----- - -Once help and version arguments are processed, we can proceed to look at all other options. -We have added an option for a model file, so check this option and test if we can actually load a model file with the given argument. -If we can load a model, everything is ok. -If we cannot load a model, we print an error and return. - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=processCliModel,indent=0] ----- - -With a model file being loadable, we finish parsing command line arguments. -We also print some status messages to note that the application now is ready to start: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=someStartPrint,indent=0] ----- - -The last action now is to run the actual application. -The example below is taken from a version of the `Model2Cli` application, which creates a new object and runs it in a `try` block, since exceptions might be thrown by the object: - -[source,java,linenums,subs="attributes+"] ----- -include::{adsite-tools-common-dir}/test/java/org/onap/policy/apex/tools/common/docs/ExampleCliParserTest.java[tags=yourApp,indent=0] ----- - -If this new application is now called with the command line `-h` or `--help` it will print the following help screen: - -[source,sh,subs="attributes+"] ----- -test-app v{release-version} - a test app for documenting how to use the CLI utilities -usage: test-app - -h,--help prints this help and usage screen - -m,--model set the input policy model file - -v,--version prints the application version ----- - -If this new application is called with the option `-v` or `--version` it will print its version information as: - -[source,sh,subs="attributes+"] ----- -test-app {release-version} ----- - -- cgit 1.2.3-korg