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 ConfigurationPropertyQuery
description(java.lang.String description)
Query for configuration properties with the given descriptionConfigurationPropertyQuery
id(java.lang.String id)
Query for configuration properties with the given idConfigurationPropertyQuery
name(java.lang.String name)
Query for configuration properties with the given nameConfigurationPropertyQuery
namespace(java.lang.String namespace)
Query for configuration properties with the given namespaceConfigurationPropertyQuery
ownerUser(java.lang.String userId)
Query for configuration properties owned by the user with the given id.ConfigurationPropertyQuery
tenantId(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
-
-