void
|
deleteProperty(ApplicationUser user, EntityPropertyService.DeletePropertyValidationResult validationResult)
Removes the entity property with specified entity's id and entity's property key.
|
PropertyKeys<T>
|
getPropertiesKeys(ApplicationUser user, Long entityId, EntityPropertyOptions options)
Returns the properties keys associated with the specified entity.
|
PropertyKeys<T>
|
getPropertiesKeys(ApplicationUser user, Long entityId)
Returns the properties keys associated with the specified entity.
|
EntityPropertyService.PropertyResult
|
getProperty(ApplicationUser user, Long entityId, String propertyKey)
Returns the JSON property with the specified key from specified entity.
|
EntityPropertyService.PropertyResult
|
getProperty(ApplicationUser user, Long entityId, String propertyKey, EntityPropertyOptions options)
Returns the JSON property with the specified key from specified entity.
|
EntityPropertyService.PropertyResult
|
setProperty(ApplicationUser user, EntityPropertyService.SetPropertyValidationResult propertyValidationResult)
Associates validated property with the entity.
|
EntityPropertyService.DeletePropertyValidationResult
|
validateDeleteProperty(ApplicationUser user, Long entityId, String propertyKey, EntityPropertyOptions options)
Check if it is possible to remove the entity property with specified entity's id and entity's property key.
|
EntityPropertyService.DeletePropertyValidationResult
|
validateDeleteProperty(ApplicationUser user, Long entityId, String propertyKey)
Check if it is possible to remove the entity property with specified entity's id and entity's property key.
|
ErrorCollection
|
validatePropertyInput(EntityPropertyService.PropertyInput propertyInput)
Validates the property's key and property's value without permission checking.
|
EntityPropertyService.SetPropertyValidationResult
|
validateSetProperty(ApplicationUser user, Long entityId, EntityPropertyService.PropertyInput propertyInput, EntityPropertyOptions options)
Checks if the provided entity's property is valid.
|
EntityPropertyService.SetPropertyValidationResult
|
validateSetProperty(ApplicationUser user, Long entityId, EntityPropertyService.PropertyInput propertyInput)
Checks if the provided entity's property is valid.
|