use of it.unibo.arces.wot.sepa.commons.sparql.Bindings in project SEPA by arces-wot.
the class ITProtocolTest method VerifiedUTF8Update.
@Test
public void VerifiedUTF8Update() {
Update();
final Response response = SubmitQuery(client, TestQueries.UTF8_RESULT_QUERY);
assertFalse(String.valueOf(response.getAsJsonObject()), response.isError());
QueryResponse queryResponse = (QueryResponse) response;
List<Bindings> results = queryResponse.getBindingsResults().getBindings();
assertTrue("Query results empty", results.size() > 0);
Bindings bindings = results.get(0);
assertTrue("Binding variable is not a literal", bindings.isLiteral("o"));
String value = bindings.getBindingValue("o");
assertEquals("Incorrect utf-8 value", "測試", value);
}
use of it.unibo.arces.wot.sepa.commons.sparql.Bindings in project SEPA by arces-wot.
the class ApplicationProfile method updateBindings.
/**
* <pre>"forcedBindings" : {
* "variable_1" : {
* "type" : "literal" ,
* "value" : ""}
* ,
* "variable_2" : {
* "type" : "literal" ,
* "value" : ""}
* ,
* "variable_N" : {
* "type" : "uri" ,
* "value" : ""}
* }</pre>
*/
public Bindings updateBindings(String selectedValue) {
JsonElement elem;
Bindings ret = new Bindings();
if ((elem = doc.get("updates")) != null)
if ((elem = elem.getAsJsonObject().get(selectedValue)) != null)
if ((elem = elem.getAsJsonObject().get("forcedBindings")) != null) {
for (Entry<String, JsonElement> binding : elem.getAsJsonObject().entrySet()) {
JsonObject value = binding.getValue().getAsJsonObject();
RDFTerm bindingValue = null;
if (value.get("type") != null) {
if (value.get("type").getAsString().equals("uri")) {
bindingValue = new RDFTermURI(value.get("value").getAsString());
} else {
bindingValue = new RDFTermLiteral(value.get("value").getAsString());
}
}
ret.addBinding(binding.getKey(), bindingValue);
}
}
return ret;
}
use of it.unibo.arces.wot.sepa.commons.sparql.Bindings in project SEPA by arces-wot.
the class EventListener method startListeningForEvent.
public void startListeningForEvent(String eventURI) throws SEPAProtocolException, SEPASecurityException {
if (allEventListener.containsKey(eventURI))
return;
AllEventListener listener = new AllEventListener(eventURI);
allEventListener.put(eventURI, listener);
Bindings bindings = new Bindings();
bindings.addBinding("event", new RDFTermURI(eventURI));
allEventListener.get(eventURI).subscribe(bindings);
}
use of it.unibo.arces.wot.sepa.commons.sparql.Bindings in project SEPA by arces-wot.
the class ActionPublisher method post.
public void post(String value, String dataTypeURI) {
Bindings bind = new Bindings();
bind.addBinding("action", new RDFTermURI(action));
bind.addBinding("value", new RDFTermLiteral(value));
publisherWithInput.update(bind);
}
use of it.unibo.arces.wot.sepa.commons.sparql.Bindings in project SEPA by arces-wot.
the class ActionPublisher method post.
public void post() {
Bindings bind = new Bindings();
bind.addBinding("action", new RDFTermURI(action));
bind.addBinding("newInstance", new RDFTermURI("wot:" + UUID.randomUUID()));
update(bind);
}
Aggregations