Exemplo n.º 1
0
Arquivo: Agent.java Projeto: ccbon/ocp
 public boolean isFirstAgent() {
   if (p == null) {
     JLG.debug("p is null");
   }
   String s = p.getProperty("server", "no");
   return s.equalsIgnoreCase("yes")
       && p.getProperty("server.isFirstAgent", "no").equalsIgnoreCase("yes");
 }