Skip to content

Commit

Permalink
updates for subsystem attributes (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasinge authored Jul 1, 2020
1 parent 2b7e8ab commit bed2e9c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/com/redhat/labs/omp/model/Subsystem.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package com.redhat.labs.omp.model;

import java.util.List;
import java.util.Map;

import javax.json.bind.annotation.JsonbProperty;

import lombok.AllArgsConstructor;
import lombok.Builder;
Expand All @@ -18,8 +21,8 @@ public class Subsystem {
private String state;
private String info;
private String updated;
private String webConsole;
private String api;
private List<Message> messages;
@JsonbProperty("access_urls")
private List<Map<String, Object>> accessUrls;

}

0 comments on commit bed2e9c

Please sign in to comment.