Skip to content

Commit

Permalink
Add filter support for type attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaminduR committed Sep 22, 2023
1 parent 9f1af2d commit c5bc577
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public class APIResourceManagementConstants {

public static final String NAME = "name";
public static final String IDENTIFIER = "identifier";
public static final String TYPE = "type";
public static final String BEFORE = "before";
public static final String AFTER = "after";
public static final String EQ = "eq";
Expand All @@ -52,6 +53,7 @@ public class APIResourceManagementConstants {
attributeColumnMap.put(IDENTIFIER, SQLConstants.IDENTIFIER_COLUMN_NAME);
attributeColumnMap.put(BEFORE, SQLConstants.CURSOR_KEY_COLUMN_NAME);
attributeColumnMap.put(AFTER, SQLConstants.CURSOR_KEY_COLUMN_NAME);
attributeColumnMap.put(TYPE, SQLConstants.TYPE_COLUMN_NAME);

scopeAttributeColumnMap.put(NAME, SQLConstants.NAME_COLUMN_NAME);
}
Expand Down

0 comments on commit c5bc577

Please sign in to comment.