diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index 38bb10f59..316f710d0 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -165,4 +165,8 @@ public class ApplicationProperties { return property.equals("1"); } + public Integer maxSizeNumCorrida(){ + String property = p.getProperty("maxSizeNumCorrida", "-1"); + return Integer.parseInt(property); + } }