Package de.uniol.informatik.vlba.matchmaker

Examples of de.uniol.informatik.vlba.matchmaker.MatchmakerService


   * </p>
   *
   * @param url A <code>String</code> containing algorithm name, variant, parameters and query
   */
  SemResource(String url) {
    matchmakerService = new MatchmakerService();
   
    // Remove "match://" from url
    url = url.substring(8);
    //System.out.println("Removed 'match://', left is: " + url);
   
View Full Code Here


/**
* Testbench is used to test MatchmakerService with a matching request.
*/
public class Tesbench {
    public static void main(String[] args){
        MatchmakerService mw = new MatchmakerService();
        String[][] result = mw.match("de.uniol.informatik.vlba.matchmaker.implemented.OWLSMX.2", "http://localhost/queries/1.1/1personbicyclecar_price_service.owls", "min_degree=1:threshold=75");
        System.out.println("#######################");
        System.out.println("#### Result:");
        System.out.println("#######################");
        String[] service;
//        for(Iterator iter = result.iterator();iter.hasNext();){
View Full Code Here

TOP

Related Classes of de.uniol.informatik.vlba.matchmaker.MatchmakerService

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.