Package io.lumify.web.clientapi.model

Examples of io.lumify.web.clientapi.model.ClientApiTermMentionsResponse


            respondWithNotFound(response, String.format("property %s:%s not found on vertex %s", propertyKey, propertyName, vertex.getId()));
            return;
        }

        Iterable<Vertex> termMentions = termMentionRepository.findBySourceGraphVertexAndPropertyKey(graphVertexId, propertyKey, authorizations);
        ClientApiTermMentionsResponse termMentionsResponse = ClientApiConverter.toTermMentionsResponse(termMentions, workspaceId, authorizations);
        respondWithClientApiObject(response, termMentionsResponse);
    }
View Full Code Here

TOP

Related Classes of io.lumify.web.clientapi.model.ClientApiTermMentionsResponse

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.