fix bug: change sql-query in localArtifactRepository (#820)
Also-by: Nazife Basbaz <nazife.basbaz@bosch-si.com> Signed-off-by: Ahmed Sayed <ahmed.sayed@bosch-si.com>
This commit is contained in:
committed by
Jeroen Laverman
parent
b8ca7d24c8
commit
fde0cbdf16
@@ -77,7 +77,7 @@ public interface ArtifactManagement {
|
||||
* @param artifactSha1Hash
|
||||
* no longer needed
|
||||
* @param moduleId
|
||||
* the garbage colelction call is made for
|
||||
* the garbage collection call is made for
|
||||
*
|
||||
* @return <code>true</code> if an binary was actually garbage collected
|
||||
*/
|
||||
|
||||
@@ -150,7 +150,7 @@ public interface Action extends TenantAwareBaseEntity {
|
||||
* Status enum declaration!
|
||||
*
|
||||
*/
|
||||
public enum Status {
|
||||
enum Status {
|
||||
/**
|
||||
* Action is finished successfully for this target.
|
||||
*/
|
||||
@@ -206,14 +206,14 @@ public interface Action extends TenantAwareBaseEntity {
|
||||
* Action has been downloaded by the target and waiting for update to
|
||||
* start.
|
||||
*/
|
||||
DOWNLOADED;
|
||||
DOWNLOADED
|
||||
}
|
||||
|
||||
/**
|
||||
* The action type for this action relation.
|
||||
*
|
||||
*/
|
||||
public enum ActionType {
|
||||
enum ActionType {
|
||||
/**
|
||||
* Forced action execution. Target is advised to executed immediately.
|
||||
*/
|
||||
@@ -234,7 +234,7 @@ public interface Action extends TenantAwareBaseEntity {
|
||||
/**
|
||||
* Target is only advised to download, but not install
|
||||
*/
|
||||
DOWNLOAD_ONLY;
|
||||
DOWNLOAD_ONLY
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -106,7 +106,7 @@ public interface Rollout extends NamedEntity {
|
||||
* State machine for rollout.
|
||||
*
|
||||
*/
|
||||
public enum RolloutStatus {
|
||||
enum RolloutStatus {
|
||||
|
||||
/**
|
||||
* Rollouts is being created.
|
||||
@@ -181,7 +181,7 @@ public interface Rollout extends NamedEntity {
|
||||
* @deprecated legacy status is not used anymore
|
||||
*/
|
||||
@Deprecated
|
||||
ERROR_STARTING;
|
||||
ERROR_STARTING
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -40,5 +40,5 @@ public enum TargetUpdateStatus {
|
||||
/**
|
||||
* Controller registered at SP but no {@link DistributionSet} assigned.
|
||||
*/
|
||||
REGISTERED;
|
||||
REGISTERED
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user