Skip to content

Commit

Permalink
Remove non-used annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Aug 21, 2023
1 parent 361f44c commit 09fa6bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions server/src/main/java/access/lifecycle/Attribute.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
@NoArgsConstructor
@AllArgsConstructor
@Getter
@EqualsAndHashCode
@ToString
public class Attribute {

private String name;
Expand Down
6 changes: 2 additions & 4 deletions server/src/main/java/access/lifecycle/LifeCycleResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@

@JsonInclude(JsonInclude.Include.NON_NULL)
@Getter
@EqualsAndHashCode
@ToString
public class LifeCycleResult {

private String status = "OK";
private String name = "OpenConext-access-server";
private final String status = "OK";
private final String name = "OpenConext-access-server";
private List<Attribute> data = new ArrayList<>();

public void setData(List<Attribute> data) {
Expand Down

0 comments on commit 09fa6bd

Please sign in to comment.