Tabnine Logo
ContextRegistration
Code IndexAdd Tabnine to your IDE (free)

How to use
ContextRegistration
in
com.orange.ngsi.model

Best Java code snippets using com.orange.ngsi.model.ContextRegistration (Showing top 2 results out of 315)

origin: com.orange.fiware/ngsi-server

private void checkContextRegistration(ContextRegistration contextRegistration) throws MissingRequestParameterException {
  if (nullOrEmpty(contextRegistration.getProvidingApplication())){
    throw new MissingRequestParameterException("providingApplication", "URI");
  }
  if (contextRegistration.getEntityIdList() != null) {
    for(EntityId entityId: contextRegistration.getEntityIdList()) {
      checkEntityId(entityId);
    }
  }
  if (contextRegistration.getContextRegistrationAttributeList() != null) {
    for(ContextRegistrationAttribute attribute: contextRegistration.getContextRegistrationAttributeList()) {
      checkContextRegistrationAttribute(attribute);
    }
  }
}
origin: com.orange.cepheus/cepheus-ngsi

private void checkContextRegistration(ContextRegistration contextRegistration) throws MissingRequestParameterException {
  if (nullOrEmpty(contextRegistration.getProvidingApplication())){
    throw new MissingRequestParameterException("providingApplication", "URI");
  }
  if (contextRegistration.getEntityIdList() != null) {
    for(EntityId entityId: contextRegistration.getEntityIdList()) {
      checkEntityId(entityId);
    }
  }
  if (contextRegistration.getContextRegistrationAttributeList() != null) {
    for(ContextRegistrationAttribute attribute: contextRegistration.getContextRegistrationAttributeList()) {
      checkContextRegistrationAttribute(attribute);
    }
  }
}
com.orange.ngsi.modelContextRegistration

Javadoc

Created by pborscia on 10/08/2015.

Most used methods

  • getContextRegistrationAttributeList
  • getEntityIdList
  • getProvidingApplication

Popular in Java

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (Timer)
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now