Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some get and set methods required by ACCS #773

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
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