Package eu.admire.registry.pe.rdf.function

Examples of eu.admire.registry.pe.rdf.function.SimpleRDFFunctionDescriptor


    values1.add(inputTypeDescriptor1);
    values1.add(inputTypeDescriptor2);
    inputElementDescriptor.put(property1, values1);
    URI location = new URI("http://admire.function.examle.org/");

    mFunctionDescriptor = new SimpleRDFFunctionDescriptor(
        functionName, functionInputs, outputTypeDescriptor, location);
  }
View Full Code Here


    values1.add(inputTypeDescriptor1);
    values1.add(inputTypeDescriptor2);
    inputElementDescriptor.put(property1, values1);
    URI location = new URI("http://admire.function.examle.org/");

    SimpleRDFFunctionDescriptor functionDescriptor = new SimpleRDFFunctionDescriptor(
        functionName, functionInputs, outputTypeDescriptor, location);
    registry.registerFunction(functionDescriptor);
    // Assert.assertNotNull(registry.registerProcessingElement(descriptor,
    // ""));
  }
View Full Code Here

        String location = resultset.getString(4);
        if (location != null) {
          functionLocation = new URI(location);
        }
      }
      io = new SimpleRDFFunctionDescriptor(name, inputs, output,
          functionLocation);
    }
    return io;
  }
View Full Code Here

    inputs.put("input2", input2);
    inputs.put("input3", input3);

    FunctionDescriptor function;
    URI location = new URI("http://admire.function.examle.org/");
    function = new SimpleRDFFunctionDescriptor("DummyFunction1", inputs, output, location);
    registry.registerFunction(function);

  }
View Full Code Here

TOP

Related Classes of eu.admire.registry.pe.rdf.function.SimpleRDFFunctionDescriptor

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.