Searched refs:OWLS (Results 1 - 25 of 59) sorted by relevance

123

/owl-s/src/org/mindswap/owls/vocabulary/
H A DOWLS.java32 public class OWLS extends OWLS_1_1 { class in inherits:OWLS_1_1
/owl-s/src/impl/owls/grounding/
H A DWSDLOperationRefImpl.java12 import org.mindswap.owls.vocabulary.OWLS;
24 setProperty(OWLS.Grounding.operation, op);
28 return getPropertyAsURI(OWLS.Grounding.operation);
35 setProperty(OWLS.Grounding.portType, port);
42 return getPropertyAsURI(OWLS.Grounding.portType);
46 if (hasProperty(OWLS.Grounding.wsdlOperation))
47 removeProperties(OWLS.Grounding.wsdlOperation);
51 if (hasProperty(OWLS.Grounding.portType))
52 removeProperties(OWLS.Grounding.portType);
H A DWSDLMessageMapImpl.java32 import org.mindswap.owls.vocabulary.OWLS;
41 return getPropertyAsString(OWLS.Grounding.wsdlMessagePart);
45 setProperty(OWLS.Grounding.wsdlMessagePart, URI.create(groundingParam));
49 return getPropertyAsString(OWLS.Grounding.xsltTransformationString);
53 setProperty(OWLS.Grounding.xsltTransformationString, xsltTransformation);
57 return (Parameter) getPropertyAs(OWLS.Grounding.owlsParameter, Parameter.class);
61 setProperty(OWLS.Grounding.owlsParameter, param);
H A DGroundingImpl.java40 import org.mindswap.owls.vocabulary.OWLS;
56 OWLIndividualList list = getProperties(OWLS.Grounding.hasAtomicProcessGrounding);
59 if(ind.hasProperty(OWLS.Grounding.owlsProcess, process))
70 OWLIndividualList list = getProperties(OWLS.Grounding.hasAtomicProcessGrounding);
72 // return OWLSFactory.createAtomicGroundingList(getProperties(OWLS.Grounding.hasAtomicProcessGrounding));
81 OWLIndividualList list = getProperties(OWLS.Grounding.hasAtomicProcessGrounding);
84 if(ind.hasProperty(OWLS.Grounding.owlsProcess, process))
95 addProperty(OWLS.Grounding.hasAtomicProcessGrounding, apg);
101 return (Service) getPropertyAs(OWLS.Service.supportedBy, Service.class);
108 if(hasProperty(OWLS
[all...]
H A DAtomicGroundingImpl.java38 import org.mindswap.owls.vocabulary.OWLS;
64 addProperty(OWLS.Grounding.wsdlInput, map);
68 addProperty(OWLS.Grounding.wsdlOutput, map);
75 return (AtomicProcess) getPropertyAs(OWLS.Grounding.owlsProcess, AtomicProcess.class);
82 if(hasProperty(OWLS.Grounding.owlsProcess, process))
85 setProperty(OWLS.Grounding.owlsProcess, process);
H A DUPnPMessageMapImpl.java33 import org.mindswap.owls.vocabulary.OWLS;
50 return getPropertyAsString(OWLS.Grounding.xsltTransformationString);
54 setProperty(OWLS.Grounding.xsltTransformationString, xsltTransformation);
58 return (Parameter) getPropertyAs(OWLS.Grounding.owlsParameter, Parameter.class);
62 setProperty(OWLS.Grounding.owlsParameter, param);
/owl-s/src/impl/owls/profile/
H A DActorImpl.java34 import org.mindswap.owls.vocabulary.OWLS;
49 return getPropertyAsString(OWLS.Actor.name);
53 return getPropertyAsString(OWLS.Actor.title);
57 return getPropertyAsURL(OWLS.Actor.webURL);
61 return getPropertyAsString(OWLS.Actor.email);
65 return getPropertyAsString(OWLS.Actor.phone);
69 return getPropertyAsString(OWLS.Actor.fax);
73 return getPropertyAsString(OWLS.Actor.physicalAddress).trim();
77 setProperty(OWLS.Actor.name, name);
81 setProperty(OWLS
[all...]
H A DServiceCategoryImpl.java32 import org.mindswap.owls.vocabulary.OWLS;
49 return getPropertyAsString(OWLS.Profile.categoryName);
56 return getPropertyAsString(OWLS.Profile.taxonomy);
63 return getPropertyAsString(OWLS.Profile.code);
70 return getPropertyAsString(OWLS.Profile.value);
H A DServiceParameterImpl.java32 import org.mindswap.owls.vocabulary.OWLS;
49 return getPropertyAsString(OWLS.Profile.serviceParameterName);
56 return getProperty(OWLS.Profile.sParameter);
63 setProperty(OWLS.Profile.serviceParameterName, name);
70 setProperty(OWLS.Profile.sParameter, value);
H A DProfileImpl.java53 import org.mindswap.owls.vocabulary.OWLS;
71 return (Service) getPropertyAs(OWLS.Service.presentedBy, Service.class);
78 setProperty(OWLS.Profile.textDescription, desc);
85 return getPropertyAsString(OWLS.Profile.textDescription);
92 return getPropertyAsString(OWLS.Profile.textDescription, lang);
99 return getProperties(OWLS.Profile.textDescription);
103 addProperty(OWLS.Profile.hasInput, input);
107 addProperty(OWLS.Profile.hasOutput, output);
121 addProperty(OWLS.Profile.hasResult, result);
125 setProperty(OWLS
[all...]
/owl-s/src/impl/owls/process/constructs/
H A DRepeatUntilImpl.java10 import org.mindswap.owls.vocabulary.OWLS;
21 return (Condition) getPropertyAs(OWLS.Process.untilCondition, Condition.class);
25 setProperty(OWLS.Process.untilCondition, condition);
29 return (ControlConstruct) getPropertyAs(OWLS.Process.untilProcess, ControlConstruct.class);
33 setProperty(OWLS.Process.untilProcess, component);
41 if (hasProperty(OWLS.Process.untilProcess))
42 removeProperties(OWLS.Process.untilProcess);
H A DRepeatWhileImpl.java10 import org.mindswap.owls.vocabulary.OWLS;
22 return (Condition) getPropertyAs(OWLS.Process.whileCondition, Condition.class);
26 setProperty(OWLS.Process.whileCondition, condition);
30 return (ControlConstruct) getPropertyAs(OWLS.Process.whileProcess, ControlConstruct.class);
34 setProperty(OWLS.Process.whileProcess, component);
42 if (hasProperty(OWLS.Process.whileProcess))
43 removeProperties(OWLS.Process.whileProcess);
H A DForEachImpl.java13 import org.mindswap.owls.vocabulary.OWLS;
25 return (ValueOf) getPropertyAs(OWLS.Process.theList, ValueOf.class);
29 setProperty(OWLS.Process.theList, value);
33 return (Local) getPropertyAs(OWLS.Process.theLoopVar, Local.class);
37 setProperty(OWLS.Process.theLoopVar, var);
41 return (ControlConstruct) getPropertyAs(OWLS.Process.iterateBody, ControlConstruct.class);
45 setProperty(OWLS.Process.iterateBody, component);
61 if (hasProperty(OWLS.Process.iterateBody))
62 removeProperties(OWLS.Process.iterateBody);
H A DIfThenElseImpl.java16 import org.mindswap.owls.vocabulary.OWLS;
27 return (ControlConstruct) getPropertyAs(OWLS.Process.thenP, ControlConstruct.class);
31 return (ControlConstruct) getPropertyAs(OWLS.Process.elseP, ControlConstruct.class);
35 return (Condition) getPropertyAs(OWLS.Process.ifCondition, Condition.class);
39 setProperty(OWLS.Process.ifCondition, condition);
43 setProperty(OWLS.Process.thenP, cc);
47 setProperty(OWLS.Process.elseP, cc);
96 if (hasProperty(OWLS.Process.elseP))
97 removeProperties(OWLS.Process.elseP);
101 if (hasProperty(OWLS
[all...]
/owl-s/src/impl/owls/process/
H A DCompositeProcessImpl.java34 import org.mindswap.owls.vocabulary.OWLS;
49 return (ControlConstruct) getPropertyAs(OWLS.Process.composedOf, ControlConstruct.class);
56 setProperty(OWLS.Process.composedOf, construct);
84 if (hasProperty(OWLS.Process.composedOf))
85 removeProperties(OWLS.Process.composedOf);
H A DSimpleProcessImpl.java11 import org.mindswap.owls.vocabulary.OWLS;
26 return (AtomicProcess) getPropertyAs(OWLS.Process.realizedBy, AtomicProcess.class);
33 return (CompositeProcess) getPropertyAs(OWLS.Process.expandsTo, CompositeProcess.class);
40 setProperty(OWLS.Process.realizedBy, process);
47 setProperty(OWLS.Process.expandsTo, process);
H A DValueOfImpl.java16 import org.mindswap.owls.vocabulary.OWLS;
32 return (Perform) getPropertyAs(OWLS.Process.fromProcess, Perform.class);
39 setProperty(OWLS.Process.fromProcess, perform);
46 return (Parameter) getPropertyAs(OWLS.Process.theVar, Parameter.class);
53 setProperty(OWLS.Process.theVar, param);
57 OWLIndividual uncastedBinding = getIncomingProperty(OWLS.Process.valueSource);
59 if (uncastedBinding.isType(OWLS.Process.InputBinding))
60 binding = new InputBindingImpl(getIncomingProperty(OWLS.Process.valueSource));
61 else if (uncastedBinding.isType(OWLS.Process.OutputBinding))
62 binding = new OutputBindingImpl(getIncomingProperty(OWLS
[all...]
H A DResultImpl.java23 import org.mindswap.owls.vocabulary.OWLS;
34 return (Expression) getPropertyAs(OWLS.Process.hasEffect, Expression.class);
38 return getPropertiesAs(OWLS.Process.hasEffect, Expression.class);
42 setProperty(OWLS.Process.hasEffect, effect);
46 addProperty(OWLS.Process.hasEffect, effect);
66 addProperty(OWLS.Process.withOutput, binding);
70 return OWLSFactory.createOutputBindingList(getProperties(OWLS.Process.withOutput));
74 return OWLSFactory.createParameterList(getProperties(OWLS.Process.hasResultVar));
78 return OWLSFactory.createConditionList(getProperties(OWLS.Process.inCondition));
82 return (Condition) getPropertyAs(OWLS
[all...]
H A DAtomicProcessImpl.java35 import org.mindswap.owls.vocabulary.OWLS;
78 if (getGrounding().hasProperty(OWLS.Grounding.owlsProcess, this))
79 getGrounding().removeProperty(OWLS.Grounding.owlsProcess, this);
/owl-s/src/impl/owls/generic/expression/
H A DExpressionImpl.java33 import org.mindswap.owls.vocabulary.OWLS;
42 // setProperty(OWLS.Expression.expressionLanguage, lang);
46 return (LogicLanguage) getPropertyAs(OWLS.Expression.expressionLanguage, LogicLanguage.class);
50 setProperty(OWLS.Expression.expressionLanguage, lang);
H A DLogicLanguageImpl.java34 import org.mindswap.owls.vocabulary.OWLS;
43 setProperty(OWLS.Expression.refURI, refURI);
47 return getPropertyAsURI(OWLS.Expression.refURI);
/owl-s/src/impl/owls/service/
H A DServiceImpl.java33 import org.mindswap.owls.vocabulary.OWLS;
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);
80 return (Grounding) getPropertyAs(OWLS.Service.supports, Grounding.class);
87 if(hasProperty(OWLS.Service.supports, grounding))
90 setProperty(OWLS
[all...]
/owl-s/src/impl/owls/process/binding/
H A DBindingImpl.java17 import org.mindswap.owls.vocabulary.OWLS;
29 (ParameterValue) getPropertyAs(OWLS.Process.valueSource, ValueOf.class);
32 OWLDataValue dataValue = getProperty(OWLS.Process.valueData);
52 OWLIndividual owlValue = getProperty(OWLS.Process.valueObject);
58 // value = (ParameterValue) getProperty(OWLS.Process.valueForm);
61 // value = (ParameterValue) getPropertyAs(OWLS.Process.valueType, ParameterValue.class);
64 // value = (ParameterValue) getPropertyAs(OWLS.Process.valueSpecifier, ValueOf.class);
67 // value = (ParameterValue) getPropertyAs(OWLS.Process.valueFunction, ValueFunction.class);
78 setProperty(OWLS.Process.valueSource, (ValueOf) paramValue);
82 setProperty(OWLS
[all...]
H A DInputBindingImpl.java10 import org.mindswap.owls.vocabulary.OWLS;
25 setProperty(OWLS.Process.toParam, param);
35 return (Input) getPropertyAs(OWLS.Process.toParam, Input.class);
H A DOutputBindingImpl.java10 import org.mindswap.owls.vocabulary.OWLS;
26 setProperty(OWLS.Process.toParam, param);
37 return (Output) getPropertyAs(OWLS.Process.toParam, Output.class);

Completed in 15 milliseconds

123