storage-manager-wrapper/src/test/java/org/gcube/contentmanager/storageclient/test/utils/Costants.java

23 lines
651 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.contentmanager.storageclient.test.utils;
2021-08-04 16:16:06 +02:00
import org.gcube.contentmanager.storageclient.wrapper.BackendType;
import org.gcube.contentmanager.storageclient.wrapper.MemoryType;
/**
* @author Roberto Cirillo (ISTI-CNR) 2018
*
*/
public final class Costants {
public static final MemoryType DEFAULT_MEMORY_TYPE = MemoryType.PERSISTENT;
2021-08-04 16:16:06 +02:00
public static final String DEFAULT_SCOPE_STRING="/gcube/devsec/devVRE";//"/gcube/devNext/NextNext";//"/gcube/devsec/devVRE";
public static final String DEFAULT_PASS_PHRASE="this is a phrasethis is a phrase";
public static final BackendType BACKEND_TYPE=BackendType.MongoDB;
}