WonMessage.getEnvelopePropertyURIValue
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using won.protocol.message.WonMessage.getEnvelopePropertyURIValue (Showing top 15 results out of 315)

origin: at.researchstudio.sat/won-core

public synchronized URI getForwardedMessageURI() {
  if (this.forwardedMessageURI == null) {
    this.forwardedMessageURI = getEnvelopePropertyURIValue(WONMSG.HAS_FORWARDED_MESSAGE);
  }
  return this.forwardedMessageURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getIsRemoteResponseToMessageURI() {
  if (this.isRemoteResponseToMessageURI == null) {
    this.isRemoteResponseToMessageURI = getEnvelopePropertyURIValue(WONMSG.IS_REMOTE_RESPONSE_TO);
  }
  return this.isRemoteResponseToMessageURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getSenderNeedURI() {
  if (this.senderNeedURI == null) {
    this.senderNeedURI = getEnvelopePropertyURIValue(WONMSG.SENDER_NEED_PROPERTY);
  }
  return this.senderNeedURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getSenderNodeURI() {
  if (this.senderNodeURI == null) {
    this.senderNodeURI = getEnvelopePropertyURIValue(WONMSG.SENDER_NODE_PROPERTY);
  }
  return this.senderNodeURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getReceiverURI() {
  if (this.receiverURI == null) {
    this.receiverURI = getEnvelopePropertyURIValue(WONMSG.RECEIVER_PROPERTY);
  }
  return this.receiverURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getReceiverNodeURI() {
  if (this.receiverNodeURI == null) {
    this.receiverNodeURI = getEnvelopePropertyURIValue(WONMSG.RECEIVER_NODE_PROPERTY);
  }
  return this.receiverNodeURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getReceiverNeedURI() {
  if (this.receiverNeedURI == null) {
    this.receiverNeedURI = getEnvelopePropertyURIValue(WONMSG.RECEIVER_NEED_PROPERTY);
  }
  return this.receiverNeedURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getIsResponseToMessageURI() {
  if (this.isResponseToMessageURI == null) {
    this.isResponseToMessageURI = getEnvelopePropertyURIValue(WONMSG.IS_RESPONSE_TO);
  }
  return this.isResponseToMessageURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getCorrespondingRemoteMessageURI() {
  if (this.correspondingRemoteMessageURI == null) {
    this.correspondingRemoteMessageURI = getEnvelopePropertyURIValue(WONMSG.HAS_CORRESPONDING_REMOTE_MESSAGE);
  }
  return this.correspondingRemoteMessageURI;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getSenderURI() {
  if (this.senderURI == null) {
    this.senderURI = getEnvelopePropertyURIValue(WONMSG.SENDER_PROPERTY);
  }
  return this.senderURI;
}
origin: at.researchstudio.sat/won-node

   @Override
  public <T> T evaluate(Exchange exchange, Class<T> type) {
    WonMessage message = (WonMessage) exchange.getIn().getHeader(header);
    return type.cast(message.getEnvelopePropertyURIValue(property));
  }
}
origin: at.researchstudio.sat/won-core

public synchronized WonMessageType getMessageType() {
  if (this.messageType == null) {
    URI type = getEnvelopePropertyURIValue(WONMSG.HAS_MESSAGE_TYPE_PROPERTY);
    this.messageType = WonMessageType.getWonMessageType(type);
  }
  return this.messageType;
}
origin: at.researchstudio.sat/won-core

public synchronized WonMessageDirection getEnvelopeType() {
  if (this.envelopeType == null) {
    URI type = getEnvelopePropertyURIValue(RDF.type);
    if (type != null) {
      this.envelopeType = WonMessageDirection.getWonMessageDirection(type);
    }
  }
  return this.envelopeType;
}
origin: at.researchstudio.sat/won-core

public synchronized WonMessageType getIsResponseToMessageType() {
  if (this.isResponseToMessageType == null) {
    URI typeURI = getEnvelopePropertyURIValue(WONMSG.IS_RESPONSE_TO_MESSAGE_TYPE);
    if (typeURI != null) {
      this.isResponseToMessageType = WonMessageType.getWonMessageType(typeURI);
    }
  }
  return isResponseToMessageType;
}
origin: at.researchstudio.sat/won-core

public synchronized URI getEnvelopePropertyURIValue(URI propertyURI) {
  Property property = this.completeDataset.getDefaultModel().createProperty(propertyURI.toString());
  return getEnvelopePropertyURIValue(property);
}
won.protocol.messageWonMessagegetEnvelopePropertyURIValue

Popular methods of WonMessage

  • getCompleteDataset
  • getMessageType
  • getMessageURI
  • getSenderNeedURI
  • <init>
  • getContentGraphURIs
  • getCorrespondingRemoteMessageURI
  • getIsResponseToMessageURI
  • getMessageContent
    Creates a copy of the message dataset where all traces of the envelope graph are deleted.
  • getOuterEnvelopeGraphURI
  • getReceiverNeedURI
  • getReceiverNodeURI
  • getReceiverNeedURI,
  • getReceiverNodeURI,
  • getReceiverURI,
  • getSenderURI,
  • addMessageProperty,
  • getEnvelopeType,
  • getInnermostMessageURI,
  • getIsRemoteResponseToMessageURI,
  • getIsResponseToMessageType

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • getResourceAsStream (ClassLoader)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)