Package eu.planets_project.ifr.core.storage.api.query

Examples of eu.planets_project.ifr.core.storage.api.query.QueryString


     * @see eu.planets_project.ifr.core.storage.api.DigitalObjectManager#list(java.net.URI, eu.planets_project.ifr.core.storage.api.query.Query)
     */
    public List<URI> list(URI pdURI, Query q) throws QueryValidationException {
        // Query modes:
        if( q instanceof QueryString ) {
            QueryString qs = (QueryString) q;
            try {
                return this.executeQuery( pdURI, qs.getQuery() );
            } catch (IOException e) {
                return null;
            }
        }
        return null;
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.storage.api.query.QueryString

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.