Minor fix to last commit # Conflicts: # services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/AbstractOperation.java
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/4343b7c8 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4343b7c8 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4343b7c8 Branch: refs/heads/3.1.x-fixes Commit: 4343b7c8c2115fa93983557e50da4d247e601ad4 Parents: 51db38c Author: Colm O hEigeartaigh <cohei...@apache.org> Authored: Wed Sep 6 10:14:42 2017 +0100 Committer: Colm O hEigeartaigh <cohei...@apache.org> Committed: Wed Sep 6 10:20:08 2017 +0100 ---------------------------------------------------------------------- .../java/org/apache/cxf/sts/operation/AbstractOperation.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/4343b7c8/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/AbstractOperation.java ---------------------------------------------------------------------- diff --git a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/AbstractOperation.java b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/AbstractOperation.java index 53d7099..e72e526 100644 --- a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/AbstractOperation.java +++ b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/AbstractOperation.java @@ -186,10 +186,10 @@ public abstract class AbstractOperation { this.includeLifetimeElement = value; } - public boolean getIncludeLifetimeElement() { - return this.includeLifetimeElement; + public boolean isIncludeLifetimeElement() { + return includeLifetimeElement; } - + /** * Check the arguments from the STSProvider and parse the request. */