Methods Summary |
---|
public java.lang.String | getCreated()
populate();
return created;
|
public java.lang.String | getExpires()
populate();
return expires;
|
private void | populate()
populate(false);
|
private synchronized AssertionFitness | populate(boolean isServer)
if(!populated){
NestedPolicy policy = this.getNestedPolicy();
if(policy == null){
if(logger.getLevel() == Level.FINE){
logger.log(Level.FINE,"NestedPolicy is null");
}
populated = true;
return fitness;
}
AssertionSet as = policy.getAssertionSet();
for(PolicyAssertion pa : as){
if ( PolicyUtil.isCreated(pa) ) {
this.created = pa.getValue();
} else if ( PolicyUtil.isExpires(pa) ) {
this.expires = pa.getValue();
}
}
populated = true;
}
return fitness;
|
public void | setCreated(java.lang.String created)
this.created = created;
|
public void | setExpires(java.lang.String expires)
this.expires = expires;
|
public AssertionFitness | validate(boolean isServer)
return populate(isServer);
|