Skip to content
Draft
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 @@ -51,4 +51,20 @@ public Timestamp getTimestamp() {
public void setTimestamp(Timestamp timestamp) {
this.timestamp = timestamp;
}

public Long getId() {
return id;
}

public OrderState getNewState() {
return newState;
}

public void setNewState(OrderState newState) {
this.newState = newState;
}

public void setId(Long id) {
this.id = id;
}
}
4 changes: 4 additions & 0 deletions src/main/java/cloud/fogbow/ras/core/models/orders/Order.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ public void setProvider(String provider) {
this.provider = provider;
}

public String getUserId() {
return this.userId;
}

public String getCloudName() {
return this.cloudName;
}
Expand Down