/owl-s/src/org/mindswap/owls/grounding/ |
H A D | Grounding.java | 31 import org.mindswap.owls.service.Service;
50 public void setService(Service service);
57 public Service getService();
|
/owl-s/src/impl/owls/service/ |
H A D | ServiceImpl.java | 32 import org.mindswap.owls.service.Service;
35 public class ServiceImpl extends WrappedIndividual implements Service {
44 return (Process) getPropertyAs(OWLS.Service.describedBy, Process.class);
51 return (Profile) getPropertyAs(OWLS.Service.presents, Profile.class);
58 if(hasProperty(OWLS.Service.describedBy, process))
61 setProperty(OWLS.Service.describedBy, process);
69 if(hasProperty(OWLS.Service.presents, profile))
72 setProperty(OWLS.Service.presents, profile);
77 * @see org.mindswap.owls.service.Service#getGrounding()
80 return (Grounding) getPropertyAs(OWLS.Service [all...] |
/owl-s/src/impl/owls/ |
H A D | OWLSTranslator_1_1.java | 46 return ontology.getInstances(OWLS_1_1.Service.Service).size() > 0;
|
/owl-s/src/org/mindswap/owl/ |
H A D | OWLOntology.java | 10 import org.mindswap.owls.service.Service;
45 public Service getService();
|
H A D | OWLKnowledgeBase.java | 14 import org.mindswap.owls.service.Service;
241 public Service readService(String uri) throws URISyntaxException, FileNotFoundException;
242 public Service readService(URI uri) throws FileNotFoundException;
243 public Service readService(Reader in, URI baseURI);
244 public Service readService(InputStream in, URI baseURI);
|
/owl-s/src/org/mindswap/owls/process/ |
H A D | Parameter.java | 33 import org.mindswap.owls.service.Service;
73 public Service getService();
|
H A D | Process.java | 35 import org.mindswap.owls.service.Service;
57 public void setService(Service service);
67 public Service getService();
|
/owl-s/src/impl/owls/grounding/ |
H A D | GroundingImpl.java | 38 import org.mindswap.owls.service.Service;
100 public Service getService() {
101 return (Service) getPropertyAs(OWLS.Service.supportedBy, Service.class);
107 public void setService(Service service) {
108 if(hasProperty(OWLS.Service.supportedBy, service))
111 setProperty(OWLS.Service.supportedBy, service);
116 if (hasProperty(OWLS.Service.supportedBy, getService()))
117 removeProperty(OWLS.Service [all...] |
/owl-s/src/examples/ |
H A D | ServiceExtension.java | 25 import org.mindswap.owls.service.Service;
32 * This example shows how the default Service implementation can be extended to support
49 // Override the default Service converter to return ExtendedService descriptions
50 OWLConfig.addConverter(Service.class, new ExtendedServiceConverter());
59 Service s = ont.createService(URIUtils.createURI(baseURI, "TestService"));
71 System.out.println("Service name: " + service.getLocalName());
80 OWLConfig.addConverter(Service.class, new ExtendedServiceConverter());
88 Service s = (Service) kb.readService("http://www.ifi.unizh.ch/ddis/ont/owl-s/ServiceExtensionTest.owl#");
97 System.out.println("Service nam [all...] |
H A D | CreateSequence.java | 48 import org.mindswap.owls.service.Service;
69 * Service object with a automatically generated Profile. This function assumes that
71 * last one) such that in the resulting Service the output of each service will be fed
76 * @param services List of Service objects
78 * @return The Service which is a Sequence of the given services
80 Service createSequenceService(List services) {
81 Service service = ont.createService(URIUtils.createURI(baseURI, "TestService"));
127 Service s = (Service) services.get(i);
179 Service [all...] |
H A D | ServiceParameterExample.java | 15 import org.mindswap.owls.service.Service;
38 Service service = kb.readService("http://www.daml.org/services/owl-s/1.1/BravoAirService.owl");
52 public static void printProfileInfo( Service s, String reasoner ) {
63 System.out.println("Service name: " + profile.getServiceName());
72 System.out.println("Service Parameter: ");
84 System.out.println("Service Category: ");
|
H A D | Matchmaker.java | 18 import org.mindswap.owls.service.Service;
40 Service outputService;
42 Service inputService;
|
H A D | OWLSValidator.java | 38 import org.mindswap.owls.service.Service;
92 Service service = (Service) services.get(i);
93 out.printBold("Service: ").printLink(service.getURI().toString());
|
/owl-s/src/impl/owls/process/ |
H A D | AtomicProcessImpl.java | 34 import org.mindswap.owls.service.Service;
55 Service service = getService();
|
H A D | ProcessImpl.java | 51 import org.mindswap.owls.service.Service;
68 public Service getService() {
69 return (Service) getPropertyAs(OWLS.Service.describes, Service.class);
72 public void setService(Service service) {
73 if(hasProperty(OWLS.Service.describes, service))
76 setProperty(OWLS.Service.describes, service);
81 if(hasProperty(OWLS.Service.describes, getService()))
82 removeProperty(OWLS.Service [all...] |
/owl-s/src/org/mindswap/owls/validator/ |
H A D | OWLSValidatorReport.java | 9 import org.mindswap.owls.service.Service; 47 Service aService = (Service)key; 50 theOut.println("Service:\t"+aService);
|
H A D | OWLSValidator.java | 48 import org.mindswap.owls.service.Service;
165 Service aService = (Service)servIter.next();
172 private void validateService(Service theService)
174 if (theService.getProperties(OWLS.Service.describedBy).size() > 1)
196 private void validateProcess(Service theService, Process theProcess)
273 private void validateLocal(Service theService, Local theLocal)
278 private void validateInput(Service theService, Input theInput)
283 private void validateOutput(Service theService, Output theOutput)
288 private void validateParameter(Service theServic [all...] |
/owl-s/lib/xsdlib/ |
H A D | relaxngDatatype.jar | META-INF/ org/ org/relaxng/ org/relaxng/datatype/ org/relaxng/datatype/Datatype.class <Unknown> package org. ... |
/owl-s/src/org/mindswap/owls/service/ |
H A D | Service.java | 39 * OWL-S concept: http://www.daml.org/services/owl-s/1.0/Service.owl#Service
44 public interface Service extends OWLIndividual {
interface in inherits:OWLIndividual 47 * Return the Profile that belongs to this Service. Multiple profiles
|
/owl-s/src/impl/owls/profile/ |
H A D | ProfileImpl.java | 52 import org.mindswap.owls.service.Service;
70 public Service getService() {
71 return (Service) getPropertyAs(OWLS.Service.presentedBy, Service.class);
176 public void setService(Service service) {
177 if(hasProperty(OWLS.Service.presentedBy, service))
180 setProperty(OWLS.Service.presentedBy, service);
364 if (hasProperty(OWLS.Service.presentedBy, getService()))
365 removeProperty(OWLS.Service [all...] |
/owl-s/src/impl/jena/ |
H A D | OWLKnowledgeBaseImpl.java | 36 import org.mindswap.owls.service.Service;
477 public Service readService(String uri) throws FileNotFoundException, URISyntaxException {
481 public Service readService(URI uri) throws FileNotFoundException {
487 public Service readService(Reader in, URI baseURI) {
493 public Service readService(InputStream in, URI baseURI) {
523 * pulled down from OWLModelImpl and added support for subclasses of Service:service
527 inds.addAll(getInstances(OWLS.Service.Service));
529 Iterator iter = getSubClasses(OWLS.Service.Service, fals [all...] |
/owl-s/src/org/mindswap/owls/profile/ |
H A D | Profile.java | 43 import org.mindswap.owls.service.Service;
59 public Service getService();
66 public void setService(Service service);
|
/owl-s/src/test/ |
H A D | RemovalTests.java | 16 import org.mindswap.owls.service.Service;
43 Service service;
80 Service service = kb.createService(URIUtils.createURI(uri + "Service"));
|
/owl-s/src/impl/owls/process/parameter/ |
H A D | ParameterImpl.java | 41 import org.mindswap.owls.service.Service;
92 public Service getService() {
|
/owl-s/src/org/mindswap/wsdl/ |
H A D | WSDLService.java | 37 import javax.wsdl.Service;
100 Service service = selectService(serviceNS, serviceName);
101 org.apache.axis.client.Service dpf =
102 new org.apache.axis.client.Service(wsdlParser, service.getQName());
204 private Service selectService(String serviceNS, String serviceName)
|