~ubuntu-branches/ubuntu/trusty/ivy/trusty-proposed

« back to all changes in this revision

Viewing changes to src/java/org/apache/ivy/core/cache/CacheMetadataOptions.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-15 17:44:57 UTC
  • mfrom: (3.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130515174457-ogntd0vxluwalq11
Tags: 2.3.0-2
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    private Boolean isCheckmodified = null;
26
26
    private String changingMatcherName = null;
27
27
    private String changingPattern = null;
 
28
    private boolean checkTTL = true;
28
29
    
29
30
    public Namespace getNamespace() {
30
31
        return namespace;
61
62
        this.changingPattern  = changingPattern;
62
63
        return this;
63
64
    }
 
65
    public CacheMetadataOptions setCheckTTL(boolean checkTTL) {
 
66
        this.checkTTL = checkTTL;
 
67
        return this;
 
68
    }
 
69
    public boolean isCheckTTL() {
 
70
        return checkTTL;
 
71
    }
64
72
}