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:
Nazife Basbaz
2019-06-05 16:07:07 +02:00
committed by Jeroen Laverman
parent b8ca7d24c8
commit fde0cbdf16
31 changed files with 237 additions and 136 deletions

View File

@@ -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
*/

View File

@@ -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
}
/**

View File

@@ -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
}
/**

View File

@@ -40,5 +40,5 @@ public enum TargetUpdateStatus {
/**
* Controller registered at SP but no {@link DistributionSet} assigned.
*/
REGISTERED;
REGISTERED
}