Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public interface Keypair extends ModelEntity {
*
* @return is deleted
*/
boolean getDeleted();
Boolean getDeleted();

/**
* time created
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class NovaKeypair implements Keypair {

@JsonProperty("user_id")
private String userId;
private boolean deleted;
private Boolean deleted;
@JsonProperty("created_at")
private Date createdAt;
@JsonProperty("updated_at")
Expand Down Expand Up @@ -97,7 +97,7 @@ public String getUserId() {
* {@inheritDoc}
*/
@Override
public boolean getDeleted() {
public Boolean getDeleted() {
return this.deleted;
}

Expand Down