Interface ConfigurationPropertyQuery
-
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<ConfigurationPropertyQuery,ConfigurationProperty>
- All Known Implementing Classes:
ConfigurationPropertyQueryImpl
public interface ConfigurationPropertyQuery extends org.flowable.common.engine.api.query.Query<ConfigurationPropertyQuery,ConfigurationProperty>
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationPropertyQuerydescription(java.lang.String description)Query for configuration properties with the given descriptionConfigurationPropertyQueryid(java.lang.String id)Query for configuration properties with the given idConfigurationPropertyQueryname(java.lang.String name)Query for configuration properties with the given nameConfigurationPropertyQuerynamespace(java.lang.String namespace)Query for configuration properties with the given namespaceConfigurationPropertyQueryownerUser(java.lang.String userId)Query for configuration properties owned by the user with the given id.ConfigurationPropertyQuerytenantId(java.lang.String tenantId)Query for configuration properties with the given tenant id
-
-
-
Method Detail
-
id
ConfigurationPropertyQuery id(java.lang.String id)
Query for configuration properties with the given id
-
namespace
ConfigurationPropertyQuery namespace(java.lang.String namespace)
Query for configuration properties with the given namespace
-
name
ConfigurationPropertyQuery name(java.lang.String name)
Query for configuration properties with the given name
-
description
ConfigurationPropertyQuery description(java.lang.String description)
Query for configuration properties with the given description
-
tenantId
ConfigurationPropertyQuery tenantId(java.lang.String tenantId)
Query for configuration properties with the given tenant id
-
ownerUser
ConfigurationPropertyQuery ownerUser(java.lang.String userId)
Query for configuration properties owned by the user with the given id.- Parameters:
userId- the id of the user that owns the configuration property
-
-