com.sap.sdm.api.remote
Interface ComponentVersionHandlingRules


public interface ComponentVersionHandlingRules

All possible int and String represantations for ComponentVersionHandlingRule.

Version:
1.0
See Also:
ComponentVersionHandlingRule

Field Summary
static int UPDATE_ALL_VERSIONS
          An int representation of the ComponentVersionHandlingRule UPDATE_ALL_VERSIONS.
static java.lang.String UPDATE_ALL_VERSIONS_S
          An int representation of the ComponentVersionHandlingRule UPDATE_ALL_VERSIONS.
static int UPDATE_LOWER_VERSIONS_ONLY
          An int representation of the ComponentVersionHandlingRule UPDATE_LOWER_VERSIONS_ONLY.
static java.lang.String UPDATE_LOWER_VERSIONS_ONLY_S
          A String representation of the ComponentVersionHandlingRule UPDATE_LOWER_VERSIONS_ONLY.
static int UPDATE_SAME_AND_LOWER_VERSIONS_ONLY
          An int representation of the ComponentVersionHandlingRule UPDATE_SAME_AND_LOWER_VERSIONS_ONLY.
static java.lang.String UPDATE_SAME_AND_LOWER_VERSIONS_ONLY_S
          An int representation of the ComponentVersionHandlingRule UPDATE_SAME_AND_LOWER_VERSIONS_ONLY.
 

Field Detail

UPDATE_ALL_VERSIONS

public static final int UPDATE_ALL_VERSIONS
An int representation of the ComponentVersionHandlingRule UPDATE_ALL_VERSIONS. This rule means that all versions of a DC are accepted for deployment. In detail: if a DC A is deployed with version x it is possible to deploy DC A with version y<x, y=x and y>x.

UPDATE_SAME_AND_LOWER_VERSIONS_ONLY

public static final int UPDATE_SAME_AND_LOWER_VERSIONS_ONLY
An int representation of the ComponentVersionHandlingRule UPDATE_SAME_AND_LOWER_VERSIONS_ONLY. This rule means that versions of a DC A are only accepted for deployment if A was not deployed with a higher version before. In detail: if a DC A is deployed with version x it is possible to deploy DC A with version y=x and y>x. It is impossible to deploy DC with version y<x.

UPDATE_LOWER_VERSIONS_ONLY

public static final int UPDATE_LOWER_VERSIONS_ONLY
An int representation of the ComponentVersionHandlingRule UPDATE_LOWER_VERSIONS_ONLY. This rule means that versions of a DC A are only accepted for deployment if A was not deployed with a higher or the same version before. In detail: if a DC A is deployed with version x it is possible to deploy DC A with version y>x. It is impossible to deploy DC with version y<x and y=x.

UPDATE_ALL_VERSIONS_S

public static final java.lang.String UPDATE_ALL_VERSIONS_S
An int representation of the ComponentVersionHandlingRule UPDATE_ALL_VERSIONS. This rule means that all versions of a DC are accepted for deployment. In detail: if a DC A is deployed with version x it is possible to deploy DC A with version y<x, y=x and y>x.

UPDATE_SAME_AND_LOWER_VERSIONS_ONLY_S

public static final java.lang.String UPDATE_SAME_AND_LOWER_VERSIONS_ONLY_S
An int representation of the ComponentVersionHandlingRule UPDATE_SAME_AND_LOWER_VERSIONS_ONLY. This rule means that versions of a DC A are only accepted for deployment if A was not deployed with a higher version before. In detail: if a DC A is deployed with version x it is possible to deploy DC A with version y=x and y>x. It is impossible to deploy DC with version y<x.

UPDATE_LOWER_VERSIONS_ONLY_S

public static final java.lang.String UPDATE_LOWER_VERSIONS_ONLY_S
A String representation of the ComponentVersionHandlingRule UPDATE_LOWER_VERSIONS_ONLY. This rule means that versions of a DC A are only accepted for deployment if A was not deployed with a higher or the same version before. In detail: if a DC A is deployed with version x it is possible to deploy DC A with version y>x. It is impossible to deploy DC with version y<x and y=x.