@Pattern
Java Command Annotations – @Pattern Table of Contents 1. Basics 2. Properties 3. Usage Java command annotations are used for the developing Java commands in PAK. This chapter describes the functionality of the @Pattern annotation. It also gives an example of how you can use this annotation in your implementation. 1. Basics The @Pattern annotation […]
@Named
Java Command Annotations – @Named Table of Contents 1. Basics 2. Properties 3. Usage Java command annotations are used for the developing Java commands in PAK. This chapter describes the functionality of the @Named annotation. It also gives an example of how you can use this annotation in your implementation. 1. Basics The @Named annotation […]
@LiteService
This HowTo introduces the @LiteService-annotation and explains how to use it correctly
@JavaCommandService
Java Command Annotations – @JavaCommandService Table of Contents 1. Basics 2. Usage 2.1. Processing of All Methods within the Class 2.2. Processing of Certain Methods within the Class Java command annotations are used for developing Java commands in PAK. This chapter describes the functionality of the @JavaCommandService annotation. It also gives an example of how […]
@JavaCommand
Java Command Annotations – @JavaCommand Table of Contents 1. Basics 2. Properties 3. Usage 3.1. @JavaCommand on Class-Level 3.2. @JavaCommand on Method-Level Java command annotations are used for developing Java commands in PAK. This chapter describes the functionality of the @JavaCommand annotation. It also gives an example of how you can use this annotation in […]
@Group
Java Command Annotations – @Group Table of Contents 1. Basics 2. Properties 3. Usage Java command annotations are used for the developing Java commands in PAK. This chapter describes the functionality of the @Group annotation. It also gives an example of how you can use this annotation in your implementation. 1. Basics The @Group annotation […]
@CommandGroup
Java Command Annotations – @CommandGroup Table of Contents 1. Basics 2. Properties 3. Usage Java command annotations are used for the developing Java commands in PAK. This chapter describes the functionality of the @CommandGroup annotation. It also gives an example of how you can use this annotation in your implementation. 1. Basics The @CommandGroup annotation […]
WorkflowDocuRequirement
Integration of @workflowDocu via the build.gradle file javadoc { source = sourceSets.main.allJava options.tags = [ ‚workflowDocu:cm:Workflow Developer Documentation:‘ ] } Last updated 2025-04-07 09:26:29 +0200
WorkflowDocuOutputExample
Usage of @workflowDocu for output-variables /** * @workflowDocu The id of the build job. Can be retrieved with the * {@link StartBuildJob} command. */ @Persistent(scope = FieldScope.WRITE_ONLY) private Integer buildId; Last updated 2025-04-07 09:26:29 +0200
WorkflowDocuInputExampleFormating
@workflowDocu using the <pre> tag /** * <pre> * @workflowDocu Parameter map for the Jenkins job that will be executed. * Caution: * If the build job is not parametrized, the value must be * null. * If the build job is parameterized, the parameter map must * not be null. * For a parametrized […]