mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Improve life cycle manager
This commit is contained in:
parent
1900d1d1ef
commit
018d078e1b
@ -80,33 +80,4 @@ public interface ConfigRetrieveAPI {
|
||||
response = ErrorResponse.class)
|
||||
})
|
||||
Response getUiConfig();
|
||||
|
||||
@GET
|
||||
@Path("/lifecycle-config")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
@ApiOperation(
|
||||
consumes = MediaType.APPLICATION_JSON,
|
||||
produces = MediaType.APPLICATION_JSON,
|
||||
httpMethod = "GET",
|
||||
value = "get application management UI configuration",
|
||||
notes = "This will get all UI configuration of application management"
|
||||
)
|
||||
@ApiResponses(
|
||||
value = {
|
||||
@ApiResponse(
|
||||
code = 200,
|
||||
message = "OK. \n Successfully got Lifecycle Config.",
|
||||
response = ApplicationList.class),
|
||||
@ApiResponse(
|
||||
code = 404,
|
||||
message = "Not Found. There doesn't have an defined <LifecycleStates> in app management "
|
||||
+ "configuration file." +
|
||||
"query."),
|
||||
@ApiResponse(
|
||||
code = 500,
|
||||
message = "Internal Server Error. \n Error occurred while getting the lifecycle config.",
|
||||
response = ErrorResponse.class)
|
||||
})
|
||||
Response getLifecycleConfig();
|
||||
|
||||
}
|
||||
|
||||
@ -54,19 +54,4 @@ public class ConfigRetrieveAPIImpl implements ConfigRetrieveAPI {
|
||||
}
|
||||
return Response.status(Response.Status.OK).entity(uiConfiguration).build();
|
||||
}
|
||||
|
||||
@GET
|
||||
@Override
|
||||
@Consumes("application/json")
|
||||
@Path("/lifecycle-config")
|
||||
public Response getLifecycleConfig() {
|
||||
AppmDataHandler dataHandler = APIUtil.getDataHandler();
|
||||
try {
|
||||
return Response.status(Response.Status.OK).entity(dataHandler.getLifecycleConfiguration()).build();
|
||||
} catch (LifecycleManagementException e) {
|
||||
String msg = "Error Occurred while accessing lifecycle manager.";
|
||||
log.error(msg);
|
||||
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(msg).build();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -23,6 +23,6 @@ package org.wso2.carbon.device.application.mgt.common;
|
||||
* States of the Application.
|
||||
*/
|
||||
public enum AppLifecycleState {
|
||||
CREATED, IN_REVIEW, PUBLISHED, APPROVED, UNPUBLISHED, REJECTED, DEPRECATED, REMOVED
|
||||
CREATED, IN_REVIEW, PUBLISHED, APPROVED, BLOCKED, REJECTED, DEPRECATED, RETIRED
|
||||
}
|
||||
|
||||
|
||||
@ -1,51 +0,0 @@
|
||||
package org.wso2.carbon.device.application.mgt.common;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* This class represents the state of the lifecycle
|
||||
*/
|
||||
public class State {
|
||||
|
||||
private Set<String> proceedingStates;
|
||||
private String stateName;
|
||||
private String permission;
|
||||
private boolean isAppUpdatable;
|
||||
private boolean isAppInstallable;
|
||||
private boolean isInitialState;
|
||||
private boolean isEndState;
|
||||
|
||||
public State(String stateName, List<String> states, String permission, boolean isAppUpdatable,
|
||||
boolean isAppInstallable, boolean isInitialState, boolean isEndState) {
|
||||
this.stateName = stateName;
|
||||
this.permission = permission;
|
||||
this.isAppUpdatable=isAppUpdatable;
|
||||
this.isAppInstallable=isAppInstallable;
|
||||
this.isInitialState=isInitialState;
|
||||
this.isEndState=isEndState;
|
||||
if (states != null && !states.isEmpty()) {
|
||||
proceedingStates = new HashSet<>(states);
|
||||
}
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return stateName;
|
||||
}
|
||||
|
||||
public Set<String> getProceedingStates() {
|
||||
return proceedingStates;
|
||||
}
|
||||
|
||||
public String getPermission(){ return permission;}
|
||||
|
||||
public boolean isAppUpdatable(){ return isAppUpdatable;}
|
||||
|
||||
public boolean isAppInstallable(){ return isAppInstallable;}
|
||||
|
||||
public boolean isInitialState(){ return isInitialState;}
|
||||
|
||||
public boolean isEndState(){ return isEndState;}
|
||||
|
||||
}
|
||||
@ -19,6 +19,7 @@ public class LifecycleState {
|
||||
private boolean isAppUpdatable;
|
||||
private boolean isInitialState;
|
||||
private boolean isEndState;
|
||||
private boolean isDeletableState;
|
||||
|
||||
@XmlAttribute(name = "name")
|
||||
public String getName() {
|
||||
@ -84,4 +85,8 @@ public class LifecycleState {
|
||||
this.isEndState = isEndState;
|
||||
}
|
||||
|
||||
@XmlElement(name = "IsDeletableState")
|
||||
public boolean isDeletableState() { return isDeletableState; }
|
||||
|
||||
public void setDeletableState(boolean deletableState) { isDeletableState = deletableState; }
|
||||
}
|
||||
|
||||
@ -86,7 +86,7 @@ public class ApplicationDTO {
|
||||
@ApiModelProperty(name = "status",
|
||||
value = "Application status",
|
||||
required = true,
|
||||
example = "REMOVED, ACTIVE")
|
||||
example = "RETIRED, ACTIVE")
|
||||
private String status;
|
||||
|
||||
@ApiModelProperty(name = "applicationReleaseDTOs",
|
||||
|
||||
@ -69,14 +69,21 @@ public interface ApplicationManager {
|
||||
*/
|
||||
void deleteApplication(int applicationId) throws ApplicationManagementException;
|
||||
|
||||
/**
|
||||
* Retire an application identified by the unique ID.
|
||||
*
|
||||
* @param applicationId ID for tha application
|
||||
* @throws ApplicationManagementException ApplicationDTO Management Exception
|
||||
*/
|
||||
void retireApplication(int applicationId) throws ApplicationManagementException;
|
||||
|
||||
/**
|
||||
* Delete an application identified by the unique ID.
|
||||
*
|
||||
* @param applicationId ID of tha application
|
||||
* @param releaseUuid UUID of tha application release
|
||||
* @throws ApplicationManagementException ApplicationDTO Management Exception
|
||||
*/
|
||||
void deleteApplicationRelease(int applicationId, String releaseUuid) throws ApplicationManagementException;
|
||||
void deleteApplicationRelease(String releaseUuid) throws ApplicationManagementException;
|
||||
|
||||
/**
|
||||
* To get the applications based on the search filter.
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
package org.wso2.carbon.device.application.mgt.common.services;
|
||||
|
||||
import org.wso2.carbon.device.application.mgt.common.State;
|
||||
import org.wso2.carbon.device.application.mgt.common.config.LifecycleState;
|
||||
import org.wso2.carbon.device.application.mgt.common.config.UIConfiguration;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.LifecycleManagementException;
|
||||
@ -33,7 +33,7 @@ public interface AppmDataHandler {
|
||||
*/
|
||||
UIConfiguration getUIConfiguration();
|
||||
|
||||
Map<String, State> getLifecycleConfiguration() throws LifecycleManagementException;
|
||||
Map<String, LifecycleState> getLifecycleConfiguration() throws LifecycleManagementException;
|
||||
|
||||
InputStream getArtifactStream(String uuid, String artifactName) throws ApplicationManagementException;
|
||||
}
|
||||
|
||||
@ -176,7 +176,7 @@ public interface ApplicationDAO {
|
||||
* @param appId ID of the application.
|
||||
* @throws ApplicationManagementDAOException ApplicationDTO Management DAO Exception.
|
||||
*/
|
||||
void deleteApplication(int appId) throws ApplicationManagementDAOException;
|
||||
void retireApplication(int appId) throws ApplicationManagementDAOException;
|
||||
|
||||
/**
|
||||
* To get the application count that satisfies gives search query.
|
||||
|
||||
@ -19,7 +19,6 @@
|
||||
package org.wso2.carbon.device.application.mgt.core.dao;
|
||||
|
||||
import org.wso2.carbon.device.application.mgt.common.dto.ApplicationReleaseDTO;
|
||||
import org.wso2.carbon.device.application.mgt.common.ApplicationReleaseArtifactPaths;
|
||||
import org.wso2.carbon.device.application.mgt.common.Rating;
|
||||
import org.wso2.carbon.device.application.mgt.core.exception.ApplicationManagementDAOException;
|
||||
|
||||
@ -112,10 +111,9 @@ public interface ApplicationReleaseDAO {
|
||||
* To delete a particular release.
|
||||
*
|
||||
* @param id ID of the ApplicationDTO which the release need to be deleted.
|
||||
* @param version Version of the ApplicationDTO Release
|
||||
* @throws ApplicationManagementDAOException ApplicationDTO Management DAO Exception.
|
||||
*/
|
||||
void deleteRelease(int id, String version) throws ApplicationManagementDAOException;
|
||||
void deleteRelease(int id) throws ApplicationManagementDAOException;
|
||||
|
||||
/**
|
||||
* To get release details of a specific application.
|
||||
|
||||
@ -69,12 +69,12 @@ public interface LifecycleStateDAO {
|
||||
throws LifeCycleManagementDAOException;
|
||||
|
||||
/**
|
||||
* To delete a specific lifecycle state for application release.
|
||||
* @param identifier Id of the LifecycleStateDTO.
|
||||
* To delete lifecycle state data of specific application release.
|
||||
* @param releaseId Id of the LifecycleStateDTO.
|
||||
*
|
||||
* @throws LifeCycleManagementDAOException Lifecycle Management DAO Exception.
|
||||
*/
|
||||
void deleteLifecycleState(int identifier) throws LifeCycleManagementDAOException;
|
||||
void deleteLifecycleStateByReleaseId(int releaseId) throws LifeCycleManagementDAOException;
|
||||
|
||||
/***
|
||||
*
|
||||
|
||||
@ -88,7 +88,7 @@ public interface SubscriptionDAO {
|
||||
void subscribeGroupToApplication(int tenantId, String subscribedBy, List<DeviceGroup> groupList, int appId,
|
||||
int releaseId) throws ApplicationManagementDAOException;
|
||||
|
||||
public List<DeviceSubscriptionDTO> getDeviceSubscriptions(int appReleaseId, int tenantId) throws
|
||||
List<DeviceSubscriptionDTO> getDeviceSubscriptions(int appReleaseId, int tenantId) throws
|
||||
ApplicationManagementDAOException;
|
||||
|
||||
}
|
||||
|
||||
@ -456,7 +456,7 @@ public class GenericApplicationDAOImpl extends AbstractDAOImpl implements Applic
|
||||
stmt = conn.prepareStatement(sql);
|
||||
stmt.setString(1, releaseUuid);
|
||||
stmt.setInt(2, tenantId);
|
||||
stmt.setString(3, AppLifecycleState.REMOVED.toString());
|
||||
stmt.setString(3, AppLifecycleState.RETIRED.toString());
|
||||
rs = stmt.executeQuery();
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
@ -619,14 +619,14 @@ public class GenericApplicationDAOImpl extends AbstractDAOImpl implements Applic
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteApplication(int appId) throws ApplicationManagementDAOException {
|
||||
public void retireApplication(int appId) throws ApplicationManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
try {
|
||||
conn = this.getDBConnection();
|
||||
String sql = "UPDATE AP_APP SET STATUS = ? WHERE ID = ? ";
|
||||
stmt = conn.prepareStatement(sql);
|
||||
stmt.setString(1, AppLifecycleState.REMOVED.toString());
|
||||
stmt.setString(1, AppLifecycleState.RETIRED.toString());
|
||||
stmt.setInt(2, appId);
|
||||
stmt.executeUpdate();
|
||||
|
||||
|
||||
@ -490,30 +490,25 @@ public class GenericApplicationReleaseDAOImpl extends AbstractDAOImpl implements
|
||||
return applicationReleaseDTO;
|
||||
}
|
||||
|
||||
/**
|
||||
* To delete an application release.
|
||||
*
|
||||
* @param id Id of the application Release.
|
||||
* @param version version name of the application release.
|
||||
* @throws ApplicationManagementDAOException ApplicationDTO Management DAO Exception.
|
||||
*/
|
||||
@Override public void deleteRelease(int id, String version) throws ApplicationManagementDAOException {
|
||||
@Override
|
||||
public void deleteRelease(int id) throws ApplicationManagementDAOException {
|
||||
Connection connection;
|
||||
PreparedStatement statement = null;
|
||||
String sql = "DELETE FROM AP_APP_RELEASE WHERE ID = ? AND VERSION = ?";
|
||||
String sql = "DELETE "
|
||||
+ "FROM AP_APP_RELEASE "
|
||||
+ "WHERE ID = ?";
|
||||
try {
|
||||
connection = this.getDBConnection();
|
||||
statement = connection.prepareStatement(sql);
|
||||
statement.setInt(1, id);
|
||||
statement.setString(2, version);
|
||||
statement.executeUpdate();
|
||||
} catch (DBConnectionException e) {
|
||||
throw new ApplicationManagementDAOException(
|
||||
"Database connection exception while trying to delete the release with version " + version, e);
|
||||
"Database connection exception while trying to delete the release fore release ID: " + id, e);
|
||||
} catch (SQLException e) {
|
||||
throw new ApplicationManagementDAOException(
|
||||
"SQL exception while deleting the release with version " + version + ",while executing the query "
|
||||
+ "sql", e);
|
||||
"SQL exception while deleting the release for release ID: " + id + ",while executing the query sql"
|
||||
, e);
|
||||
} finally {
|
||||
Util.cleanupResources(statement, null);
|
||||
}
|
||||
|
||||
@ -193,23 +193,22 @@ public class GenericLifecycleStateDAOImpl extends AbstractDAOImpl implements Lif
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteLifecycleState(int identifier) throws LifeCycleManagementDAOException {
|
||||
Connection conn = null;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet rs = null;
|
||||
public void deleteLifecycleStateByReleaseId(int releaseId) throws LifeCycleManagementDAOException {
|
||||
Connection conn;
|
||||
try {
|
||||
conn = this.getDBConnection();
|
||||
String sql = "DELETE FROM AP_APP_LIFECYCLE_STATE WHERE ID = ?";
|
||||
stmt = conn.prepareStatement(sql);
|
||||
stmt.setInt(1, identifier);
|
||||
stmt.executeUpdate();
|
||||
|
||||
String sql = "DELETE FROM " +
|
||||
"AP_APP_LIFECYCLE_STATE " +
|
||||
"WHERE AP_APP_RELEASE_ID = ?";
|
||||
try (PreparedStatement stmt = conn.prepareStatement(sql)) {
|
||||
stmt.setInt(1, releaseId);
|
||||
stmt.executeUpdate();
|
||||
}
|
||||
} catch (DBConnectionException e) {
|
||||
throw new LifeCycleManagementDAOException("Error occurred while obtaining the DB connection.", e);
|
||||
} catch (SQLException e) {
|
||||
throw new LifeCycleManagementDAOException("Error occurred while deleting lifecycle: " + identifier, e);
|
||||
} finally {
|
||||
Util.cleanupResources(stmt, rs);
|
||||
throw new LifeCycleManagementDAOException("Error occurred while deleting lifecycle for application "
|
||||
+ "release ID: " + releaseId, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManage
|
||||
/**
|
||||
* Exception thrown during the ApplicationDTO Management DAO operations.
|
||||
*/
|
||||
public class ApplicationManagementDAOException extends ApplicationManagementException {
|
||||
public class ApplicationManagementDAOException extends Exception {
|
||||
|
||||
public ApplicationManagementDAOException(String message, Throwable throwable) {
|
||||
super(message, throwable);
|
||||
|
||||
@ -27,7 +27,6 @@ import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.CarbonConstants;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||
import org.wso2.carbon.device.application.mgt.common.AppLifecycleState;
|
||||
import org.wso2.carbon.device.application.mgt.common.ApplicationArtifact;
|
||||
import org.wso2.carbon.device.application.mgt.common.ApplicationInstaller;
|
||||
import org.wso2.carbon.device.application.mgt.common.Pagination;
|
||||
@ -873,6 +872,10 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
String msg = "User-store exception while getting application with the application id " + appId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
String msg = "Error occured when getting, either application tags or application categories";
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg);
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -919,6 +922,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
String msg = "User-store exception while getting application with the application release UUID: " + uuid;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -961,6 +967,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
} catch (UserStoreException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"User-store exception while getting application with the application release UUID " + uuid);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -1057,6 +1066,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
} catch (UserStoreException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"User-store exception while getting application with the " + "application name " + appName);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -1078,6 +1090,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
} catch (UserStoreException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"User-store exception while getting application with the application UUID " + appReleaseUUID);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -1092,7 +1107,14 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
log.debug("Request is received to retrieve all the releases related with the application " + application
|
||||
.toString());
|
||||
}
|
||||
applicationReleases = this.applicationReleaseDAO.getReleases(application.getId(), tenantId);
|
||||
//todo
|
||||
applicationReleases = null;
|
||||
try {
|
||||
applicationReleases = this.applicationReleaseDAO.getReleases(application.getId(), tenantId);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
}
|
||||
for (ApplicationReleaseDTO applicationRelease : applicationReleases) {
|
||||
LifecycleStateDTO lifecycleState = null;
|
||||
try {
|
||||
@ -1169,7 +1191,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
log.error(msg);
|
||||
throw new ForbiddenException(msg);
|
||||
}
|
||||
this.applicationDAO.deleteApplication(applicationId);
|
||||
this.applicationDAO.retireApplication(applicationId);
|
||||
ConnectionManagerUtil.commitDBTransaction();
|
||||
applicationStorageManager.deleteAllApplicationReleaseArtifacts(storedLocations);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
@ -1186,6 +1208,45 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void retireApplication(int applicationId) throws ApplicationManagementException {
|
||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||
ApplicationDTO applicationDTO;
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Request is received to delete applications which are related with the application id "
|
||||
+ applicationId);
|
||||
}
|
||||
try {
|
||||
ConnectionManagerUtil.beginDBTransaction();
|
||||
applicationDTO = this.applicationDAO.getApplicationById(applicationId, tenantId);
|
||||
|
||||
if (applicationDTO == null) {
|
||||
throw new NotFoundException("Couldn't found an application for Application ID: " + applicationId);
|
||||
}
|
||||
List<ApplicationReleaseDTO> applicationReleaseDTOs = applicationDTO.getApplicationReleaseDTOs();
|
||||
List<ApplicationReleaseDTO> activeApplicationReleaseDTOs = new ArrayList<>();
|
||||
for (ApplicationReleaseDTO applicationReleaseDTO : applicationReleaseDTOs) {
|
||||
if (!applicationReleaseDTO.getCurrentState().equals(lifecycleStateManager.getEndState())) {
|
||||
activeApplicationReleaseDTOs.add(applicationReleaseDTO);
|
||||
}
|
||||
}
|
||||
if (!activeApplicationReleaseDTOs.isEmpty()) {
|
||||
String msg = "There are application releases which are not in the state " + lifecycleStateManager
|
||||
.getEndState() + ". Hence you are not allowed to delete the application";
|
||||
log.error(msg);
|
||||
throw new ForbiddenException(msg);
|
||||
}
|
||||
this.applicationDAO.retireApplication(applicationId);
|
||||
ConnectionManagerUtil.commitDBTransaction();
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
String msg = "Error occurred when getting application data for application id: " + applicationId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
}
|
||||
|
||||
private List<String> searchLifecycleStateFlow(String start, String finish) throws ApplicationManagementException {
|
||||
Map<String, String> nextNodeMap = new HashMap<>();
|
||||
List<String> directions = new LinkedList<>();
|
||||
@ -1201,7 +1262,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
if (currentNode.equals(finish)) {
|
||||
break;
|
||||
} else {
|
||||
Set<String> nextStates = lifecycleStateManager.getNextLifecycleStates(currentNode);
|
||||
List<String> nextStates = lifecycleStateManager.getNextLifecycleStates(currentNode);
|
||||
if (nextStates.contains(finish)) {
|
||||
queue = new LinkedList<>();
|
||||
queue.add(finish);
|
||||
@ -1234,7 +1295,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteApplicationRelease(int applicationId, String releaseUuid)
|
||||
public void deleteApplicationRelease(String releaseUuid)
|
||||
throws ApplicationManagementException {
|
||||
int tenantId = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||
ApplicationStorageManager applicationStorageManager = Util.getApplicationStorageManager();
|
||||
@ -1248,9 +1309,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
throw new NotFoundException(msg);
|
||||
}
|
||||
|
||||
if (!applicationReleaseDTO.getCurrentState().equals(lifecycleStateManager.getInitialState())) {
|
||||
String msg = "Application state is not in the initial state: " + lifecycleStateManager.getInitialState()
|
||||
+ ". Therefore you are not permitted to delete the application release.";
|
||||
if (!lifecycleStateManager.isDeletableState(applicationReleaseDTO.getCurrentState())) {
|
||||
String msg = "Application state is not in the deletable state. Therefore you are not permitted to "
|
||||
+ "delete the application release.";
|
||||
log.error(msg);
|
||||
throw new ForbiddenException(msg);
|
||||
}
|
||||
@ -1264,61 +1325,22 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
throw new ForbiddenException(msg);
|
||||
}
|
||||
}
|
||||
//todo delete application release data ON delete cascade
|
||||
applicationStorageManager.deleteApplicationReleaseArtifacts(applicationReleaseDTO.getAppHashValue());
|
||||
|
||||
// LifecycleStateDTO appLifecycleState = this.lifecycleStateDAO
|
||||
// .getLatestLifeCycleState(applicationId, releaseUuid);
|
||||
// if (appLifecycleState == null) {
|
||||
// throw new NotFoundException(
|
||||
// "Couldn't find an lifecycle sate for application ID: " + applicationId + " and UUID: "
|
||||
// + releaseUuid);
|
||||
// }
|
||||
// String currentState = appLifecycleState.getCurrentState();
|
||||
// if (AppLifecycleState.DEPRECATED.toString().equals(currentState) || AppLifecycleState.REJECTED.toString()
|
||||
// .equals(currentState) || AppLifecycleState.UNPUBLISHED.toString().equals(currentState)) {
|
||||
// LifecycleStateDTO newAppLifecycleState = getLifecycleStateInstance(AppLifecycleState.REMOVED.toString(),
|
||||
// appLifecycleState.getCurrentState());
|
||||
// if (lifecycleStateManager.isValidStateChange(newAppLifecycleState.getPreviousState(),
|
||||
// newAppLifecycleState.getCurrentState(), userName, tenantId)) {
|
||||
// this.lifecycleStateDAO
|
||||
// .addLifecycleState(newAppLifecycleState, applicationId, applicationRelease.getUuid(),
|
||||
// tenantId);
|
||||
// ConnectionManagerUtil.commitDBTransaction();
|
||||
// } else {
|
||||
// List<String> lifecycleFlow = searchLifecycleStateFlow(currentState,
|
||||
// AppLifecycleState.REMOVED.toString());
|
||||
// for (String nextState : lifecycleFlow) {
|
||||
// LifecycleStateDTO lifecycleState = getLifecycleStateInstance(nextState, currentState);
|
||||
// if (lifecycleStateManager.isValidStateChange(currentState, nextState, userName, tenantId)) {
|
||||
// this.lifecycleStateDAO
|
||||
// .addLifecycleState(lifecycleState, applicationId, applicationRelease.getUuid(),
|
||||
// tenantId);
|
||||
// } else {
|
||||
// ConnectionManagerUtil.rollbackDBTransaction();
|
||||
// throw new ApplicationManagementException(
|
||||
// "Can't delete the application release, You have to move the "
|
||||
// + "lifecycle state from " + currentState + " to " + nextState);
|
||||
// }
|
||||
// currentState = nextState;
|
||||
// }
|
||||
// }
|
||||
// } else {
|
||||
// throw new ApplicationManagementException(
|
||||
// "Can't delete the application release, You have to move the " + "lifecycle state from "
|
||||
// + currentState + " to acceptable " + "state");
|
||||
// }
|
||||
// return applicationReleaseDTO.getAppHashValue();
|
||||
lifecycleStateDAO.deleteLifecycleStateByReleaseId(applicationReleaseDTO.getId());
|
||||
applicationReleaseDAO.deleteRelease(applicationReleaseDTO.getId());
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
ConnectionManagerUtil.rollbackDBTransaction();
|
||||
String msg = "Error ocured when getting application data or application release data for application id of "
|
||||
+ applicationId + " application release UUID of the " + releaseUuid;
|
||||
throw new ApplicationManagementDAOException(msg, e);
|
||||
String msg = "Error occurred when application release data for application release UUID: " + releaseUuid;
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (ApplicationStorageManagementException e) {
|
||||
ConnectionManagerUtil.rollbackDBTransaction();
|
||||
String msg = "Error occured when deleteing the application release artifact from the file system. Application release UUID: " + releaseUuid;
|
||||
String msg = "Error occurred when deleting the application release artifact from the file system. "
|
||||
+ "Application release UUID: " + releaseUuid;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (LifeCycleManagementDAOException e) {
|
||||
ConnectionManagerUtil.rollbackDBTransaction();
|
||||
String msg = "Error occurred when dleting lifecycle data for application release UUID: " + releaseUuid;
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -1596,6 +1618,9 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
throw new ApplicationManagementException(
|
||||
"Failed to add lifecycle state. ApplicationDTO Id: " + applicationId + " ApplicationDTO release UUID: "
|
||||
+ releaseUuid, e);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
|
||||
@ -20,7 +20,7 @@ package org.wso2.carbon.device.application.mgt.core.impl;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||
import org.wso2.carbon.device.application.mgt.common.State;
|
||||
import org.wso2.carbon.device.application.mgt.common.config.LifecycleState;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationStorageManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.LifecycleManagementException;
|
||||
@ -60,7 +60,7 @@ public class AppmDataHandlerImpl implements AppmDataHandler {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, State> getLifecycleConfiguration() throws LifecycleManagementException {
|
||||
public Map<String, LifecycleState> getLifecycleConfiguration() throws LifecycleManagementException {
|
||||
return lifecycleStateManager.getLifecycleConfig();
|
||||
}
|
||||
|
||||
|
||||
@ -28,6 +28,7 @@ import org.wso2.carbon.device.application.mgt.common.services.ApplicationManager
|
||||
import org.wso2.carbon.device.application.mgt.common.services.SubscriptionManager;
|
||||
import org.wso2.carbon.device.application.mgt.core.dao.SubscriptionDAO;
|
||||
import org.wso2.carbon.device.application.mgt.core.dao.common.ApplicationManagementDAOFactory;
|
||||
import org.wso2.carbon.device.application.mgt.core.exception.ApplicationManagementDAOException;
|
||||
import org.wso2.carbon.device.application.mgt.core.internal.DataHolder;
|
||||
import org.wso2.carbon.device.application.mgt.core.util.ConnectionManagerUtil;
|
||||
import org.wso2.carbon.device.application.mgt.core.util.HelperUtil;
|
||||
@ -109,6 +110,9 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
ConnectionManagerUtil.openDBConnection();
|
||||
subscriptionDAO.subscribeUserToApplication(tenantId, subscriber, userList, application.getId(),
|
||||
applicationReleaseId);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -150,6 +154,9 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
ConnectionManagerUtil.openDBConnection();
|
||||
subscriptionDAO.subscribeRoleToApplication(tenantId, subscriber, roleList, application.getId(),
|
||||
applicationReleaseId);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -194,6 +201,9 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
ConnectionManagerUtil.openDBConnection();
|
||||
subscriptionDAO.subscribeGroupToApplication(tenantId, subscriber, groupList, application.getId(),
|
||||
applicationReleaseId);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -252,6 +262,9 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
}
|
||||
subscriptionDAO.subscribeDeviceToApplication(tenantId, subscriber, deviceList, application.getId(),
|
||||
applicationReleaseId, String.valueOf(AppOperation.InstallState.UNINSTALLED));
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
//todo
|
||||
throw new ApplicationManagementException("");
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
|
||||
@ -19,7 +19,6 @@ package org.wso2.carbon.device.application.mgt.core.lifecycle;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.device.application.mgt.common.State;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.LifecycleManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.core.internal.DataHolder;
|
||||
import org.wso2.carbon.device.application.mgt.common.config.LifecycleState;
|
||||
@ -33,38 +32,36 @@ import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* This class represents the activities related to lifecycle management
|
||||
*/
|
||||
public class LifecycleStateManager {
|
||||
|
||||
private Map<String, State> lifecycleStates;
|
||||
private Map<String, LifecycleState> lifecycleStates;
|
||||
private static Log log = LogFactory.getLog(LifecycleStateManager.class);
|
||||
|
||||
public void init(List<LifecycleState> states) throws LifecycleManagementException {
|
||||
lifecycleStates = new HashMap<>();
|
||||
for (LifecycleState s : states) {
|
||||
if (s.getProceedingStates() != null) {
|
||||
s.getProceedingStates().replaceAll(String::toUpperCase);
|
||||
for (LifecycleState lifecycleState : states) {
|
||||
if (lifecycleState.getProceedingStates() != null) {
|
||||
lifecycleState.getProceedingStates().replaceAll(String::toUpperCase);
|
||||
}
|
||||
lifecycleStates.put(s.getName().toUpperCase(), new State(s.getName().toUpperCase(),
|
||||
s.getProceedingStates(), s.getPermission(), s.isAppUpdatable(), s.isAppInstallable(),
|
||||
s.isInitialState(), s.isEndState()));
|
||||
lifecycleStates.put(lifecycleState.getName(), lifecycleState);
|
||||
try {
|
||||
PermissionUtils.putPermission(s.getPermission());
|
||||
PermissionUtils.putPermission(lifecycleState.getPermission());
|
||||
} catch (PermissionManagementException e) {
|
||||
String msg = "Error when adding permission " + s.getPermission() + " related to the state: "
|
||||
+ s.getName();
|
||||
String msg =
|
||||
"Error when adding permission " + lifecycleState.getPermission() + " related to the state: "
|
||||
+ lifecycleState.getName();
|
||||
log.error(msg, e);
|
||||
throw new LifecycleManagementException(msg, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public Map<String, State> getLifecycleConfig() throws LifecycleManagementException {
|
||||
if (lifecycleStates == null){
|
||||
public Map<String, LifecycleState> getLifecycleConfig() throws LifecycleManagementException {
|
||||
if (lifecycleStates == null) {
|
||||
String msg = "Lifecycle configuration in not initialized.";
|
||||
log.error(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
@ -72,29 +69,27 @@ public class LifecycleStateManager {
|
||||
return lifecycleStates;
|
||||
}
|
||||
|
||||
|
||||
public Set<String> getNextLifecycleStates(String currentLifecycleState) {
|
||||
public List<String> getNextLifecycleStates(String currentLifecycleState) {
|
||||
return lifecycleStates.get(currentLifecycleState.toUpperCase()).getProceedingStates();
|
||||
}
|
||||
|
||||
public boolean isValidStateChange(String currentState, String nextState, String username, int tenantId) throws
|
||||
LifecycleManagementException {
|
||||
|
||||
public boolean isValidStateChange(String currentState, String nextState, String username, int tenantId)
|
||||
throws LifecycleManagementException {
|
||||
UserRealm userRealm;
|
||||
String permission = getPermissionForStateChange(nextState);
|
||||
if (permission != null) {
|
||||
try {
|
||||
userRealm = DataHolder.getInstance().getRealmService().getTenantUserRealm(tenantId);
|
||||
if (userRealm != null && userRealm.getAuthorizationManager() != null &&
|
||||
userRealm.getAuthorizationManager().isUserAuthorized(username,
|
||||
PermissionUtils.getAbsolutePermissionPath(permission),
|
||||
if (userRealm != null && userRealm.getAuthorizationManager() != null && userRealm
|
||||
.getAuthorizationManager()
|
||||
.isUserAuthorized(username, PermissionUtils.getAbsolutePermissionPath(permission),
|
||||
Constants.UI_EXECUTE)) {
|
||||
if (currentState.equalsIgnoreCase(nextState)) {
|
||||
return true;
|
||||
}
|
||||
State state = getMatchingState(currentState);
|
||||
if (state != null) {
|
||||
return getMatchingNextState(state.getProceedingStates(), nextState);
|
||||
LifecycleState matchingState = getMatchingState(currentState);
|
||||
if (matchingState != null) {
|
||||
return getMatchingNextState(matchingState.getProceedingStates(), nextState);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@ -105,24 +100,22 @@ public class LifecycleStateManager {
|
||||
+ nextState + " with username : " + username + " and tenant Id : " + tenantId, e);
|
||||
}
|
||||
} else {
|
||||
throw new LifecycleManagementException(
|
||||
"Required permissions cannot be found for the state : " + nextState);
|
||||
throw new LifecycleManagementException("Required permissions cannot be found for the state : " + nextState);
|
||||
}
|
||||
}
|
||||
|
||||
private State getMatchingState(String currentState) {
|
||||
for (Map.Entry<String, State> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
if (stringStateEntry.getKey().equalsIgnoreCase(currentState)) {
|
||||
return lifecycleStates.get(stringStateEntry.getKey());
|
||||
private LifecycleState getMatchingState(String currentState) {
|
||||
for (Map.Entry<String, LifecycleState> lifecycyleState : lifecycleStates.entrySet()) {
|
||||
if (lifecycyleState.getKey().equalsIgnoreCase(currentState)) {
|
||||
return lifecycyleState.getValue();
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
private boolean getMatchingNextState(Set<String> proceedingStates, String nextState) {
|
||||
for (String state : proceedingStates) {
|
||||
if (state.equalsIgnoreCase(nextState)) {
|
||||
private boolean getMatchingNextState(List<String> proceedingStates, String nextState) {
|
||||
for (String stateName : proceedingStates) {
|
||||
if (stateName.equalsIgnoreCase(nextState)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -131,7 +124,7 @@ public class LifecycleStateManager {
|
||||
|
||||
private String getPermissionForStateChange(String nextState) {
|
||||
Iterator it = lifecycleStates.entrySet().iterator();
|
||||
State nextLifecycleState;
|
||||
LifecycleState nextLifecycleState;
|
||||
while (it.hasNext()) {
|
||||
Map.Entry pair = (Map.Entry) it.next();
|
||||
if (pair.getKey().toString().equalsIgnoreCase(nextState)) {
|
||||
@ -143,8 +136,19 @@ public class LifecycleStateManager {
|
||||
return null;
|
||||
}
|
||||
|
||||
public boolean isDeletableState(String state) throws LifecycleManagementException {
|
||||
LifecycleState currentState = getMatchingState(state);
|
||||
if (currentState != null) {
|
||||
return currentState.isDeletableState();
|
||||
} else {
|
||||
String msg = "Couldn't find a lifecycle state that matches with " + state + " state.";
|
||||
log.error(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isUpdatableState(String state) throws LifecycleManagementException {
|
||||
State currentState = getMatchingState(state);
|
||||
LifecycleState currentState = getMatchingState(state);
|
||||
if (currentState != null) {
|
||||
return currentState.isAppUpdatable();
|
||||
} else {
|
||||
@ -155,7 +159,7 @@ public class LifecycleStateManager {
|
||||
}
|
||||
|
||||
public boolean isInstallableState(String state) throws LifecycleManagementException {
|
||||
State currentState = getMatchingState(state);
|
||||
LifecycleState currentState = getMatchingState(state);
|
||||
if (currentState != null) {
|
||||
return currentState.isAppInstallable();
|
||||
} else {
|
||||
@ -166,7 +170,7 @@ public class LifecycleStateManager {
|
||||
}
|
||||
|
||||
public boolean isInitialState(String state) throws LifecycleManagementException {
|
||||
State currentState = getMatchingState(state);
|
||||
LifecycleState currentState = getMatchingState(state);
|
||||
if (currentState != null) {
|
||||
return currentState.isInitialState();
|
||||
} else {
|
||||
@ -177,7 +181,7 @@ public class LifecycleStateManager {
|
||||
}
|
||||
|
||||
public boolean isEndState(String state) throws LifecycleManagementException {
|
||||
State currentState = getMatchingState(state);
|
||||
LifecycleState currentState = getMatchingState(state);
|
||||
if (currentState != null) {
|
||||
return currentState.isEndState();
|
||||
} else {
|
||||
@ -188,58 +192,55 @@ public class LifecycleStateManager {
|
||||
}
|
||||
|
||||
public String getInitialState() throws LifecycleManagementException {
|
||||
String initialState = null;
|
||||
for (Map.Entry<String, State> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
if (stringStateEntry.getValue().isInitialState()) {
|
||||
initialState = stringStateEntry.getKey();
|
||||
break;
|
||||
String initialState;
|
||||
for (Map.Entry<String, LifecycleState> lifecycleState : lifecycleStates.entrySet()) {
|
||||
if (lifecycleState.getValue().isInitialState()) {
|
||||
initialState = lifecycleState.getKey();
|
||||
return initialState;
|
||||
}
|
||||
}
|
||||
if (initialState == null){
|
||||
String msg = "Haven't defined the initial state in the application-manager.xml. Please add initial state "
|
||||
+ "to the <LifecycleStates> section in the app-manager.xml";
|
||||
log.error(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
}
|
||||
return initialState;
|
||||
String msg = "Haven't defined the initial state in the application-manager.xml. Please add initial state "
|
||||
+ "to the <LifecycleStates> section in the app-manager.xml";
|
||||
log.error(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
}
|
||||
|
||||
public String getEndState() throws LifecycleManagementException {
|
||||
String endState = null;
|
||||
for (Map.Entry<String, State> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
for (Map.Entry<String, LifecycleState> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
if (stringStateEntry.getValue().isEndState()) {
|
||||
endState = stringStateEntry.getKey();
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (endState == null){
|
||||
if (endState == null) {
|
||||
String msg = "Haven't defined the end state in the application-manager.xml. Please add end state "
|
||||
+ "to the <LifecycleStates> section in the app-manager.xml";
|
||||
log.error(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
}
|
||||
return endState;
|
||||
}
|
||||
|
||||
public String getInstallableState() throws LifecycleManagementException {
|
||||
String installableState = null;
|
||||
for (Map.Entry<String, State> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
for (Map.Entry<String, LifecycleState> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
if (stringStateEntry.getValue().isAppInstallable()) {
|
||||
installableState = stringStateEntry.getKey();
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (installableState == null){
|
||||
if (installableState == null) {
|
||||
String msg = "Haven't defined the installable state in the application-manager.xml. Please add installable "
|
||||
+ "state to the <LifecycleStates> section in the app-manager.xml";
|
||||
log.error(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
throw new LifecycleManagementException(msg);
|
||||
}
|
||||
return installableState;
|
||||
}
|
||||
|
||||
public boolean isStateExist(String currentState) {
|
||||
for (Map.Entry<String, State> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
for (Map.Entry<String, LifecycleState> stringStateEntry : lifecycleStates.entrySet()) {
|
||||
if (stringStateEntry.getKey().equalsIgnoreCase(currentState)) {
|
||||
return true;
|
||||
}
|
||||
@ -247,8 +248,7 @@ public class LifecycleStateManager {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
public void setLifecycleStates(Map<String, State> lifecycleStates) {
|
||||
public void setLifecycleStates(Map<String, LifecycleState> lifecycleStates) {
|
||||
this.lifecycleStates = lifecycleStates;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,25 +1,22 @@
|
||||
package org.wso2.carbon.device.application.mgt.core;
|
||||
|
||||
import org.wso2.carbon.device.application.mgt.core.lifecycle.LifecycleStateManager;
|
||||
import org.wso2.carbon.device.application.mgt.common.State;
|
||||
import org.wso2.carbon.device.application.mgt.common.config.LifecycleState;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
public class LifeCycleStateManagerTest extends LifecycleStateManager {
|
||||
class LifeCycleStateManagerTest extends LifecycleStateManager {
|
||||
|
||||
public void initializeLifeCycleDetails(List<LifecycleState> states) {
|
||||
HashMap<String, State> lifecycleStates = new HashMap<>();
|
||||
for (LifecycleState s : states) {
|
||||
if (s.getProceedingStates() != null) {
|
||||
s.getProceedingStates().replaceAll(String::toUpperCase);
|
||||
void initializeLifeCycleDetails(List<LifecycleState> lifecycleStates) {
|
||||
HashMap<String, LifecycleState> lifecycleStatesMap = new HashMap<>();
|
||||
for (LifecycleState lifecycleState : lifecycleStates) {
|
||||
if (lifecycleState.getProceedingStates() != null) {
|
||||
lifecycleState.getProceedingStates().replaceAll(String::toUpperCase);
|
||||
}
|
||||
lifecycleStates.put(s.getName().toUpperCase(), new State(s.getName().toUpperCase(),
|
||||
s.getProceedingStates(), s.getPermission(), s.isAppUpdatable(), s.isAppInstallable(),
|
||||
s.isInitialState(), s.isEndState()));
|
||||
lifecycleStatesMap.put(lifecycleState.getName().toUpperCase(), lifecycleState);
|
||||
}
|
||||
setLifecycleStates(lifecycleStates);
|
||||
setLifecycleStates(lifecycleStatesMap);
|
||||
}
|
||||
}
|
||||
|
||||
@ -10,7 +10,6 @@ import org.wso2.carbon.device.application.mgt.core.lifecycle.LifecycleStateManag
|
||||
import org.wso2.carbon.device.application.mgt.common.config.LifecycleState;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
public class LifecycleManagementTest {
|
||||
|
||||
@ -19,17 +18,16 @@ public class LifecycleManagementTest {
|
||||
|
||||
private final String CURRENT_STATE = "Approved";
|
||||
private final String NEXT_STATE = "Published";
|
||||
private final String BOGUS_STATE = "Removed";
|
||||
private final String BOGUS_STATE = "Retired";
|
||||
private final String UPDATABLE_STATE = "Created";
|
||||
private final String NON_UPDATABLE_STATE = "Removed";
|
||||
private final String NON_UPDATABLE_STATE = "Retired";
|
||||
private final String INSTALLABLE_STATE = "Published";
|
||||
private final String UNINSTALlABLE_STATE = "Removed";
|
||||
private final String INITIAL_STATE = "Created";
|
||||
private final String END_STATE = "Removed";
|
||||
private final String END_STATE = "Retired";
|
||||
|
||||
|
||||
@BeforeClass
|
||||
public void init() throws LifecycleManagementException {
|
||||
public void init() {
|
||||
ConfigurationManager configurationManager = ConfigurationManager.getInstance();
|
||||
Configuration configuration = configurationManager.getConfiguration();
|
||||
lifecycleStates = configuration.getLifecycleStates();
|
||||
@ -39,14 +37,14 @@ public class LifecycleManagementTest {
|
||||
|
||||
@Test
|
||||
public void checkValidNextLifecycleState() {
|
||||
Set<String> proceedingStates = lifecycleStateManager.getNextLifecycleStates(CURRENT_STATE);
|
||||
List<String> proceedingStates = lifecycleStateManager.getNextLifecycleStates(CURRENT_STATE);
|
||||
Assert.assertTrue("Invalid proceeding state of: " + CURRENT_STATE,
|
||||
proceedingStates.contains(NEXT_STATE.toUpperCase()));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void checkInvalidNextLifecycleState() {
|
||||
Set<String> proceedingStates = lifecycleStateManager.getNextLifecycleStates(CURRENT_STATE);
|
||||
List<String> proceedingStates = lifecycleStateManager.getNextLifecycleStates(CURRENT_STATE);
|
||||
Assert.assertFalse("Invalid proceeding state of: " + CURRENT_STATE,
|
||||
proceedingStates.contains(BOGUS_STATE.toUpperCase()));
|
||||
}
|
||||
@ -70,12 +68,6 @@ public class LifecycleManagementTest {
|
||||
Assert.assertTrue("Installable state: " + INSTALLABLE_STATE, isInstallable);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void CheckUnInstallableState() throws LifecycleManagementException {
|
||||
boolean isInstallable = lifecycleStateManager.isInstallableState(UNINSTALlABLE_STATE);
|
||||
Assert.assertFalse("UnInstallable state: " + UNINSTALlABLE_STATE, isInstallable);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void CheckGetInitialState() throws LifecycleManagementException {
|
||||
boolean isInitialState = lifecycleStateManager.getInitialState().equalsIgnoreCase(INITIAL_STATE);
|
||||
@ -126,7 +118,7 @@ public class LifecycleManagementTest {
|
||||
|
||||
@Test
|
||||
public void check() {
|
||||
Set<String> proceedingStates = lifecycleStateManager.getNextLifecycleStates(CURRENT_STATE);
|
||||
List<String> proceedingStates = lifecycleStateManager.getNextLifecycleStates(CURRENT_STATE);
|
||||
Assert.assertFalse("Invalid proceeding state of: " + CURRENT_STATE,
|
||||
proceedingStates.contains(BOGUS_STATE.toUpperCase()));
|
||||
}
|
||||
|
||||
@ -76,58 +76,59 @@
|
||||
<LifecycleState name="Created">
|
||||
<IsAppUpdatable>true</IsAppUpdatable>
|
||||
<IsInitialState>true</IsInitialState>
|
||||
<Permission>/device-mgt/applications/life-cycle/create</Permission>
|
||||
<IsDeletableState>true</IsDeletableState>
|
||||
<Permission>/app-mgt/life-cycle/application/create</Permission>
|
||||
<ProceedingStates>
|
||||
<State>In-Review</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="In-Review">
|
||||
<Permission>/device-mgt/applications/life-cycle/in-review</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/review</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Rejected</State>
|
||||
<State>Approved</State>
|
||||
<State>Created</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Approved">
|
||||
<Permission>/device-mgt/applications/life-cycle/approve</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/approve</Permission>
|
||||
<ProceedingStates>
|
||||
<State>In-Review</State>
|
||||
<State>Published</State>
|
||||
<State>Created</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Rejected">
|
||||
<Permission>/device-mgt/applications/life-cycle/reject</Permission>
|
||||
<IsDeletableState>true</IsDeletableState>
|
||||
<Permission>/app-mgt/life-cycle/application/reject</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Created</State>
|
||||
<State>Removed</State>
|
||||
<State>In-Review</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Published">
|
||||
<IsAppInstallable>true</IsAppInstallable>
|
||||
<Permission>/device-mgt/applications/life-cycle/publish</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/publish</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Unpublished</State>
|
||||
<State>Blocked</State>
|
||||
<State>Deprecated</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Unpublished">
|
||||
<Permission>/device-mgt/applications/life-cycle/unpublish</Permission>
|
||||
<LifecycleState name="Blocked">
|
||||
<Permission>/app-mgt/life-cycle/application/block</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Published</State>
|
||||
<State>In-Review</State>
|
||||
<State>Removed</State>
|
||||
<State>Deprecated</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Deprecated">
|
||||
<Permission>/device-mgt/applications/life-cycle/deprecate</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/deprecate</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Removed</State>
|
||||
<State>In-Review</State>
|
||||
<State>Published</State>
|
||||
<State>Retired</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Removed">
|
||||
<LifecycleState name="Retired">
|
||||
<IsEndState>true</IsEndState>
|
||||
<Permission>/device-mgt/applications/life-cycle/remove</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/retire</Permission>
|
||||
</LifecycleState>
|
||||
</LifecycleStates>
|
||||
|
||||
|
||||
@ -45,7 +45,6 @@ import org.wso2.carbon.device.application.mgt.common.wrapper.ApplicationWrapper;
|
||||
import java.util.List;
|
||||
import javax.validation.Valid;
|
||||
import javax.ws.rs.Consumes;
|
||||
import javax.ws.rs.DELETE;
|
||||
import javax.ws.rs.GET;
|
||||
import javax.ws.rs.POST;
|
||||
import javax.ws.rs.PUT;
|
||||
@ -416,15 +415,15 @@ public interface ApplicationManagementPublisherAPI {
|
||||
@Multipart(value = "screenshot3") Attachment screenshot3
|
||||
);
|
||||
|
||||
@DELETE
|
||||
@PUT
|
||||
@Consumes("application/json")
|
||||
@Path("/{appId}")
|
||||
@Path("/retire/{appId}")
|
||||
@ApiOperation(
|
||||
consumes = MediaType.APPLICATION_JSON,
|
||||
produces = MediaType.APPLICATION_JSON,
|
||||
httpMethod = "DELETE",
|
||||
value = "Delete the application with the given UUID",
|
||||
notes = "This will delete the application with the given UUID",
|
||||
httpMethod = "PUT",
|
||||
value = "Retire the application with the given UUID",
|
||||
notes = "This will retire the application with the given UUID",
|
||||
tags = "ApplicationDTO Management",
|
||||
extensions = {
|
||||
@Extension(properties = {
|
||||
@ -449,8 +448,7 @@ public interface ApplicationManagementPublisherAPI {
|
||||
code = 404,
|
||||
message = "Application not found"),
|
||||
})
|
||||
//todo add new scope and permission
|
||||
Response deleteApplication(
|
||||
Response retireApplication(
|
||||
@ApiParam(
|
||||
name = "UUID",
|
||||
value = "Unique identifier of the ApplicationDTO",
|
||||
@ -592,7 +590,7 @@ public interface ApplicationManagementPublisherAPI {
|
||||
httpMethod = "PUT",
|
||||
value = "Update an application release",
|
||||
notes = "This will update a new application release",
|
||||
tags = "ApplicationDTO Management",
|
||||
tags = "Application Management",
|
||||
extensions = {
|
||||
@Extension(properties = {
|
||||
@ExtensionProperty(name = SCOPE, value = "perm:app:publisher:update")
|
||||
@ -750,4 +748,39 @@ public interface ApplicationManagementPublisherAPI {
|
||||
required = true)
|
||||
@QueryParam("action") String action
|
||||
);
|
||||
|
||||
@GET
|
||||
@Path("/lifecycle-config")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
@ApiOperation(
|
||||
consumes = MediaType.APPLICATION_JSON,
|
||||
produces = MediaType.APPLICATION_JSON,
|
||||
httpMethod = "GET",
|
||||
value = "get application management UI configuration",
|
||||
notes = "This will get all UI configuration of application management",
|
||||
tags = "Application Management",
|
||||
extensions = {
|
||||
@Extension(properties = {
|
||||
@ExtensionProperty(name = SCOPE, value = "perm:app:publisher:update")
|
||||
})
|
||||
}
|
||||
)
|
||||
@ApiResponses(
|
||||
value = {
|
||||
@ApiResponse(
|
||||
code = 200,
|
||||
message = "OK. \n Successfully got Lifecycle Config.",
|
||||
response = ApplicationList.class),
|
||||
@ApiResponse(
|
||||
code = 404,
|
||||
message = "Not Found. There doesn't have an defined <LifecycleStates> in app management "
|
||||
+ "configuration file." +
|
||||
"query."),
|
||||
@ApiResponse(
|
||||
code = 500,
|
||||
message = "Internal Server Error. \n Error occurred while getting the lifecycle config.",
|
||||
response = ErrorResponse.class)
|
||||
})
|
||||
Response getLifecycleConfig();
|
||||
|
||||
}
|
||||
|
||||
@ -77,7 +77,7 @@ public interface ApplicationManagementPublisherAdminAPI {
|
||||
String SCOPE = "scope";
|
||||
|
||||
@DELETE
|
||||
@Path("/release/{appId}/{uuid}")
|
||||
@Path("/release/{uuid}")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
@ApiOperation(
|
||||
@ -108,11 +108,6 @@ public interface ApplicationManagementPublisherAdminAPI {
|
||||
message = "Internal Server Error. \n Error occurred while deleting application release.",
|
||||
response = ErrorResponse.class)
|
||||
}) Response deleteApplicationRelease(
|
||||
@ApiParam(
|
||||
name = "appId",
|
||||
value = "application Id",
|
||||
required = true)
|
||||
@PathParam("appId") int applicationId,
|
||||
@ApiParam(
|
||||
name = "uuid",
|
||||
value = "application release UUID",
|
||||
|
||||
@ -24,10 +24,11 @@ import org.apache.cxf.jaxrs.ext.multipart.Attachment;
|
||||
import org.apache.cxf.jaxrs.ext.multipart.Multipart;
|
||||
import org.wso2.carbon.device.application.mgt.common.*;
|
||||
import org.wso2.carbon.device.application.mgt.common.dto.LifecycleStateDTO;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationStorageManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.LifecycleManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.RequestValidatingException;
|
||||
import org.wso2.carbon.device.application.mgt.common.response.Application;
|
||||
import org.wso2.carbon.device.application.mgt.common.response.ApplicationRelease;
|
||||
import org.wso2.carbon.device.application.mgt.common.services.AppmDataHandler;
|
||||
import org.wso2.carbon.device.application.mgt.common.wrapper.ApplicationReleaseWrapper;
|
||||
import org.wso2.carbon.device.application.mgt.common.wrapper.ApplicationUpdateWrapper;
|
||||
import org.wso2.carbon.device.application.mgt.common.wrapper.ApplicationWrapper;
|
||||
@ -37,7 +38,6 @@ import org.wso2.carbon.device.application.mgt.core.util.APIUtil;
|
||||
import org.wso2.carbon.device.application.mgt.publisher.api.services.ApplicationManagementPublisherAPI;
|
||||
import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManagementException;
|
||||
import org.wso2.carbon.device.application.mgt.common.services.ApplicationManager;
|
||||
import org.wso2.carbon.device.application.mgt.common.services.ApplicationStorageManager;
|
||||
import org.wso2.carbon.device.application.mgt.core.exception.NotFoundException;
|
||||
|
||||
import java.io.IOException;
|
||||
@ -49,7 +49,6 @@ import java.util.Map;
|
||||
import javax.activation.DataHandler;
|
||||
import javax.validation.Valid;
|
||||
import javax.ws.rs.Consumes;
|
||||
import javax.ws.rs.DELETE;
|
||||
import javax.ws.rs.GET;
|
||||
import javax.ws.rs.POST;
|
||||
import javax.ws.rs.PUT;
|
||||
@ -433,12 +432,13 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
||||
}
|
||||
|
||||
|
||||
@DELETE
|
||||
@Path("/{appId}")
|
||||
public Response deleteApplication(@PathParam("appId") int applicationId) {
|
||||
@PUT
|
||||
@Path("/retire/{appId}")
|
||||
public Response retireApplication(
|
||||
@PathParam("appId") int applicationId) {
|
||||
ApplicationManager applicationManager = APIUtil.getApplicationManager();
|
||||
try {
|
||||
applicationManager.deleteApplication(applicationId);
|
||||
applicationManager.retireApplication(applicationId);
|
||||
return Response.status(Response.Status.OK)
|
||||
.entity("Successfully deleted the application for application ID: " + applicationId).build();
|
||||
} catch (NotFoundException e) {
|
||||
@ -513,6 +513,21 @@ public class ApplicationManagementPublisherAPIImpl implements ApplicationManagem
|
||||
return Response.status(Response.Status.CREATED).entity("Lifecycle state added successfully.").build();
|
||||
}
|
||||
|
||||
@GET
|
||||
@Override
|
||||
@Consumes("application/json")
|
||||
@Path("/lifecycle-config")
|
||||
public Response getLifecycleConfig() {
|
||||
AppmDataHandler dataHandler = APIUtil.getDataHandler();
|
||||
try {
|
||||
return Response.status(Response.Status.OK).entity(dataHandler.getLifecycleConfiguration()).build();
|
||||
} catch (LifecycleManagementException e) {
|
||||
String msg = "Error Occurred while accessing lifecycle manager.";
|
||||
log.error(msg);
|
||||
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(msg).build();
|
||||
}
|
||||
}
|
||||
|
||||
/***
|
||||
*
|
||||
* @param binaryFile binary file of the application release
|
||||
|
||||
@ -74,28 +74,27 @@ public class ApplicationManagementPublisherAdminAPIImpl implements ApplicationMa
|
||||
private static Log log = LogFactory.getLog(ApplicationManagementPublisherAdminAPIImpl.class);
|
||||
|
||||
@DELETE
|
||||
@Path("/release/{appId}/{uuid}")
|
||||
@Path("/release/{uuid}")
|
||||
public Response deleteApplicationRelease(
|
||||
@PathParam("appId") int applicationId,
|
||||
@PathParam("uuid") String releaseUuid) {
|
||||
ApplicationManager applicationManager = APIUtil.getApplicationManager();
|
||||
try {
|
||||
applicationManager.deleteApplicationRelease(applicationId, releaseUuid);
|
||||
applicationManager.deleteApplicationRelease(releaseUuid);
|
||||
String responseMsg = "Successfully deleted the application release for uuid: " + releaseUuid + "";
|
||||
return Response.status(Response.Status.OK).entity(responseMsg).build();
|
||||
} catch (NotFoundException e) {
|
||||
String msg = "Couldn't found application release which is having application id: " + applicationId
|
||||
+ " and application release UUID:" + releaseUuid;
|
||||
} catch (NotFoundException e) {
|
||||
String msg =
|
||||
"Couldn't found application release which is having application release UUID:" + releaseUuid;
|
||||
log.error(msg, e);
|
||||
return Response.status(Response.Status.NOT_FOUND).entity(msg).build();
|
||||
} catch (ForbiddenException e) {
|
||||
String msg =
|
||||
"You don't have require permission to delete the application release which has UUID " + releaseUuid
|
||||
+ " and application ID " + applicationId;
|
||||
String msg = "You don't have require permission to delete the application release which has UUID "
|
||||
+ releaseUuid;
|
||||
log.error(msg, e);
|
||||
return Response.status(Response.Status.FORBIDDEN).entity(msg).build();
|
||||
}catch (ApplicationManagementException e) {
|
||||
String msg = "Error occurred while deleting the application: " + applicationId;
|
||||
} catch (ApplicationManagementException e) {
|
||||
String msg = "Error occurred while deleting the application release for application release UUID:: "
|
||||
+ releaseUuid;
|
||||
log.error(msg, e);
|
||||
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(msg).build();
|
||||
}
|
||||
|
||||
@ -76,58 +76,59 @@
|
||||
<LifecycleState name="Created">
|
||||
<IsAppUpdatable>true</IsAppUpdatable>
|
||||
<IsInitialState>true</IsInitialState>
|
||||
<Permission>/device-mgt/applications/life-cycle/create</Permission>
|
||||
<IsDeletableState>true</IsDeletableState>
|
||||
<Permission>/app-mgt/life-cycle/application/create</Permission>
|
||||
<ProceedingStates>
|
||||
<State>In-Review</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="In-Review">
|
||||
<Permission>/device-mgt/applications/life-cycle/in-review</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/review</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Rejected</State>
|
||||
<State>Approved</State>
|
||||
<State>Created</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Approved">
|
||||
<Permission>/device-mgt/applications/life-cycle/approve</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/approve</Permission>
|
||||
<ProceedingStates>
|
||||
<State>In-Review</State>
|
||||
<State>Published</State>
|
||||
<State>Created</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Rejected">
|
||||
<Permission>/device-mgt/applications/life-cycle/reject</Permission>
|
||||
<IsDeletableState>true</IsDeletableState>
|
||||
<Permission>/app-mgt/life-cycle/application/reject</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Created</State>
|
||||
<State>Removed</State>
|
||||
<State>In-Review</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Published">
|
||||
<IsAppInstallable>true</IsAppInstallable>
|
||||
<Permission>/device-mgt/applications/life-cycle/publish</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/publish</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Unpublished</State>
|
||||
<State>Blocked</State>
|
||||
<State>Deprecated</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Unpublished">
|
||||
<Permission>/device-mgt/applications/life-cycle/unpublish</Permission>
|
||||
<LifecycleState name="Blocked">
|
||||
<Permission>/app-mgt/life-cycle/application/block</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Published</State>
|
||||
<State>In-Review</State>
|
||||
<State>Removed</State>
|
||||
<State>Deprecated</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Deprecated">
|
||||
<Permission>/device-mgt/applications/life-cycle/deprecate</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/deprecate</Permission>
|
||||
<ProceedingStates>
|
||||
<State>Removed</State>
|
||||
<State>In-Review</State>
|
||||
<State>Published</State>
|
||||
<State>Retired</State>
|
||||
</ProceedingStates>
|
||||
</LifecycleState>
|
||||
<LifecycleState name="Removed">
|
||||
<LifecycleState name="Retired">
|
||||
<IsEndState>true</IsEndState>
|
||||
<Permission>/device-mgt/applications/life-cycle/remove</Permission>
|
||||
<Permission>/app-mgt/life-cycle/application/retire</Permission>
|
||||
</LifecycleState>
|
||||
</LifecycleStates>
|
||||
|
||||
|
||||
@ -157,7 +157,7 @@ VALUES ('PUBLISHED', 'PUBLISHED', 'State in which Application is in published st
|
||||
/
|
||||
|
||||
INSERT INTO APPM_LIFECYCLE_STATE (NAME, IDENTIFIER, DESCRIPTION)
|
||||
VALUES ('UNPUBLISHED', 'UNPUBLISHED', 'State in which Application is in un published state.')
|
||||
VALUES ('BLOCKED', 'BLOCKED', 'State in which Application is in un published state.')
|
||||
/
|
||||
|
||||
INSERT INTO APPM_LIFECYCLE_STATE (NAME, IDENTIFIER, DESCRIPTION)
|
||||
|
||||
@ -87,7 +87,7 @@ VALUES ('REJECTED', 'REJECTED', 'State in which Application is rejected after re
|
||||
INSERT INTO APPM_LIFECYCLE_STATE (NAME, IDENTIFIER, DESCRIPTION)
|
||||
VALUES ('PUBLISHED', 'PUBLISHED', 'State in which Application is in published state.');
|
||||
INSERT INTO APPM_LIFECYCLE_STATE (NAME, IDENTIFIER, DESCRIPTION)
|
||||
VALUES ('UNPUBLISHED', 'UNPUBLISHED', 'State in which Application is in un published state.');
|
||||
VALUES ('BLOCKED', 'BLOCKED', 'State in which Application is in un published state.');
|
||||
INSERT INTO APPM_LIFECYCLE_STATE (NAME, IDENTIFIER, DESCRIPTION)
|
||||
VALUES ('RETIRED', 'RETIRED', 'Retiring an application to indicate end of life state,');
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user