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

FLPATH-476: Update openapi-generator-maven-plugin #454

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions notification-service-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,11 @@ Class | Method | HTTP request | Description
- [Sort](docs/Sort.md)


<a id="documentation-for-authorization"></a>
## Documentation for Authorization

All endpoints do not require authorization.
Authentication schemes defined for the API:
Endpoints do not require authorization.


## Recommendation

Expand Down
2 changes: 1 addition & 1 deletion notification-service-sdk/docs/NotificationMessageApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ All URIs are relative to *http://localhost:8080*
| [**create**](NotificationMessageApi.md#create) | **POST** /api/v1/messages | |


<a name="create"></a>
<a id="create"></a>
# **create**
> create(notificationMessageCreateRequestDTO)

Expand Down
8 changes: 4 additions & 4 deletions notification-service-sdk/docs/NotificationRecordApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ All URIs are relative to *http://localhost:8080*
| [**updateNotificationStatusById**](NotificationRecordApi.md#updateNotificationStatusById) | **PUT** /api/v1/notifications/{id} | Update the specified notification record with user operation |


<a name="countUnreadNotifications"></a>
<a id="countUnreadNotifications"></a>
# **countUnreadNotifications**
> Integer countUnreadNotifications(state)

Expand Down Expand Up @@ -73,7 +73,7 @@ No authorization required
| **401** | Unauthorized | - |
| **404** | Not Found | - |

<a name="deleteNotification"></a>
<a id="deleteNotification"></a>
# **deleteNotification**
> deleteNotification(id)

Expand Down Expand Up @@ -135,7 +135,7 @@ No authorization required
| **401** | Unauthorized | - |
| **404** | Not Found | - |

<a name="getNotifications"></a>
<a id="getNotifications"></a>
# **getNotifications**
> PageNotificationRecordResponseDTO getNotifications(page, size, sort, state, searchTerm)

Expand Down Expand Up @@ -206,7 +206,7 @@ No authorization required
| **401** | Unauthorized | - |
| **404** | Not Found | - |

<a name="updateNotificationStatusById"></a>
<a id="updateNotificationStatusById"></a>
# **updateNotificationStatusById**
> NotificationRecordResponseDTO updateNotificationStatusById(id, operation)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {

public static final String VERSION = "1.0.18-SNAPSHOT";

private static ApiClient defaultApiClient = new ApiClient();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public ErrorMessageDTO date(Date date) {
* @return date
**/
@javax.annotation.Nullable

public Date getDate() {
return date;
}
Expand All @@ -85,7 +84,6 @@ public ErrorMessageDTO description(String description) {
* @return description
**/
@javax.annotation.Nullable

public String getDescription() {
return description;
}
Expand All @@ -105,7 +103,6 @@ public ErrorMessageDTO message(String message) {
* @return message
**/
@javax.annotation.Nullable

public String getMessage() {
return message;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class NotificationMessageCreateRequestDTO {
public static final String SERIALIZED_NAME_GROUP_NAMES = "groupNames";

@SerializedName(SERIALIZED_NAME_GROUP_NAMES)
private List<String> groupNames = new ArrayList<>();
private List<String> groupNames;

public static final String SERIALIZED_NAME_MESSAGE_TYPE = "messageType";

Expand All @@ -60,7 +60,7 @@ public class NotificationMessageCreateRequestDTO {
public static final String SERIALIZED_NAME_USERNAMES = "usernames";

@SerializedName(SERIALIZED_NAME_USERNAMES)
private List<String> usernames = new ArrayList<>();
private List<String> usernames;

public NotificationMessageCreateRequestDTO() {
}
Expand All @@ -76,7 +76,6 @@ public NotificationMessageCreateRequestDTO body(String body) {
* @return body
**/
@javax.annotation.Nullable

public String getBody() {
return body;
}
Expand Down Expand Up @@ -104,7 +103,6 @@ public NotificationMessageCreateRequestDTO addGroupNamesItem(String groupNamesIt
* @return groupNames
**/
@javax.annotation.Nullable

public List<String> getGroupNames() {
return groupNames;
}
Expand All @@ -124,7 +122,6 @@ public NotificationMessageCreateRequestDTO messageType(String messageType) {
* @return messageType
**/
@javax.annotation.Nullable

public String getMessageType() {
return messageType;
}
Expand All @@ -144,7 +141,6 @@ public NotificationMessageCreateRequestDTO subject(String subject) {
* @return subject
**/
@javax.annotation.Nullable

public String getSubject() {
return subject;
}
Expand Down Expand Up @@ -172,7 +168,6 @@ public NotificationMessageCreateRequestDTO addUsernamesItem(String usernamesItem
* @return usernames
**/
@javax.annotation.Nullable

public List<String> getUsernames() {
return usernames;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public class NotificationRecordResponseDTO {
public static final String SERIALIZED_NAME_TAGS = "tags";

@SerializedName(SERIALIZED_NAME_TAGS)
private List<String> tags = new ArrayList<>();
private List<String> tags;

public NotificationRecordResponseDTO() {
}
Expand All @@ -98,7 +98,6 @@ public NotificationRecordResponseDTO body(String body) {
* @return body
**/
@javax.annotation.Nullable

public String getBody() {
return body;
}
Expand All @@ -118,7 +117,6 @@ public NotificationRecordResponseDTO createdOn(Date createdOn) {
* @return createdOn
**/
@javax.annotation.Nullable

public Date getCreatedOn() {
return createdOn;
}
Expand All @@ -138,7 +136,6 @@ public NotificationRecordResponseDTO folder(String folder) {
* @return folder
**/
@javax.annotation.Nullable

public String getFolder() {
return folder;
}
Expand All @@ -158,7 +155,6 @@ public NotificationRecordResponseDTO fromuser(String fromuser) {
* @return fromuser
**/
@javax.annotation.Nullable

public String getFromuser() {
return fromuser;
}
Expand All @@ -178,7 +174,6 @@ public NotificationRecordResponseDTO id(UUID id) {
* @return id
**/
@javax.annotation.Nullable

public UUID getId() {
return id;
}
Expand All @@ -198,7 +193,6 @@ public NotificationRecordResponseDTO messageType(String messageType) {
* @return messageType
**/
@javax.annotation.Nullable

public String getMessageType() {
return messageType;
}
Expand All @@ -218,7 +212,6 @@ public NotificationRecordResponseDTO read(Boolean read) {
* @return read
**/
@javax.annotation.Nullable

public Boolean getRead() {
return read;
}
Expand All @@ -238,7 +231,6 @@ public NotificationRecordResponseDTO subject(String subject) {
* @return subject
**/
@javax.annotation.Nullable

public String getSubject() {
return subject;
}
Expand Down Expand Up @@ -266,7 +258,6 @@ public NotificationRecordResponseDTO addTagsItem(String tagsItem) {
* @return tags
**/
@javax.annotation.Nullable

public List<String> getTags() {
return tags;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class PageNotificationRecordResponseDTO {
public static final String SERIALIZED_NAME_CONTENT = "content";

@SerializedName(SERIALIZED_NAME_CONTENT)
private List<NotificationRecordResponseDTO> content = new ArrayList<>();
private List<NotificationRecordResponseDTO> content;

public static final String SERIALIZED_NAME_EMPTY = "empty";

Expand Down Expand Up @@ -115,7 +115,6 @@ public PageNotificationRecordResponseDTO addContentItem(NotificationRecordRespon
* @return content
**/
@javax.annotation.Nullable

public List<NotificationRecordResponseDTO> getContent() {
return content;
}
Expand All @@ -135,7 +134,6 @@ public PageNotificationRecordResponseDTO empty(Boolean empty) {
* @return empty
**/
@javax.annotation.Nullable

public Boolean getEmpty() {
return empty;
}
Expand All @@ -155,7 +153,6 @@ public PageNotificationRecordResponseDTO first(Boolean first) {
* @return first
**/
@javax.annotation.Nullable

public Boolean getFirst() {
return first;
}
Expand All @@ -175,7 +172,6 @@ public PageNotificationRecordResponseDTO last(Boolean last) {
* @return last
**/
@javax.annotation.Nullable

public Boolean getLast() {
return last;
}
Expand All @@ -195,7 +191,6 @@ public PageNotificationRecordResponseDTO number(Integer number) {
* @return number
**/
@javax.annotation.Nullable

public Integer getNumber() {
return number;
}
Expand All @@ -215,7 +210,6 @@ public PageNotificationRecordResponseDTO numberOfElements(Integer numberOfElemen
* @return numberOfElements
**/
@javax.annotation.Nullable

public Integer getNumberOfElements() {
return numberOfElements;
}
Expand All @@ -235,7 +229,6 @@ public PageNotificationRecordResponseDTO pageable(PageableObject pageable) {
* @return pageable
**/
@javax.annotation.Nullable

public PageableObject getPageable() {
return pageable;
}
Expand All @@ -255,7 +248,6 @@ public PageNotificationRecordResponseDTO size(Integer size) {
* @return size
**/
@javax.annotation.Nullable

public Integer getSize() {
return size;
}
Expand All @@ -275,7 +267,6 @@ public PageNotificationRecordResponseDTO sort(Sort sort) {
* @return sort
**/
@javax.annotation.Nullable

public Sort getSort() {
return sort;
}
Expand All @@ -295,7 +286,6 @@ public PageNotificationRecordResponseDTO totalElements(Long totalElements) {
* @return totalElements
**/
@javax.annotation.Nullable

public Long getTotalElements() {
return totalElements;
}
Expand All @@ -315,7 +305,6 @@ public PageNotificationRecordResponseDTO totalPages(Integer totalPages) {
* @return totalPages
**/
@javax.annotation.Nullable

public Integer getTotalPages() {
return totalPages;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public PageableObject offset(Long offset) {
* @return offset
**/
@javax.annotation.Nullable

public Long getOffset() {
return offset;
}
Expand All @@ -99,7 +98,6 @@ public PageableObject pageNumber(Integer pageNumber) {
* @return pageNumber
**/
@javax.annotation.Nullable

public Integer getPageNumber() {
return pageNumber;
}
Expand All @@ -119,7 +117,6 @@ public PageableObject pageSize(Integer pageSize) {
* @return pageSize
**/
@javax.annotation.Nullable

public Integer getPageSize() {
return pageSize;
}
Expand All @@ -139,7 +136,6 @@ public PageableObject paged(Boolean paged) {
* @return paged
**/
@javax.annotation.Nullable

public Boolean getPaged() {
return paged;
}
Expand All @@ -159,7 +155,6 @@ public PageableObject sort(Sort sort) {
* @return sort
**/
@javax.annotation.Nullable

public Sort getSort() {
return sort;
}
Expand All @@ -179,7 +174,6 @@ public PageableObject unpaged(Boolean unpaged) {
* @return unpaged
**/
@javax.annotation.Nullable

public Boolean getUnpaged() {
return unpaged;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public Sort empty(Boolean empty) {
* @return empty
**/
@javax.annotation.Nullable

public Boolean getEmpty() {
return empty;
}
Expand All @@ -84,7 +83,6 @@ public Sort sorted(Boolean sorted) {
* @return sorted
**/
@javax.annotation.Nullable

public Boolean getSorted() {
return sorted;
}
Expand All @@ -104,7 +102,6 @@ public Sort unsorted(Boolean unsorted) {
* @return unsorted
**/
@javax.annotation.Nullable

public Boolean getUnsorted() {
return unsorted;
}
Expand Down
Loading
Loading