| 14 | Integer RESOURCE_ROOT_ID = 1; |
| 15 | |
| 16 | interface Order { |
| 17 | String DEFAULT_ORDER_TYPE = "desc"; |
| 18 | |
| 19 | String[] ORDER_TYPE = new String[]{"desc", "asc", "DESC", "ASC"}; |
| 20 | } |
| 21 | |
| 22 | interface FinishStatus { |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected