Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.flexstor.common.constants
Interface VersionControlConstants  view VersionControlConstants download VersionControlConstants.java


public interface VersionControlConstants

Define constants for the Version Control module of FLEX-db.


Field Summary
static java.lang.String COPY_CHILDREN_TO_WORKSPACE
          Name of property to store a boolean value that identifies whether the user wants to copy the children of an asset (not including the default view asset) to the workspace or not.
static int DESKTOP
           
static int FAILURE
           
static int PARTIAL_FAILURE
           
static int SERVER_PRIVATE
           
static int SERVER_PUBLIC
           
static int SUCCESS
           
static java.lang.String TEMP_BASEPATH
          Name of property to store the temporary location to which assets will be copied if the workspace is DESKTOP.
static java.lang.String WORKSPACE_ASSET_PATH
          Name of property to store the full path (not including host or file name) of an asset after it has been copied into the workspace.
static java.lang.String WORKSPACE_BASEPATH
          Name of property to store the base path to the workspace.
static java.lang.String WORKSPACE_HOST
          Name of property to store the name of the host where workspace is or will be located.
static java.lang.String WORKSPACE_NAME
          Name of property to store the name of the workspace.
static java.lang.String WORKSPACE_TRAVERSAL_PATH
          Name of property to store the traversal path for the workspace in the Workspace disguise.
static java.lang.String WORKSPACE_TYPE
          Name of property to store the type of the workspace in the ActionData object.
 

Field Detail

WORKSPACE_TYPE

public static final java.lang.String WORKSPACE_TYPE
Name of property to store the type of the workspace in the ActionData object. The value of this property is an integer representing the type of workspace; see next properties for such values.

See Also:
Constant Field Values

WORKSPACE_NAME

public static final java.lang.String WORKSPACE_NAME
Name of property to store the name of the workspace. The value of this property is a String.

See Also:
Constant Field Values

WORKSPACE_HOST

public static final java.lang.String WORKSPACE_HOST
Name of property to store the name of the host where workspace is or will be located. The value of this property is a String representing the fully qualified name of the host.

See Also:
Constant Field Values

WORKSPACE_BASEPATH

public static final java.lang.String WORKSPACE_BASEPATH
Name of property to store the base path to the workspace. This path does not include the workspace host or the name itself. The value of this property is a String.

See Also:
Constant Field Values

TEMP_BASEPATH

public static final java.lang.String TEMP_BASEPATH
Name of property to store the temporary location to which assets will be copied if the workspace is DESKTOP. In this case, the client also needs to set the WORKSPACE_BASEPATH property which will be used to update the database with the final destination of the assets in the workspace. This property does not contain the host name where temporary assets will be copied. The host name must be specified using the WORKSPACE_HOST property or leave it blank to use the FLEXdbServer host as the host of temporary assets. The value of this property is a String.

See Also:
Constant Field Values

WORKSPACE_ASSET_PATH

public static final java.lang.String WORKSPACE_ASSET_PATH
Name of property to store the full path (not including host or file name) of an asset after it has been copied into the workspace. The client should retrieve this property from the AssetRecordData. The value of this property is a String.

See Also:
Constant Field Values

WORKSPACE_TRAVERSAL_PATH

public static final java.lang.String WORKSPACE_TRAVERSAL_PATH
Name of property to store the traversal path for the workspace in the Workspace disguise. The value of this property is a com.flexstor.common.data.TraversalInfo object.

See Also:
Constant Field Values

COPY_CHILDREN_TO_WORKSPACE

public static final java.lang.String COPY_CHILDREN_TO_WORKSPACE
Name of property to store a boolean value that identifies whether the user wants to copy the children of an asset (not including the default view asset) to the workspace or not. The value of this property is a Boolean instance.

See Also:
Constant Field Values

SERVER_PUBLIC

public static final int SERVER_PUBLIC
See Also:
Constant Field Values

SERVER_PRIVATE

public static final int SERVER_PRIVATE
See Also:
Constant Field Values

DESKTOP

public static final int DESKTOP
See Also:
Constant Field Values

SUCCESS

public static final int SUCCESS
See Also:
Constant Field Values

FAILURE

public static final int FAILURE
See Also:
Constant Field Values

PARTIAL_FAILURE

public static final int PARTIAL_FAILURE
See Also:
Constant Field Values