Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Release v1.0.6
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Kliczewski <piotr.kliczewski@gmail.com>
  • Loading branch information
pkliczewski committed Apr 18, 2023
1 parent b005b14 commit 7c7f3e9
Show file tree
Hide file tree
Showing 25 changed files with 665 additions and 721 deletions.
2 changes: 1 addition & 1 deletion coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<description>Compute aggregated test code coverage</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<revision>1.0.6-SNAPSHOT</revision>
<revision>1.0.6</revision>
</properties>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions notification-service-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>dev.parodos</groupId>
<artifactId>notification-service-sdk</artifactId>
<version>1.0.6-SNAPSHOT</version>
<version>1.0.6</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -55,7 +55,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "dev.parodos:notification-service-sdk:1.0.6-SNAPSHOT"
implementation "dev.parodos:notification-service-sdk:1.0.6"
}
```

Expand All @@ -69,7 +69,7 @@ mvn clean package

Then manually install the following JARs:

* `target/notification-service-sdk-1.0.6-SNAPSHOT.jar`
* `target/notification-service-sdk-1.0.6.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/1.0.6-SNAPSHOT/java");
setUserAgent("OpenAPI-Generator/1.0.6/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion notification-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ From the root of the 'notification-service' folder, the follow command will star

```shell

java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.6-SNAPSHOT.jar
java -jar -Dspring.profiles.active=local -Dserver.port=8081 target/notification-service-1.0.6.jar

```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</developer>
</developers>
<properties>
<revision>1.0.6-SNAPSHOT</revision>
<revision>1.0.6</revision>
<flatten.version>1.3.0</flatten.version>
<java.version>11</java.version>
<maven.plugins.compiler.version>3.8.1</maven.plugins.compiler.version>
Expand Down
6 changes: 3 additions & 3 deletions workflow-service-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>dev.parodos</groupId>
<artifactId>workflow-service-sdk</artifactId>
<version>1.0.6-SNAPSHOT</version>
<version>1.0.6</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -55,7 +55,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "dev.parodos:workflow-service-sdk:1.0.6-SNAPSHOT"
implementation "dev.parodos:workflow-service-sdk:1.0.6"
}
```

Expand All @@ -69,7 +69,7 @@ mvn clean package

Then manually install the following JARs:

* `target/workflow-service-sdk-1.0.6-SNAPSHOT.jar`
* `target/workflow-service-sdk-1.0.6.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/1.0.6-SNAPSHOT/java");
setUserAgent("OpenAPI-Generator/1.0.6/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
* This is the API documentation for the Parodos Workflow Service. It provides operations to execute assessments to determine infrastructure options (tooling + environments). Also executes infrastructure task workflows to call downstream systems to stand-up an infrastructure option.
*
* The version of the OpenAPI document: v1.0.0
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/


package com.redhat.parodos.sdk.api;

import com.redhat.parodos.sdk.api.ApiException;
Expand All @@ -28,21 +27,16 @@
@Ignore
public class LoginApiTest {

private final LoginApi api = new LoginApi();
private final LoginApi api = new LoginApi();

/**
* Login
* @throws ApiException if the Api call fails
*/
@Test
public void loginTest() throws ApiException {
api.login();
// TODO: test validations
}


/**
* Login
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void loginTest() throws ApiException {
api.login();
// TODO: test validations
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
* This is the API documentation for the Parodos Workflow Service. It provides operations to execute assessments to determine infrastructure options (tooling + environments). Also executes infrastructure task workflows to call downstream systems to stand-up an infrastructure option.
*
* The version of the OpenAPI document: v1.0.0
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/


package com.redhat.parodos.sdk.api;

import com.redhat.parodos.sdk.api.ApiException;
Expand All @@ -30,51 +29,38 @@
@Ignore
public class ProjectApiTest {

private final ProjectApi api = new ProjectApi();
private final ProjectApi api = new ProjectApi();

/**
* Creates a new project
* @throws ApiException if the Api call fails
*/
@Test
public void createProjectTest() throws ApiException {
ProjectRequestDTO projectRequestDTO = null;
ProjectResponseDTO response = api.createProject(projectRequestDTO);
// TODO: test validations
}

/**
* Returns information about a specified project
* @throws ApiException if the Api call fails
*/
@Test
public void getProjectByIdTest() throws ApiException {
String id = null;
ProjectResponseDTO response = api.getProjectById(id);
// TODO: test validations
}

/**
* Returns a list of project
* @throws ApiException if the Api call fails
*/
@Test
public void getProjectsTest() throws ApiException {
List<ProjectResponseDTO> response = api.getProjects();
// TODO: test validations
}


/**
* Creates a new project
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void createProjectTest() throws ApiException {
ProjectRequestDTO projectRequestDTO = null;
ProjectResponseDTO response = api.createProject(projectRequestDTO);
// TODO: test validations
}

/**
* Returns information about a specified project
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void getProjectByIdTest() throws ApiException {
String id = null;
ProjectResponseDTO response = api.getProjectById(id);
// TODO: test validations
}

/**
* Returns a list of project
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void getProjectsTest() throws ApiException {
List<ProjectResponseDTO> response = api.getProjects();
// TODO: test validations
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
* This is the API documentation for the Parodos Workflow Service. It provides operations to execute assessments to determine infrastructure options (tooling + environments). Also executes infrastructure task workflows to call downstream systems to stand-up an infrastructure option.
*
* The version of the OpenAPI document: v1.0.0
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/


package com.redhat.parodos.sdk.api;

import com.redhat.parodos.sdk.api.ApiException;
Expand All @@ -32,54 +31,42 @@
@Ignore
public class WorkflowApiTest {

private final WorkflowApi api = new WorkflowApi();
private final WorkflowApi api = new WorkflowApi();

/**
* Executes a workflow
* @throws ApiException if the Api call fails
*/
@Test
public void executeTest() throws ApiException {
WorkFlowRequestDTO workFlowRequestDTO = null;
WorkFlowResponseDTO response = api.execute(workFlowRequestDTO);
// TODO: test validations
}

/**
* Returns a workflow status
* @throws ApiException if the Api call fails
*/
@Test
public void getStatusTest() throws ApiException {
String workFlowExecutionId = null;
WorkFlowStatusResponseDTO response = api.getStatus(workFlowExecutionId);
// TODO: test validations
}

/**
* Updates a workflow checker task status
* @throws ApiException if the Api call fails
*/
@Test
public void updateWorkFlowCheckerTaskStatusTest() throws ApiException {
String workFlowExecutionId = null;
String workFlowCheckerTaskName = null;
WorkFlowCheckerTaskRequestDTO workFlowCheckerTaskRequestDTO = null;
String response = api.updateWorkFlowCheckerTaskStatus(workFlowExecutionId, workFlowCheckerTaskName,
workFlowCheckerTaskRequestDTO);
// TODO: test validations
}


/**
* Executes a workflow
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void executeTest() throws ApiException {
WorkFlowRequestDTO workFlowRequestDTO = null;
WorkFlowResponseDTO response = api.execute(workFlowRequestDTO);
// TODO: test validations
}

/**
* Returns a workflow status
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void getStatusTest() throws ApiException {
String workFlowExecutionId = null;
WorkFlowStatusResponseDTO response = api.getStatus(workFlowExecutionId);
// TODO: test validations
}

/**
* Updates a workflow checker task status
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void updateWorkFlowCheckerTaskStatusTest() throws ApiException {
String workFlowExecutionId = null;
String workFlowCheckerTaskName = null;
WorkFlowCheckerTaskRequestDTO workFlowCheckerTaskRequestDTO = null;
String response = api.updateWorkFlowCheckerTaskStatus(workFlowExecutionId, workFlowCheckerTaskName, workFlowCheckerTaskRequestDTO);
// TODO: test validations
}

}
Loading

0 comments on commit 7c7f3e9

Please sign in to comment.