congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
QueryCriteria
Code IndexAdd Tabnine to your IDE (free)

How to use
QueryCriteria
in
org.kie.remote.jaxb.gen

Best Java code snippets using org.kie.remote.jaxb.gen.QueryCriteria (Showing top 4 results out of 315)

origin: org.kie.remote/kie-remote-client

/**
 * Create an instance of {@link QueryCriteria }
 * 
 */
public QueryCriteria createQueryCriteria() {
  return new QueryCriteria();
}
origin: org.kie.remote/kie-remote-client

@Override
public List<TaskSummary> getTasksAssignedAsPotentialOwnerByProcessId( String userId, String processId ) {
  org.kie.remote.jaxb.gen.TaskSummaryQueryCommand cmd = new org.kie.remote.jaxb.gen.TaskSummaryQueryCommand();
  cmd.setUserId(userId);
  QueryWhere queryWhere = new QueryWhere();
  cmd.setQueryWhere(queryWhere);
  QueryCriteria criteria = new QueryCriteria();
  criteria.setUnion(false);
  criteria.setFirst(true);
  criteria.setListId(QueryParameterIdentifiers.POTENTIAL_OWNER_ID_LIST);
  criteria.getParameters().add(userId);
  queryWhere.getQueryCriterias().add(criteria);
  criteria = new QueryCriteria();
  criteria.setUnion(false);
  criteria.setListId(QueryParameterIdentifiers.PROCESS_ID_LIST);
  criteria.getParameters().add(processId);
  queryWhere.getQueryCriterias().add(criteria);
  return executeCommand(cmd);
}
origin: org.kie.remote/kie-remote-client

QueryCriteria crit = iter.next();
iter.remove();
moreCriterias.addAll(crit.getCriterias());
if( crit.getParameters().contains(val)
    || crit.getDateParameters().contains(val) ) { 
  return true;
origin: org.kie.remote/kie-remote-jaxb-gen

/**
 * Create an instance of {@link QueryCriteria }
 * 
 */
public QueryCriteria createQueryCriteria() {
  return new QueryCriteria();
}
org.kie.remote.jaxb.genQueryCriteria

Javadoc

Java class for queryCriteria complex type.

The following schema fragment specifies the expected content contained within this class.

 
<complexType name="queryCriteria"> 
<complexContent> 
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
<sequence> 
<element name="parameter" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/> 
<element name="date-parameter" type="{http://www.w3.org/2001/XMLSchema}dateTime" maxOccurs="unbounded" minOccurs="0"/> 
<element name="criteria" type="{}queryCriteria" maxOccurs="unbounded" minOccurs="0"/> 
</sequence> 
<attribute name="listId" type="{http://www.w3.org/2001/XMLSchema}string" /> 
<attribute name="union" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> 
<attribute name="first" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> 
<attribute name="type" type="{}queryCriteriaType" /> 
</restriction> 
</complexContent> 
</complexType> 

Most used methods

  • <init>
  • getParameters
    Gets the value of the parameters property. This accessor method returns a reference to the live list
  • getCriterias
    Gets the value of the criterias property. This accessor method returns a reference to the live list,
  • getDateParameters
    Gets the value of the dateParameters property. This accessor method returns a reference to the live
  • setFirst
    Sets the value of the first property.
  • setListId
    Sets the value of the listId property.
  • setUnion
    Sets the value of the union property.

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • JTextField (javax.swing)
  • 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