Package org.openbel.framework.ws.model

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


                .getNamespaceValue());

        try {
            final List<NamespaceValue> equivalences = equivalencerService
                    .findEquivalences(sourceNsValue);
            FindEquivalencesResponse response =
                    OBJECT_FACTORY.createFindEquivalencesResponse();
            response.getNamespaceValues().addAll(equivalences);
            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.FindEquivalencesResponse

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.