Package org.jboss.remoting

Examples of org.jboss.remoting.InvalidConfigurationException


        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];
View Full Code Here

TOP

Related Classes of org.jboss.remoting.InvalidConfigurationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.