Provide reference documentation for Actuator web endpoints

Closes gh-8042
This commit is contained in:
Andy Wilkinson
2017-08-04 12:56:48 +01:00
parent 4ff8126217
commit 4de208bc94
49 changed files with 3225 additions and 7 deletions

View File

@@ -117,7 +117,7 @@ public class LiquibaseEndpoint {
private final String comments;
private final ContextExpression contextExpression;
private final Set<String> contexts;
private final Date dateExecuted;
@@ -141,8 +141,7 @@ public class LiquibaseEndpoint {
this.author = ranChangeSet.getAuthor();
this.changeLog = ranChangeSet.getChangeLog();
this.comments = ranChangeSet.getComments();
this.contextExpression = new ContextExpression(
ranChangeSet.getContextExpression().getContexts());
this.contexts = ranChangeSet.getContextExpression().getContexts();
this.dateExecuted = ranChangeSet.getDateExecuted();
this.deploymentId = ranChangeSet.getDeploymentId();
this.description = ranChangeSet.getDescription();
@@ -167,8 +166,8 @@ public class LiquibaseEndpoint {
return this.comments;
}
public ContextExpression getContextExpression() {
return this.contextExpression;
public Set<String> getContexts() {
return this.contexts;
}
public Date getDateExecuted() {