path2Auths = System.getProperty("PATH_2_AUTHS");
if (System.getProperty("AUTH_TOKEN") != null)
at = System.getProperty("AUTH_TOKEN");
try {
final String[] cmd = new String[]{path2Auths, user};
ProcessExecutor pe = new ProcessExecutor(cmd);
pe.setExecutionRetentionFlag(true);
pe.execute();
auths.append(pe.getLastExecutionOutput());
final StringTokenizer st = new StringTokenizer(pe.getLastExecutionOutput(), at);
while (st.hasMoreTokens()) {
String t = st.nextToken();
if (t != null)
t = t.trim();
if (AUTH1.equals(t) || AUTH2.equals(t) || AUTH3.equals(t)) {