Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
chore: update AppView and AppEndpointView (#939)
Browse files Browse the repository at this point in the history
* chore: add title and description to AppView

* chore: add endpoint type to AppEndpointView

* docs: update CHANGELOG.md
  • Loading branch information
ronjaquensel authored Mar 7, 2022
1 parent 99844aa commit 40d3899
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [X.X.X] - XXXX-XX-XX

### Added
- Add title and description to `AppView`.
- Add endpoint type to `AppEndpointView`.

### Changed
- Update IDS messaging services version from 6.0.1 to 6.1.0.
- Set content type of payload when logging to the Clearing House, so that logged items are not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ public class AppView extends RepresentationModel<AppView> {
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = ViewConstants.DATE_TIME_FORMAT)
private ZonedDateTime modificationDate;

/**
* Title of the app.
*/
private String title;

/**
* Description of the app.
*/
private String description;

/***********************************************************************************************
* Artifact attributes *
***********************************************************************************************
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public class AppEndpointView extends RepresentationModel<AppEndpointView> {
*/
private String location;

/**
* Holds the information about the endpoint type.
*/
private String endpointType;

/**
* The documentation of the endpoint.
*/
Expand Down

0 comments on commit 40d3899

Please sign in to comment.