Package org.openbel.framework.ws.model

Examples of org.openbel.framework.ws.model.FindNamespaceEquivalenceResponse


                .getTargetNamespace());

        try {
            final NamespaceValue equivalentNsValue = equivalencerService
                    .findNamespaceEquivalence(sourceNsValue, targetNamespace);
            FindNamespaceEquivalenceResponse response =
                    OBJECT_FACTORY.createFindNamespaceEquivalenceResponse();
            response.setNamespaceValue(equivalentNsValue);
            return response;
        } catch (EquivalencerException e) {
            final String fmt = "error equivalencing %s";
            final String msg = format(fmt, sourceNsValue.getValue());
            throw new RequestException(msg, e);
View Full Code Here

TOP

Related Classes of org.openbel.framework.ws.model.FindNamespaceEquivalenceResponse

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.