daniel.zauli 2016-09-23 13:45:58 +00:00
parent 08448e5b9d
commit 0654b60d2d
1 changed files with 5 additions and 0 deletions

View File

@ -165,6 +165,11 @@ public class ApplicationProperties {
return property.equals("1");
}
public boolean calculoPeajeReunidasANTT() {
String property = p.getProperty("calculoPeajeReunidasANTT", "0");
return property.equals("1");
}
public Integer maxSizeNumCorrida(){
String property = p.getProperty("maxSizeNumCorrida", "-1");
return Integer.parseInt(property);