Package org.openbel.framework.ws.model

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


        try {
            final List<SimplePath> paths = pathFindService.scan(kam,
                    sources, maxSearchDepth);

            final ScanResponse scanResponse = new ScanResponse();
            scanResponse.getPaths().addAll(paths);

            return scanResponse;
        } catch (PathFindServiceException e) {
            final String msg = "error in pathfind scan";
            throw new RequestException(msg, e);
View Full Code Here

TOP

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

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.