mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Improve APPM logic
This commit is contained in:
parent
b82717790d
commit
a372e42443
@ -88,5 +88,5 @@ public interface ApplicationStorageManager {
|
||||
* @return {@link InputStream}
|
||||
* @throws ApplicationStorageManagementException throws if an error occurs when accessing the file.
|
||||
*/
|
||||
InputStream getFileSttream(String path) throws ApplicationStorageManagementException;
|
||||
InputStream getFileStream(String path) throws ApplicationStorageManagementException;
|
||||
}
|
||||
|
||||
@ -583,12 +583,14 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (UserStoreException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"User-store exception while checking whether the user " + userName + " of tenant " + tenantId
|
||||
+ " has the publisher permission", e);
|
||||
String msg = "User-store exception while checking whether the user " + userName + " of tenant " + tenantId
|
||||
+ " has the publisher permission";
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"DAO exception while getting applications for the user " + userName + " of tenant " + tenantId, e);
|
||||
String msg = "DAO exception while getting applications for the user " + userName + " of tenant " + tenantId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
@ -792,23 +794,26 @@ public class ApplicationManagerImpl implements ApplicationManager {
|
||||
ConnectionManagerUtil.commitDBTransaction();
|
||||
return applicationRelease;
|
||||
} catch (TransactionManagementException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"Error occurred while staring application release creating transaction for application Id: "
|
||||
+ applicationId, e);
|
||||
String msg = "Error occurred while staring application release creating transaction for application Id: "
|
||||
+ applicationId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (DBConnectionException e) {
|
||||
throw new ApplicationManagementException(
|
||||
"Error occurred while adding application release into IoTS app management ApplicationDTO id of the "
|
||||
+ "application release: " + applicationId, e);
|
||||
|
||||
String msg = "Error occurred while adding application release into IoTS app management ApplicationDTO id of"
|
||||
+ " the application release: " + applicationId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (LifeCycleManagementDAOException e) {
|
||||
ConnectionManagerUtil.rollbackDBTransaction();
|
||||
throw new ApplicationManagementException(
|
||||
"Error occurred while adding new application release lifecycle state to the application release: "
|
||||
+ applicationId, e);
|
||||
String msg = "Error occurred while adding new application release lifecycle state to the application"
|
||||
+ " release: " + applicationId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} catch (ApplicationManagementDAOException e) {
|
||||
ConnectionManagerUtil.rollbackDBTransaction();
|
||||
throw new ApplicationManagementException(
|
||||
"Error occurred while adding new application release for application " + applicationId, e);
|
||||
String msg = "Error occurred while adding new application release for application " + applicationId;
|
||||
log.error(msg);
|
||||
throw new ApplicationManagementException(msg, e);
|
||||
} finally {
|
||||
ConnectionManagerUtil.closeDBConnection();
|
||||
}
|
||||
|
||||
@ -212,7 +212,7 @@ public class ApplicationStorageManagerImpl implements ApplicationStorageManager
|
||||
}
|
||||
|
||||
@Override
|
||||
public InputStream getFileSttream (String path) throws ApplicationStorageManagementException {
|
||||
public InputStream getFileStream(String path) throws ApplicationStorageManagementException {
|
||||
String filePath = storagePath + path;
|
||||
try {
|
||||
return StorageManagementUtil.getInputStream(filePath);
|
||||
|
||||
@ -80,7 +80,7 @@ public class AppmDataHandlerImpl implements AppmDataHandler {
|
||||
throw new NotFoundException(msg);
|
||||
}
|
||||
artifactPath = appReleaseHashValue + Constants.FORWARD_SLASH + artifactName;
|
||||
InputStream inputStream = applicationStorageManager.getFileSttream(artifactPath);
|
||||
InputStream inputStream = applicationStorageManager.getFileStream(artifactPath);
|
||||
if (inputStream == null) {
|
||||
String msg = "Couldn't file the file in the file system. File path: " + artifactPath;
|
||||
log.error(msg);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user