Tabnine Logo
GetTaskAssignedAsPotentialOwnerCommand.setFilter
Code IndexAdd Tabnine to your IDE (free)

How to use
setFilter
method
in
org.kie.remote.jaxb.gen.GetTaskAssignedAsPotentialOwnerCommand

Best Java code snippets using org.kie.remote.jaxb.gen.GetTaskAssignedAsPotentialOwnerCommand.setFilter (Showing top 3 results out of 315)

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

@Override
public List<TaskSummary> getTasksAssignedAsPotentialOwnerByStatus( String userId, List<Status> status, String language ) {
  GetTaskAssignedAsPotentialOwnerCommand cmd = new GetTaskAssignedAsPotentialOwnerCommand();
  cmd.setUserId(userId);
  if( status != null ) {
    cmd.getStatuses().addAll(status);
  }
  cmd.setFilter(addLanguageFilter(language));
  return executeCommand(cmd);
}
origin: org.kie.remote/kie-remote-client

@Override
public List<TaskSummary> getTasksAssignedAsPotentialOwner( String userId, String language ) {
  GetTaskAssignedAsPotentialOwnerCommand cmd = new GetTaskAssignedAsPotentialOwnerCommand();
  cmd.setUserId(userId);
  cmd.setFilter(addLanguageFilter(language));
  return executeCommand(cmd);
}
origin: org.kie.remote/kie-remote-client

@Override
public List<TaskSummary> getTasksAssignedAsPotentialOwner( String userId, List<String> groupIds, String language, int firstResult, int maxResults ) {
  GetTaskAssignedAsPotentialOwnerCommand cmd
    = new GetTaskAssignedAsPotentialOwnerCommand();
  cmd.setUserId(userId);
  cmd.getGroupIds().addAll(groupIds);
  QueryFilter filter = new QueryFilter();
  filter.setOffset(firstResult);
  filter.setCount(maxResults);
  filter.setLanguage(language);
  cmd.setFilter(filter);
  return executeCommand(cmd);
}
org.kie.remote.jaxb.genGetTaskAssignedAsPotentialOwnerCommandsetFilter

Javadoc

Sets the value of the filter property.

Popular methods of GetTaskAssignedAsPotentialOwnerCommand

  • <init>
  • setUserId
  • getGroupIds
  • getStatuses
    Gets the value of the statuses property. This accessor method returns a reference to the live list,

Popular in Java

  • Finding current android device location
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getContentResolver (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Collectors (java.util.stream)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • CodeWhisperer alternatives
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