Package org.apache.stanbol.rules.base.api

Examples of org.apache.stanbol.rules.base.api.RecipeEliminationException


        // remove the recipe from the TcManager
        try {
            tcManager.deleteTripleCollection(recipeID);
        } catch (NoSuchEntityException e) {
            throw new RecipeEliminationException(e);
        }

        TripleCollection recipeIndexTripleCollection = tcManager.getTriples(new UriRef(recipeIndexLocation));
        Triple triple = new TripleImpl(recipeID, RDF.type, Symbols.Recipe);
        recipeIndexTripleCollection.remove(triple);
View Full Code Here

TOP

Related Classes of org.apache.stanbol.rules.base.api.RecipeEliminationException

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.