Skip to content

Commit

Permalink
feat(event): add origin to Event Model
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompiegne committed Jan 7, 2016
1 parent 9510c0f commit 717733d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/io/gravitee/repository/management/model/Event.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ public class Event {
* The event parent
*/
private String parentId;

/**
* The event origin
*/
private String origin;

/**
* The event creation date
Expand Down Expand Up @@ -84,6 +89,14 @@ public void setParentId(String parentId) {
this.parentId = parentId;
}

public String getOrigin() {
return origin;
}

public void setOrigin(String origin) {
this.origin = origin;
}

public Date getCreatedAt() {
return createdAt;
}
Expand Down

0 comments on commit 717733d

Please sign in to comment.