String[] remotePojosDefs = remotePojosPropStr.split("\\s*,\\s*");
for (int i = 0; i < remotePojosDefs.length; i++) {
String[] classAndInterfaceNames = remotePojosDefs[i].split("\\s*:\\s*");
if (classAndInterfaceNames.length != 2) {
throw new InvalidConfigurationException(LOG.getMsgString(
CommI18NResourceKeys.SERVICE_CONTAINER_REMOTE_POJO_CONFIG_INVALID,
ServiceContainerConfigurationConstants.REMOTE_POJOS, remotePojosDefs[i], remotePojosPropStr));
}
String pojo_class_name = classAndInterfaceNames[0];