String propValue = getProperties().getProperty(propName, "");
if (propValue.length() == 0) break;
StringTokenizer tokens = new StringTokenizer(propValue, ",");
String infId = tokens.nextToken().trim();
String infClass = tokens.nextToken().trim();
InterfaceTypes infType = null;
String sinfType = tokens.hasMoreTokens() ? tokens.nextToken() : "inoutbound";
sinfType = sinfType.trim();
if ("inbound".equalsIgnoreCase(sinfType))
{
infType = InterfaceTypes.INBOUND;