This commit is contained in:
Lucio Lelii 2018-10-03 08:00:46 +00:00
parent ce80417376
commit 7e6d587ffb
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package org.gcube.common.storagehub.model;
import java.util.Arrays;
import java.util.List;
public class Excludes {
public static final List<String> ALL = Arrays.asList(NodeConstants.ACCOUNTING_NAME, NodeConstants.METADATA_NAME, NodeConstants.CONTENT_NAME);
public static final List<String> GET_ONLY_CONTENT = Arrays.asList(NodeConstants.ACCOUNTING_NAME, NodeConstants.METADATA_NAME);
public static final List<String> EXCLUDE_ACCOUNTING = Arrays.asList(NodeConstants.ACCOUNTING_NAME);
}