Methods Summary |
---|
public java.lang.String | getMaxClockSkew()
if(this.getAttributes().containsKey(cmaxClockSkew)){
return this.getAttributeValue(cmaxClockSkew);
}else if(this.getAttributes().containsKey(smaxClockSkew)){
return this.getAttributeValue(smaxClockSkew);
}
return null;
|
public java.lang.String | getMaxNonceAge()
if(this.getAttributes().containsKey(smaxNonceAge)){
return this.getAttributeValue(smaxNonceAge);
}
return null;
|
public java.lang.String | getRevocationEnabled()
if(this.getAttributes().containsKey(crevocationEnabled)){
return this.getAttributeValue(crevocationEnabled);
}else if(this.getAttributes().containsKey(srevocationEnabled)){
return this.getAttributeValue(srevocationEnabled);
}
return null;
|
public java.lang.String | getTimestampFreshnessLimit()
if(this.getAttributes().containsKey(ctimestampFreshnessLimit)){
return this.getAttributeValue(ctimestampFreshnessLimit);
}else if(this.getAttributes().containsKey(stimestampFreshnessLimit)){
return this.getAttributeValue(stimestampFreshnessLimit);
}
return null;
|
public java.util.Iterator | getValidators()
populate();
return ast;
|
private void | populate()
populate(false);
|
private synchronized AssertionFitness | populate(boolean isServer)
if(!populated){
this.ast = this.getNestedAssertionsIterator();
populated = true;
}
return fitness;
|
public AssertionFitness | validate(boolean isServer)
return populate(isServer);
|