Lines Matching refs:Profile
80 import org.mindswap.owls.profile.Profile;
159 OWLIndividualList list = inputOnt.getInstances(OWLS_1_0.Profile.Profile);
265 Profile profile = createProfile(profileInfo);
310 createCondition(process, inputOnt.getProperties(processInfo, OWLS_1_0.Profile.hasPrecondition));
734 private Profile createProfile(OWLIndividual profileInfo) {
738 return (Profile) translated.castTo(Profile.class);
741 Profile profile = (Profile) translate(profileInfo, Profile.class, OWLS_1_1.Profile.Profile);
743 copyPropertyValues(profileInfo, OWLS_1_0.Profile.serviceName, profile, OWLS_1_1.Profile.serviceName);
745 copyPropertyValues(profileInfo, OWLS_1_0.Profile.textDescription, profile,
746 OWLS_1_1.Profile.textDescription);
751 createCondition(profile, inputOnt.getProperties(profileInfo, OWLS_1_0.Profile.hasPrecondition));
771 private void createServiceParameters(Profile profile, OWLIndividual profileInfo) {
772 Set set = kb.getSubProperties(OWLS_1_0.Profile.serviceParameter);
781 OWLIndividual serviceParamValue = serviceParamInfo.getProperty(OWLS_1_0.Profile.sParameter);
785 serviceParam.addProperty(OWLS_1_1.Profile.sParameter, serviceParamValue);
786 copyPropertyValues(serviceParamInfo, OWLS_1_0.Profile.serviceParameterName, serviceParam, OWLS_1_1.Profile.serviceParameterName);
820 private void createProfileParams(Profile profile, boolean isInput, OWLIndividual profileInfo) {
821 OWLObjectProperty prop = isInput ? OWLS_1_0.Profile.hasInput : OWLS_1_0.Profile.hasOutput;
845 System.out.println(" Profile " + profile.getURI() + "\n" +
1167 OWLIndividual serviceParamValue = serviceParamInfo.getProperty(OWLS_1_0.Profile.sParameter);
1171 serviceParam.addProperty(OWLS_1_1.Profile.sParameter, serviceParamValue);