mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixes to get create app working
This commit is contained in:
parent
2e0bacbd18
commit
75008e38b8
@ -137,10 +137,11 @@ public class Util {
|
|||||||
tag.setTagName(rs.getString("APP_TAG"));
|
tag.setTagName(rs.getString("APP_TAG"));
|
||||||
UnrestrictedRole unrestrictedRole = new UnrestrictedRole();
|
UnrestrictedRole unrestrictedRole = new UnrestrictedRole();
|
||||||
unrestrictedRole.setRole(rs.getString("ROLE"));
|
unrestrictedRole.setRole(rs.getString("ROLE"));
|
||||||
if (application.getTags().contains(tag)) {
|
if (application.getTags() != null && application.getTags().contains(tag)) {
|
||||||
application.getTags().add(tag);
|
application.getTags().add(tag);
|
||||||
}
|
}
|
||||||
if (application.getUnrestrictedRoles().contains(unrestrictedRole)) {
|
if (application.getUnrestrictedRoles() != null && application.getUnrestrictedRoles()
|
||||||
|
.contains(unrestrictedRole)) {
|
||||||
application.getUnrestrictedRoles().add(unrestrictedRole);
|
application.getUnrestrictedRoles().add(unrestrictedRole);
|
||||||
}
|
}
|
||||||
iteration++;
|
iteration++;
|
||||||
|
|||||||
@ -66,7 +66,7 @@ public class GenericApplicationReleaseDAOImpl extends AbstractDAOImpl implements
|
|||||||
String sql = "INSERT INTO AP_APP_RELEASE (VERSION,TENANT_ID,UUID,RELEASE_TYPE, PACKAGE_NAME, APP_PRICE,"
|
String sql = "INSERT INTO AP_APP_RELEASE (VERSION,TENANT_ID,UUID,RELEASE_TYPE, PACKAGE_NAME, APP_PRICE,"
|
||||||
+ "STORED_LOCATION, BANNER_LOCATION, SC_1_LOCATION,SC_2_LOCATION,SC_3_LOCATION, APP_HASH_VALUE,"
|
+ "STORED_LOCATION, BANNER_LOCATION, SC_1_LOCATION,SC_2_LOCATION,SC_3_LOCATION, APP_HASH_VALUE,"
|
||||||
+ "SHARED_WITH_ALL_TENANTS, APP_META_INFO,CREATED_BY,AP_APP_ID) "
|
+ "SHARED_WITH_ALL_TENANTS, APP_META_INFO,CREATED_BY,AP_APP_ID) "
|
||||||
+ "VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?);";
|
+ "VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?, ?);";
|
||||||
|
|
||||||
int index = 0;
|
int index = 0;
|
||||||
String generatedColumns[] = {"ID"};
|
String generatedColumns[] = {"ID"};
|
||||||
@ -230,7 +230,7 @@ public class GenericApplicationReleaseDAOImpl extends AbstractDAOImpl implements
|
|||||||
+ " AR.STORED_LOCATION, AR.BANNER_LOCATION, AR.SC_1_LOCATION AS SCREEN_SHOT_1, AR.SC_2_LOCATION AS "
|
+ " AR.STORED_LOCATION, AR.BANNER_LOCATION, AR.SC_1_LOCATION AS SCREEN_SHOT_1, AR.SC_2_LOCATION AS "
|
||||||
+ "SCREEN_SHOT_2, AR.SC_3_LOCATION AS SCREEN_SHOT_3, AR.APP_HASH_VALUE AS HASH_VALUE, "
|
+ "SCREEN_SHOT_2, AR.SC_3_LOCATION AS SCREEN_SHOT_3, AR.APP_HASH_VALUE AS HASH_VALUE, "
|
||||||
+ "AR.SHARED_WITH_ALL_TENANTS AS SHARED, AR.APP_META_INFO, AR.CREATED_BY, AR.CREATED_AT, "
|
+ "AR.SHARED_WITH_ALL_TENANTS AS SHARED, AR.APP_META_INFO, AR.CREATED_BY, AR.CREATED_AT, "
|
||||||
+ "AR.PUBLISHED_BY, AR.PUBLISHED_AT, AR.STARS FROM AP_APP_RELEASE AS "
|
+ "AR.PUBLISHED_BY, AR.PUBLISHED_AT, AR.STARS, AR.RATING FROM AP_APP_RELEASE AS "
|
||||||
+ "AR where AR.AP_APP_ID=(SELECT ID FROM AP_APP WHERE NAME = ? AND TYPE = ? "
|
+ "AR where AR.AP_APP_ID=(SELECT ID FROM AP_APP WHERE NAME = ? AND TYPE = ? "
|
||||||
+ "AND TENANT_ID = ?) AND AR.TENANT_ID = ? ;";
|
+ "AND TENANT_ID = ?) AND AR.TENANT_ID = ? ;";
|
||||||
|
|
||||||
|
|||||||
@ -106,9 +106,10 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
ApplicationRelease applicationRelease;
|
ApplicationRelease applicationRelease;
|
||||||
List<ApplicationRelease> applicationReleases = new ArrayList<>();
|
List<ApplicationRelease> applicationReleases = new ArrayList<>();
|
||||||
try {
|
try {
|
||||||
ConnectionManagerUtil.openDBConnection();
|
ConnectionManagerUtil.getDBConnection();
|
||||||
ConnectionManagerUtil.beginDBTransaction();
|
ConnectionManagerUtil.beginDBTransaction();
|
||||||
MAMDeviceConnectorImpl mamDeviceConnector = new MAMDeviceConnectorImpl();
|
MAMDeviceConnectorImpl mamDeviceConnector = new MAMDeviceConnectorImpl();
|
||||||
|
// Getting the device type details to get device type ID for internal mappings
|
||||||
deviceType = mamDeviceConnector.getDeviceManagementService().getDeviceType(application.getDeviceType());
|
deviceType = mamDeviceConnector.getDeviceManagementService().getDeviceType(application.getDeviceType());
|
||||||
|
|
||||||
if (deviceType == null) {
|
if (deviceType == null) {
|
||||||
@ -116,6 +117,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
ConnectionManagerUtil.rollbackDBTransaction();
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
// Insert to application table
|
||||||
int appId = this.applicationDAO.createApplication(application, deviceType.getId());
|
int appId = this.applicationDAO.createApplication(application, deviceType.getId());
|
||||||
|
|
||||||
if (appId == -1) {
|
if (appId == -1) {
|
||||||
@ -123,13 +125,26 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
ConnectionManagerUtil.rollbackDBTransaction();
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
|
if(log.isDebugEnabled()){
|
||||||
|
log.debug("New Application entry added to AP_APP table. App Id:" + appId);
|
||||||
|
}
|
||||||
if (!application.getTags().isEmpty()) {
|
if (!application.getTags().isEmpty()) {
|
||||||
this.applicationDAO.addTags(application.getTags(), appId, tenantId);
|
this.applicationDAO.addTags(application.getTags(), appId, tenantId);
|
||||||
|
if(log.isDebugEnabled()){
|
||||||
|
log.debug("New tags entry added to AP_APP_TAG table. App Id:" + appId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!application.getUnrestrictedRoles().isEmpty()) {
|
if (!application.getUnrestrictedRoles().isEmpty()) {
|
||||||
application.setIsRestricted(true);
|
application.setIsRestricted(true);
|
||||||
this.visibilityDAO.addUnrestrictedRoles(application.getUnrestrictedRoles(), appId, tenantId);
|
this.visibilityDAO.addUnrestrictedRoles(application.getUnrestrictedRoles(), appId, tenantId);
|
||||||
|
if(log.isDebugEnabled()){
|
||||||
|
log.debug("New restricted roles to app ID mapping added to AP_UNRESTRICTED_ROLE table." +
|
||||||
|
" App Id:" + appId);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if(log.isDebugEnabled()){
|
||||||
|
log.debug("App is not restricted to role. App Id:" + appId);
|
||||||
|
}
|
||||||
application.setIsRestricted(false);
|
application.setIsRestricted(false);
|
||||||
}
|
}
|
||||||
if (application.getApplicationReleases().size() > 1 ){
|
if (application.getApplicationReleases().size() > 1 ){
|
||||||
@ -137,14 +152,22 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
"Invalid payload. Application creating payload should contains one application release, but "
|
"Invalid payload. Application creating payload should contains one application release, but "
|
||||||
+ "the payload contains more than one");
|
+ "the payload contains more than one");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(log.isDebugEnabled()){
|
||||||
|
log.debug("Creating a new release. App Id:" + appId);
|
||||||
|
}
|
||||||
applicationRelease = application.getApplicationReleases().get(0);
|
applicationRelease = application.getApplicationReleases().get(0);
|
||||||
applicationRelease = this.applicationReleaseDAO
|
applicationRelease = this.applicationReleaseDAO
|
||||||
.createRelease(applicationRelease, appId, tenantId);
|
.createRelease(applicationRelease, appId, tenantId);
|
||||||
|
|
||||||
|
if(log.isDebugEnabled()){
|
||||||
|
log.debug("Changing lifecycle state. App Id:" + appId);
|
||||||
|
}
|
||||||
LifecycleState lifecycleState = new LifecycleState();
|
LifecycleState lifecycleState = new LifecycleState();
|
||||||
lifecycleState.setCurrentState(AppLifecycleState.CREATED.toString());
|
lifecycleState.setCurrentState(AppLifecycleState.CREATED.toString());
|
||||||
lifecycleState.setPreviousState(AppLifecycleState.CREATED.toString());
|
lifecycleState.setPreviousState(AppLifecycleState.CREATED.toString());
|
||||||
changeLifecycleState(appId, applicationRelease.getUuid(), lifecycleState);
|
changeLifecycleState(appId, applicationRelease.getUuid(), lifecycleState, false,
|
||||||
|
applicationRelease.getId());
|
||||||
|
|
||||||
applicationRelease.setLifecycleState(lifecycleState);
|
applicationRelease.setLifecycleState(lifecycleState);
|
||||||
applicationReleases.add(applicationRelease);
|
applicationReleases.add(applicationRelease);
|
||||||
@ -161,11 +184,18 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
ConnectionManagerUtil.rollbackDBTransaction();
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
throw new ApplicationManagementException(msg, e);
|
throw new ApplicationManagementException(msg, e);
|
||||||
} catch (DeviceManagementException e) {
|
} catch (DeviceManagementException e) {
|
||||||
e.printStackTrace();
|
String msg = "Error occurred while getting device type details";
|
||||||
|
log.error(msg, e);
|
||||||
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
|
throw new ApplicationManagementException(msg, e);
|
||||||
|
} catch (Exception e) {
|
||||||
|
String msg = "Unknown exception while creating application.";
|
||||||
|
log.error(msg, e);
|
||||||
|
ConnectionManagerUtil.rollbackDBTransaction();
|
||||||
|
throw new ApplicationManagementException(msg, e);
|
||||||
} finally {
|
} finally {
|
||||||
//ConnectionManagerUtil.closeDBConnection(); //todo: check this again
|
ConnectionManagerUtil.closeDBConnection();
|
||||||
}
|
}
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -181,14 +211,17 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
ConnectionManagerUtil.openDBConnection();
|
ConnectionManagerUtil.getDBConnection();
|
||||||
applicationList = applicationDAO.getApplications(filter, tenantId);
|
applicationList = applicationDAO.getApplications(filter, tenantId);
|
||||||
if (!isAdminUser(userName, tenantId, CarbonConstants.UI_ADMIN_PERMISSION_COLLECTION)) {
|
if(applicationList != null && applicationList.getApplications() != null && applicationList
|
||||||
applicationList = getRoleRestrictedApplicationList(applicationList, userName);
|
.getApplications().size() > 0) {
|
||||||
}
|
if (!isAdminUser(userName, tenantId, CarbonConstants.UI_ADMIN_PERMISSION_COLLECTION)) {
|
||||||
for (Application application : applicationList.getApplications()) {
|
applicationList = getRoleRestrictedApplicationList(applicationList, userName);
|
||||||
applicationReleases = getReleases(application.getId());
|
}
|
||||||
application.setApplicationReleases(applicationReleases);
|
for (Application application : applicationList.getApplications()) {
|
||||||
|
applicationReleases = getReleases(application.getId());
|
||||||
|
application.setApplicationReleases(applicationReleases);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return applicationList;
|
return applicationList;
|
||||||
} catch (UserStoreException e) {
|
} catch (UserStoreException e) {
|
||||||
@ -198,8 +231,6 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
} catch (ApplicationManagementDAOException e) {
|
} catch (ApplicationManagementDAOException e) {
|
||||||
throw new ApplicationManagementException(
|
throw new ApplicationManagementException(
|
||||||
"DAO exception while getting applications for the user " + userName + " of tenant " + tenantId, e);
|
"DAO exception while getting applications for the user " + userName + " of tenant " + tenantId, e);
|
||||||
} finally {
|
|
||||||
ConnectionManagerUtil.closeDBConnection();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -219,7 +250,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
LifecycleState lifecycleState = new LifecycleState();
|
LifecycleState lifecycleState = new LifecycleState();
|
||||||
lifecycleState.setCurrentState(AppLifecycleState.CREATED.toString());
|
lifecycleState.setCurrentState(AppLifecycleState.CREATED.toString());
|
||||||
lifecycleState.setPreviousState(AppLifecycleState.CREATED.toString());
|
lifecycleState.setPreviousState(AppLifecycleState.CREATED.toString());
|
||||||
changeLifecycleState(application.getId(), applicationRelease.getUuid(), lifecycleState);
|
changeLifecycleState(application.getId(), applicationRelease.getUuid(), lifecycleState, true, 0);
|
||||||
|
|
||||||
ConnectionManagerUtil.commitDBTransaction();
|
ConnectionManagerUtil.commitDBTransaction();
|
||||||
return applicationRelease;
|
return applicationRelease;
|
||||||
@ -364,12 +395,12 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
log.debug("Request is received to retrieve all the releases related with the application " + application
|
log.debug("Request is received to retrieve all the releases related with the application " + application
|
||||||
.toString());
|
.toString());
|
||||||
}
|
}
|
||||||
try {
|
ConnectionManagerUtil.getDBConnection();
|
||||||
ConnectionManagerUtil.openDBConnection();
|
applicationReleases = this.applicationReleaseDAO.getReleases(application.getName(), application.getType(), tenantId);
|
||||||
applicationReleases = this.applicationReleaseDAO.getReleases(application.getName(), application.getType(), tenantId);
|
for (ApplicationRelease applicationRelease : applicationReleases) {
|
||||||
for (ApplicationRelease applicationRelease : applicationReleases) {
|
LifecycleState lifecycleState = ApplicationManagementDAOFactory.getLifecycleStateDAO().
|
||||||
LifecycleState lifecycleState = ApplicationManagementDAOFactory.getLifecycleStateDAO().
|
getLatestLifeCycleStateByReleaseID(applicationRelease.getId());
|
||||||
getLatestLifeCycleStateByReleaseID(applicationRelease.getId());
|
if (lifecycleState != null) {
|
||||||
applicationRelease.setLifecycleState(lifecycleState);
|
applicationRelease.setLifecycleState(lifecycleState);
|
||||||
|
|
||||||
if (!AppLifecycleState.REMOVED.toString()
|
if (!AppLifecycleState.REMOVED.toString()
|
||||||
@ -377,10 +408,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
filteredApplicationReleases.add(applicationRelease);
|
filteredApplicationReleases.add(applicationRelease);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return filteredApplicationReleases;
|
|
||||||
} finally {
|
|
||||||
ConnectionManagerUtil.closeDBConnection();
|
|
||||||
}
|
}
|
||||||
|
return filteredApplicationReleases;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -409,7 +439,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
LifecycleState newAppLifecycleState = new LifecycleState();
|
LifecycleState newAppLifecycleState = new LifecycleState();
|
||||||
newAppLifecycleState.setPreviousState(appLifecycleState.getCurrentState());
|
newAppLifecycleState.setPreviousState(appLifecycleState.getCurrentState());
|
||||||
newAppLifecycleState.setCurrentState(AppLifecycleState.REMOVED.toString());
|
newAppLifecycleState.setCurrentState(AppLifecycleState.REMOVED.toString());
|
||||||
changeLifecycleState(applicationId, applicationRelease.getUuid(), newAppLifecycleState);
|
changeLifecycleState(applicationId, applicationRelease.getUuid(), newAppLifecycleState, true, 0);
|
||||||
storedLocations.add(applicationRelease.getAppHashValue());
|
storedLocations.add(applicationRelease.getAppHashValue());
|
||||||
}
|
}
|
||||||
ConnectionManagerUtil.openDBConnection();
|
ConnectionManagerUtil.openDBConnection();
|
||||||
@ -440,7 +470,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
LifecycleState newAppLifecycleState = new LifecycleState();
|
LifecycleState newAppLifecycleState = new LifecycleState();
|
||||||
newAppLifecycleState.setPreviousState(appLifecycleState.getCurrentState());
|
newAppLifecycleState.setPreviousState(appLifecycleState.getCurrentState());
|
||||||
newAppLifecycleState.setCurrentState(AppLifecycleState.REMOVED.toString());
|
newAppLifecycleState.setCurrentState(AppLifecycleState.REMOVED.toString());
|
||||||
changeLifecycleState(applicationId, applicationRelease.getUuid(), newAppLifecycleState);
|
changeLifecycleState(applicationId, applicationRelease.getUuid(), newAppLifecycleState, true, 0);
|
||||||
}else{
|
}else{
|
||||||
throw new ApplicationManagementException("Can't delete the application release, You have to move the " +
|
throw new ApplicationManagementException("Can't delete the application release, You have to move the " +
|
||||||
"lifecycle state from "+ currentState + " to acceptable " +
|
"lifecycle state from "+ currentState + " to acceptable " +
|
||||||
@ -582,27 +612,24 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
ApplicationManagementException {
|
ApplicationManagementException {
|
||||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||||
ApplicationRelease applicationRelease;
|
ApplicationRelease applicationRelease;
|
||||||
try {
|
|
||||||
if (applicationId <= 0) {
|
if (applicationId <= 0) {
|
||||||
throw new ApplicationManagementException(
|
throw new ApplicationManagementException(
|
||||||
"Application id could,t be a negative integer. Hence please add " +
|
"Application id could,t be a negative integer. Hence please add " +
|
||||||
"valid application id.");
|
"valid application id.");
|
||||||
}
|
|
||||||
if (applicationUuid == null) {
|
|
||||||
throw new ApplicationManagementException("Application UUID is null. Application UUID is a required "
|
|
||||||
+ "parameter to get the relevant application.");
|
|
||||||
}
|
|
||||||
ConnectionManagerUtil.openDBConnection();
|
|
||||||
applicationRelease = this.applicationReleaseDAO.getReleaseByIds(applicationId, applicationUuid, tenantId);
|
|
||||||
if (applicationRelease == null) {
|
|
||||||
throw new ApplicationManagementException("Doesn't exist a application release for application ID: " +
|
|
||||||
applicationId + "and application UUID: " +
|
|
||||||
applicationUuid);
|
|
||||||
}
|
|
||||||
return applicationRelease;
|
|
||||||
} finally {
|
|
||||||
ConnectionManagerUtil.closeDBConnection();
|
|
||||||
}
|
}
|
||||||
|
if (applicationUuid == null) {
|
||||||
|
throw new ApplicationManagementException("Application UUID is null. Application UUID is a required "
|
||||||
|
+ "parameter to get the relevant application.");
|
||||||
|
}
|
||||||
|
ConnectionManagerUtil.getDBConnection();
|
||||||
|
applicationRelease = this.applicationReleaseDAO.getReleaseByIds(applicationId, applicationUuid, tenantId);
|
||||||
|
if (applicationRelease == null) {
|
||||||
|
throw new ApplicationManagementException("Doesn't exist a application release for application ID: " +
|
||||||
|
applicationId + "and application UUID: " +
|
||||||
|
applicationUuid);
|
||||||
|
}
|
||||||
|
return applicationRelease;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -702,11 +729,15 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void changeLifecycleState(int applicationId, String applicationUuid, LifecycleState state)
|
public void changeLifecycleState(int applicationId, String applicationUuid, LifecycleState state, Boolean
|
||||||
throws ApplicationManagementException {
|
checkExist, int releaseId) throws ApplicationManagementException {
|
||||||
try {
|
try {
|
||||||
Application application = getApplicationIfAccessible(applicationId);
|
if (checkExist) {
|
||||||
ApplicationRelease applicationRelease = getAppReleaseIfExists(applicationId, applicationUuid);
|
getApplicationIfAccessible(applicationId);
|
||||||
|
}
|
||||||
|
if (releaseId < 1) {
|
||||||
|
releaseId = getAppReleaseIfExists(applicationId, applicationUuid).getId();
|
||||||
|
}
|
||||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||||
String userName = PrivilegedCarbonContext.getThreadLocalCarbonContext().getUsername();
|
String userName = PrivilegedCarbonContext.getThreadLocalCarbonContext().getUsername();
|
||||||
state.setUpdatedBy(userName);
|
state.setUpdatedBy(userName);
|
||||||
@ -714,7 +745,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
|||||||
if (state.getCurrentState() != null && state.getPreviousState() != null) {
|
if (state.getCurrentState() != null && state.getPreviousState() != null) {
|
||||||
if (lifecycleStateManger.isValidStateChange(state.getPreviousState(), state.getCurrentState())) {
|
if (lifecycleStateManger.isValidStateChange(state.getPreviousState(), state.getCurrentState())) {
|
||||||
this.lifecycleStateDAO
|
this.lifecycleStateDAO
|
||||||
.addLifecycleState(state, application.getId(), applicationRelease.getId(), tenantId);
|
.addLifecycleState(state, applicationId, releaseId, tenantId);
|
||||||
} else {
|
} else {
|
||||||
log.error("Invalid lifecycle state transition from '" + state.getPreviousState() + "'"
|
log.error("Invalid lifecycle state transition from '" + state.getPreviousState() + "'"
|
||||||
+ " to '" + state.getCurrentState() + "'");
|
+ " to '" + state.getCurrentState() + "'");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user