Package org.jboss.as.model.socket

Examples of org.jboss.as.model.socket.CompoundCriteriaElement


                            throw unexpectedElement(reader);
                        }
                        switch (element) {
                            case ANY:
                            case NOT: {
                                final CompoundCriteriaElement criteria = InterfaceParsingUtils.createCompoundCriteria(reader, element == Element.ANY);
                                interfaceCriteria.put(element, criteria);
                                break;
                            } default: {
                                final AbstractInterfaceCriteriaElement<?> criteria = InterfaceParsingUtils.parseSimpleInterfaceCriteria(reader, element);
                                interfaceCriteria.put(element, criteria);
View Full Code Here

TOP

Related Classes of org.jboss.as.model.socket.CompoundCriteriaElement

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.