Class ProcessInstanceQueryDto

java.lang.Object
org.camunda.community.rest.client.dto.ProcessInstanceQueryDto

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-06-04T13:43:01.451833574Z[Etc/UTC]") public class ProcessInstanceQueryDto extends Object
A process instance query which defines a group of process instances
  • Field Details

  • Constructor Details

    • ProcessInstanceQueryDto

      public ProcessInstanceQueryDto()
  • Method Details

    • deploymentId

      public ProcessInstanceQueryDto deploymentId(String deploymentId)
    • getDeploymentId

      @Nullable public String getDeploymentId()
      Filter by the deployment the id belongs to.
      Returns:
      deploymentId
    • getDeploymentId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getDeploymentId_JsonNullable()
    • setDeploymentId_JsonNullable

      public void setDeploymentId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> deploymentId)
    • setDeploymentId

      public void setDeploymentId(String deploymentId)
    • processDefinitionId

      public ProcessInstanceQueryDto processDefinitionId(String processDefinitionId)
    • getProcessDefinitionId

      @Nullable public String getProcessDefinitionId()
      Filter by the process definition the instances run on.
      Returns:
      processDefinitionId
    • getProcessDefinitionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionId_JsonNullable()
    • setProcessDefinitionId_JsonNullable

      public void setProcessDefinitionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionId)
    • setProcessDefinitionId

      public void setProcessDefinitionId(String processDefinitionId)
    • processDefinitionKey

      public ProcessInstanceQueryDto processDefinitionKey(String processDefinitionKey)
    • getProcessDefinitionKey

      @Nullable public String getProcessDefinitionKey()
      Filter by the key of the process definition the instances run on.
      Returns:
      processDefinitionKey
    • getProcessDefinitionKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionKey_JsonNullable()
    • setProcessDefinitionKey_JsonNullable

      public void setProcessDefinitionKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionKey)
    • setProcessDefinitionKey

      public void setProcessDefinitionKey(String processDefinitionKey)
    • processDefinitionKeyIn

      public ProcessInstanceQueryDto processDefinitionKeyIn(List<String> processDefinitionKeyIn)
    • addProcessDefinitionKeyInItem

      public ProcessInstanceQueryDto addProcessDefinitionKeyInItem(String processDefinitionKeyInItem)
    • getProcessDefinitionKeyIn

      @Nullable public List<String> getProcessDefinitionKeyIn()
      Filter by a list of process definition keys. A process instance must have one of the given process definition keys. Must be a JSON array of Strings.
      Returns:
      processDefinitionKeyIn
    • getProcessDefinitionKeyIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getProcessDefinitionKeyIn_JsonNullable()
    • setProcessDefinitionKeyIn_JsonNullable

      public void setProcessDefinitionKeyIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> processDefinitionKeyIn)
    • setProcessDefinitionKeyIn

      public void setProcessDefinitionKeyIn(List<String> processDefinitionKeyIn)
    • processDefinitionKeyNotIn

      public ProcessInstanceQueryDto processDefinitionKeyNotIn(List<String> processDefinitionKeyNotIn)
    • addProcessDefinitionKeyNotInItem

      public ProcessInstanceQueryDto addProcessDefinitionKeyNotInItem(String processDefinitionKeyNotInItem)
    • getProcessDefinitionKeyNotIn

      @Nullable public List<String> getProcessDefinitionKeyNotIn()
      Exclude instances by a list of process definition keys. A process instance must not have one of the given process definition keys. Must be a JSON array of Strings.
      Returns:
      processDefinitionKeyNotIn
    • getProcessDefinitionKeyNotIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getProcessDefinitionKeyNotIn_JsonNullable()
    • setProcessDefinitionKeyNotIn_JsonNullable

      public void setProcessDefinitionKeyNotIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> processDefinitionKeyNotIn)
    • setProcessDefinitionKeyNotIn

      public void setProcessDefinitionKeyNotIn(List<String> processDefinitionKeyNotIn)
    • businessKey

      public ProcessInstanceQueryDto businessKey(String businessKey)
    • getBusinessKey

      @Nullable public String getBusinessKey()
      Filter by process instance business key.
      Returns:
      businessKey
    • getBusinessKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getBusinessKey_JsonNullable()
    • setBusinessKey_JsonNullable

      public void setBusinessKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> businessKey)
    • setBusinessKey

      public void setBusinessKey(String businessKey)
    • businessKeyLike

      public ProcessInstanceQueryDto businessKeyLike(String businessKeyLike)
    • getBusinessKeyLike

      @Nullable public String getBusinessKeyLike()
      Filter by process instance business key that the parameter is a substring of.
      Returns:
      businessKeyLike
    • getBusinessKeyLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getBusinessKeyLike_JsonNullable()
    • setBusinessKeyLike_JsonNullable

      public void setBusinessKeyLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> businessKeyLike)
    • setBusinessKeyLike

      public void setBusinessKeyLike(String businessKeyLike)
    • caseInstanceId

      public ProcessInstanceQueryDto caseInstanceId(String caseInstanceId)
    • getCaseInstanceId

      @Nullable public String getCaseInstanceId()
      Filter by case instance id.
      Returns:
      caseInstanceId
    • getCaseInstanceId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCaseInstanceId_JsonNullable()
    • setCaseInstanceId_JsonNullable

      public void setCaseInstanceId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> caseInstanceId)
    • setCaseInstanceId

      public void setCaseInstanceId(String caseInstanceId)
    • superProcessInstance

      public ProcessInstanceQueryDto superProcessInstance(String superProcessInstance)
    • getSuperProcessInstance

      @Nullable public String getSuperProcessInstance()
      Restrict query to all process instances that are sub process instances of the given process instance. Takes a process instance id.
      Returns:
      superProcessInstance
    • getSuperProcessInstance_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getSuperProcessInstance_JsonNullable()
    • setSuperProcessInstance_JsonNullable

      public void setSuperProcessInstance_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> superProcessInstance)
    • setSuperProcessInstance

      public void setSuperProcessInstance(String superProcessInstance)
    • subProcessInstance

      public ProcessInstanceQueryDto subProcessInstance(String subProcessInstance)
    • getSubProcessInstance

      @Nullable public String getSubProcessInstance()
      Restrict query to all process instances that have the given process instance as a sub process instance. Takes a process instance id.
      Returns:
      subProcessInstance
    • getSubProcessInstance_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getSubProcessInstance_JsonNullable()
    • setSubProcessInstance_JsonNullable

      public void setSubProcessInstance_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> subProcessInstance)
    • setSubProcessInstance

      public void setSubProcessInstance(String subProcessInstance)
    • superCaseInstance

      public ProcessInstanceQueryDto superCaseInstance(String superCaseInstance)
    • getSuperCaseInstance

      @Nullable public String getSuperCaseInstance()
      Restrict query to all process instances that are sub process instances of the given case instance. Takes a case instance id.
      Returns:
      superCaseInstance
    • getSuperCaseInstance_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getSuperCaseInstance_JsonNullable()
    • setSuperCaseInstance_JsonNullable

      public void setSuperCaseInstance_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> superCaseInstance)
    • setSuperCaseInstance

      public void setSuperCaseInstance(String superCaseInstance)
    • subCaseInstance

      public ProcessInstanceQueryDto subCaseInstance(String subCaseInstance)
    • getSubCaseInstance

      @Nullable public String getSubCaseInstance()
      Restrict query to all process instances that have the given case instance as a sub case instance. Takes a case instance id.
      Returns:
      subCaseInstance
    • getSubCaseInstance_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getSubCaseInstance_JsonNullable()
    • setSubCaseInstance_JsonNullable

      public void setSubCaseInstance_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> subCaseInstance)
    • setSubCaseInstance

      public void setSubCaseInstance(String subCaseInstance)
    • active

      public ProcessInstanceQueryDto active(Boolean active)
    • getActive

      @Nullable public Boolean getActive()
      Only include active process instances. Value may only be true, as false is the default behavior.
      Returns:
      active
    • getActive_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getActive_JsonNullable()
    • setActive_JsonNullable

      public void setActive_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> active)
    • setActive

      public void setActive(Boolean active)
    • suspended

      public ProcessInstanceQueryDto suspended(Boolean suspended)
    • getSuspended

      @Nullable public Boolean getSuspended()
      Only include suspended process instances. Value may only be true, as false is the default behavior.
      Returns:
      suspended
    • getSuspended_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getSuspended_JsonNullable()
    • setSuspended_JsonNullable

      public void setSuspended_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> suspended)
    • setSuspended

      public void setSuspended(Boolean suspended)
    • processInstanceIds

      public ProcessInstanceQueryDto processInstanceIds(List<String> processInstanceIds)
    • addProcessInstanceIdsItem

      public ProcessInstanceQueryDto addProcessInstanceIdsItem(String processInstanceIdsItem)
    • getProcessInstanceIds

      @Nullable public List<String> getProcessInstanceIds()
      Filter by a list of process instance ids. Must be a JSON array of Strings.
      Returns:
      processInstanceIds
    • getProcessInstanceIds_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getProcessInstanceIds_JsonNullable()
    • setProcessInstanceIds_JsonNullable

      public void setProcessInstanceIds_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> processInstanceIds)
    • setProcessInstanceIds

      public void setProcessInstanceIds(List<String> processInstanceIds)
    • withIncident

      public ProcessInstanceQueryDto withIncident(Boolean withIncident)
    • getWithIncident

      @Nullable public Boolean getWithIncident()
      Filter by presence of incidents. Selects only process instances that have an incident.
      Returns:
      withIncident
    • getWithIncident_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getWithIncident_JsonNullable()
    • setWithIncident_JsonNullable

      public void setWithIncident_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> withIncident)
    • setWithIncident

      public void setWithIncident(Boolean withIncident)
    • incidentId

      public ProcessInstanceQueryDto incidentId(String incidentId)
    • getIncidentId

      @Nullable public String getIncidentId()
      Filter by the incident id.
      Returns:
      incidentId
    • getIncidentId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getIncidentId_JsonNullable()
    • setIncidentId_JsonNullable

      public void setIncidentId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> incidentId)
    • setIncidentId

      public void setIncidentId(String incidentId)
    • incidentType

      public ProcessInstanceQueryDto incidentType(String incidentType)
    • getIncidentType

      @Nullable public String getIncidentType()
      Filter by the incident type. See the User Guide for a list of incident types.
      Returns:
      incidentType
    • getIncidentType_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getIncidentType_JsonNullable()
    • setIncidentType_JsonNullable

      public void setIncidentType_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> incidentType)
    • setIncidentType

      public void setIncidentType(String incidentType)
    • incidentMessage

      public ProcessInstanceQueryDto incidentMessage(String incidentMessage)
    • getIncidentMessage

      @Nullable public String getIncidentMessage()
      Filter by the incident message. Exact match.
      Returns:
      incidentMessage
    • getIncidentMessage_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getIncidentMessage_JsonNullable()
    • setIncidentMessage_JsonNullable

      public void setIncidentMessage_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> incidentMessage)
    • setIncidentMessage

      public void setIncidentMessage(String incidentMessage)
    • incidentMessageLike

      public ProcessInstanceQueryDto incidentMessageLike(String incidentMessageLike)
    • getIncidentMessageLike

      @Nullable public String getIncidentMessageLike()
      Filter by the incident message that the parameter is a substring of.
      Returns:
      incidentMessageLike
    • getIncidentMessageLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getIncidentMessageLike_JsonNullable()
    • setIncidentMessageLike_JsonNullable

      public void setIncidentMessageLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> incidentMessageLike)
    • setIncidentMessageLike

      public void setIncidentMessageLike(String incidentMessageLike)
    • tenantIdIn

      public ProcessInstanceQueryDto tenantIdIn(List<String> tenantIdIn)
    • addTenantIdInItem

      public ProcessInstanceQueryDto addTenantIdInItem(String tenantIdInItem)
    • getTenantIdIn

      @Nullable public List<String> getTenantIdIn()
      Filter by a list of tenant ids. A process instance must have one of the given tenant ids. Must be a JSON array of Strings.
      Returns:
      tenantIdIn
    • getTenantIdIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getTenantIdIn_JsonNullable()
    • setTenantIdIn_JsonNullable

      public void setTenantIdIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> tenantIdIn)
    • setTenantIdIn

      public void setTenantIdIn(List<String> tenantIdIn)
    • withoutTenantId

      public ProcessInstanceQueryDto withoutTenantId(Boolean withoutTenantId)
    • getWithoutTenantId

      @Nullable public Boolean getWithoutTenantId()
      Only include process instances which belong to no tenant. Value may only be true, as false is the default behavior.
      Returns:
      withoutTenantId
    • getWithoutTenantId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getWithoutTenantId_JsonNullable()
    • setWithoutTenantId_JsonNullable

      public void setWithoutTenantId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> withoutTenantId)
    • setWithoutTenantId

      public void setWithoutTenantId(Boolean withoutTenantId)
    • processDefinitionWithoutTenantId

      public ProcessInstanceQueryDto processDefinitionWithoutTenantId(Boolean processDefinitionWithoutTenantId)
    • getProcessDefinitionWithoutTenantId

      @Nullable public Boolean getProcessDefinitionWithoutTenantId()
      Only include process instances which process definition has no tenant id.
      Returns:
      processDefinitionWithoutTenantId
    • getProcessDefinitionWithoutTenantId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getProcessDefinitionWithoutTenantId_JsonNullable()
    • setProcessDefinitionWithoutTenantId_JsonNullable

      public void setProcessDefinitionWithoutTenantId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> processDefinitionWithoutTenantId)
    • setProcessDefinitionWithoutTenantId

      public void setProcessDefinitionWithoutTenantId(Boolean processDefinitionWithoutTenantId)
    • activityIdIn

      public ProcessInstanceQueryDto activityIdIn(List<String> activityIdIn)
    • addActivityIdInItem

      public ProcessInstanceQueryDto addActivityIdInItem(String activityIdInItem)
    • getActivityIdIn

      @Nullable public List<String> getActivityIdIn()
      Filter by a list of activity ids. A process instance must currently wait in a leaf activity with one of the given activity ids.
      Returns:
      activityIdIn
    • getActivityIdIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getActivityIdIn_JsonNullable()
    • setActivityIdIn_JsonNullable

      public void setActivityIdIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> activityIdIn)
    • setActivityIdIn

      public void setActivityIdIn(List<String> activityIdIn)
    • rootProcessInstances

      public ProcessInstanceQueryDto rootProcessInstances(Boolean rootProcessInstances)
    • getRootProcessInstances

      @Nullable public Boolean getRootProcessInstances()
      Restrict the query to all process instances that are top level process instances.
      Returns:
      rootProcessInstances
    • getRootProcessInstances_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getRootProcessInstances_JsonNullable()
    • setRootProcessInstances_JsonNullable

      public void setRootProcessInstances_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> rootProcessInstances)
    • setRootProcessInstances

      public void setRootProcessInstances(Boolean rootProcessInstances)
    • leafProcessInstances

      public ProcessInstanceQueryDto leafProcessInstances(Boolean leafProcessInstances)
    • getLeafProcessInstances

      @Nullable public Boolean getLeafProcessInstances()
      Restrict the query to all process instances that are leaf instances. (i.e. don't have any sub instances)
      Returns:
      leafProcessInstances
    • getLeafProcessInstances_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getLeafProcessInstances_JsonNullable()
    • setLeafProcessInstances_JsonNullable

      public void setLeafProcessInstances_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> leafProcessInstances)
    • setLeafProcessInstances

      public void setLeafProcessInstances(Boolean leafProcessInstances)
    • variables

    • addVariablesItem

      public ProcessInstanceQueryDto addVariablesItem(VariableQueryParameterDto variablesItem)
    • getVariables

      @Nullable public List<VariableQueryParameterDto> getVariables()
      A JSON array to only include process instances that have variables with certain values. The array consists of objects with the three properties `name`, `operator` and `value`. `name` (String) is the variable name, `operator` (String) is the comparison operator to be used and `value` the variable value. The `value` may be String, Number or Boolean. Valid operator values are: `eq` - equal to; `neq` - not equal to; `gt` - greater than; `gteq` - greater than or equal to; `lt` - lower than; `lteq` - lower than or equal to; `like`.
      Returns:
      variables
    • getVariables_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<VariableQueryParameterDto>> getVariables_JsonNullable()
    • setVariables_JsonNullable

      public void setVariables_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<VariableQueryParameterDto>> variables)
    • setVariables

      public void setVariables(List<VariableQueryParameterDto> variables)
    • variableNamesIgnoreCase

      public ProcessInstanceQueryDto variableNamesIgnoreCase(Boolean variableNamesIgnoreCase)
    • getVariableNamesIgnoreCase

      @Nullable public Boolean getVariableNamesIgnoreCase()
      Match all variable names in this query case-insensitively. If set to true variableName and variablename are treated as equal.
      Returns:
      variableNamesIgnoreCase
    • getVariableNamesIgnoreCase_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getVariableNamesIgnoreCase_JsonNullable()
    • setVariableNamesIgnoreCase_JsonNullable

      public void setVariableNamesIgnoreCase_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> variableNamesIgnoreCase)
    • setVariableNamesIgnoreCase

      public void setVariableNamesIgnoreCase(Boolean variableNamesIgnoreCase)
    • variableValuesIgnoreCase

      public ProcessInstanceQueryDto variableValuesIgnoreCase(Boolean variableValuesIgnoreCase)
    • getVariableValuesIgnoreCase

      @Nullable public Boolean getVariableValuesIgnoreCase()
      Match all variable values in this query case-insensitively. If set to true variableValue and variablevalue are treated as equal.
      Returns:
      variableValuesIgnoreCase
    • getVariableValuesIgnoreCase_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getVariableValuesIgnoreCase_JsonNullable()
    • setVariableValuesIgnoreCase_JsonNullable

      public void setVariableValuesIgnoreCase_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> variableValuesIgnoreCase)
    • setVariableValuesIgnoreCase

      public void setVariableValuesIgnoreCase(Boolean variableValuesIgnoreCase)
    • orQueries

      public ProcessInstanceQueryDto orQueries(List<ProcessInstanceQueryDto> orQueries)
    • addOrQueriesItem

      public ProcessInstanceQueryDto addOrQueriesItem(ProcessInstanceQueryDto orQueriesItem)
    • getOrQueries

      @Nullable public List<ProcessInstanceQueryDto> getOrQueries()
      A JSON array of nested process instance queries with OR semantics. A process instance matches a nested query if it fulfills at least one of the query's predicates. With multiple nested queries, a process instance must fulfill at least one predicate of each query (Conjunctive Normal Form). All process instance query properties can be used except for: `sorting` See the [User guide](https://docs.camunda.org/manual/7.21/user-guide/process-engine/process-engine-api/#or-queries) for more information about OR queries.
      Returns:
      orQueries
    • getOrQueries_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<ProcessInstanceQueryDto>> getOrQueries_JsonNullable()
    • setOrQueries_JsonNullable

      public void setOrQueries_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<ProcessInstanceQueryDto>> orQueries)
    • setOrQueries

      public void setOrQueries(List<ProcessInstanceQueryDto> orQueries)
    • sorting

    • addSortingItem

      public ProcessInstanceQueryDto addSortingItem(ProcessInstanceQueryDtoSortingInner sortingItem)
    • getSorting

      Apply sorting of the result
      Returns:
      sorting
    • getSorting_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<ProcessInstanceQueryDtoSortingInner>> getSorting_JsonNullable()
    • setSorting_JsonNullable

      public void setSorting_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<ProcessInstanceQueryDtoSortingInner>> sorting)
    • setSorting

      public void setSorting(List<ProcessInstanceQueryDtoSortingInner> sorting)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toUrlQueryString

      public String toUrlQueryString()
      Convert the instance into URL query string.
      Returns:
      URL query string
    • toUrlQueryString

      public String toUrlQueryString(String prefix)
      Convert the instance into URL query string.
      Parameters:
      prefix - prefix of the query string
      Returns:
      URL query string