Skip to content

Commit

Permalink
feat(deployment-date): add deployment date to API model
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompiegne committed Jan 19, 2016
1 parent 4d23a76 commit 9e65a3d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/io/gravitee/repository/management/model/Api.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ public class Api {
* The api JSON definition
*/
private String definition;

/**
* The api deployment date
*/
private Date deployedAt;

/**
* The Api creation date
Expand Down Expand Up @@ -94,6 +99,14 @@ public String getName() {
public void setName(String name) {
this.name = name;
}

public Date getDeployedAt() {
return deployedAt;
}

public void setDeployedAt(Date deployedAt) {
this.deployedAt = deployedAt;
}

public Date getUpdatedAt() {
return updatedAt;
Expand Down

0 comments on commit 9e65a3d

Please sign in to comment.