Remove 'typeName' from ds rsql filtering (#2570)
* Remove 'typeName' from ds rsql filtering Signed-off-by: strailov <Stanislav.Trailov@bosch.io> * add name to sub entity attributes Signed-off-by: strailov <Stanislav.Trailov@bosch.io> * remove formetter on/off Signed-off-by: strailov <Stanislav.Trailov@bosch.io> --------- Signed-off-by: strailov <Stanislav.Trailov@bosch.io>
This commit is contained in:
committed by
GitHub
parent
d2b8e74056
commit
08118f03d4
@@ -20,9 +20,8 @@ import lombok.Getter;
|
||||
@Getter
|
||||
public enum DistributionSetFields implements RsqlQueryField {
|
||||
|
||||
// @formatter:off
|
||||
ID("id"),
|
||||
TYPE("type", "key"),
|
||||
TYPE("type", "key", "name"),
|
||||
NAME("name"),
|
||||
DESCRIPTION("description"),
|
||||
CREATEDAT("createdAt"),
|
||||
@@ -31,10 +30,8 @@ public enum DistributionSetFields implements RsqlQueryField {
|
||||
COMPLETE("complete"),
|
||||
MODULE("modules", SoftwareModuleFields.ID.getJpaEntityFieldName(), SoftwareModuleFields.NAME.getJpaEntityFieldName()),
|
||||
TAG("tags", "name"),
|
||||
TYPENAME("typeName"),
|
||||
METADATA("metadata"),
|
||||
VALID("valid");
|
||||
// @formatter:on
|
||||
|
||||
private final String jpaEntityFieldName;
|
||||
private final List<String> subEntityAttributes;
|
||||
|
||||
Reference in New Issue
Block a user