From 297c7d1e9633c036ea61b8a5d8e7c19bd1dd93cf Mon Sep 17 00:00:00 2001 From: Dileesha Rajapakse Date: Mon, 26 Oct 2015 17:55:50 +0530 Subject: [PATCH 1/5] Added android sql scripts --- .../dbscripts/plugins/mssql_android.sql | 53 ++++++++++++ .../dbscripts/plugins/mysql_android.sql | 41 +++++++-- .../resources/dbscripts/plugins/mysql_ios.sql | 35 +++++++- .../dbscripts/plugins/mysql_windows.sql | 86 +++++++++++-------- .../dbscripts/plugins/oracle_android.sql | 63 ++++++++++++++ 5 files changed, 234 insertions(+), 44 deletions(-) create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_android.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_android.sql diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_android.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_android.sql new file mode 100644 index 000000000..3309b033a --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_android.sql @@ -0,0 +1,53 @@ +-- ----------------------------------------------------- +-- Table `AD_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE AD_DEVICE ( + [ANDROID_DEVICE_ID] VARCHAR(45) NOT NULL, + [GCM_TOKEN] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_INFO] VARCHAR(8000) NULL DEFAULT NULL, + [IMEI] VARCHAR(45) NULL DEFAULT NULL, + [IMSI] VARCHAR(45) NULL DEFAULT NULL, + [OS_VERSION] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_MODEL] VARCHAR(45) NULL DEFAULT NULL, + [VENDOR] VARCHAR(45) NULL DEFAULT NULL, + [LATITUDE] VARCHAR(45) NULL DEFAULT NULL, + [LONGITUDE] VARCHAR(45) NULL DEFAULT NULL, + [SERIAL] VARCHAR(45) NULL DEFAULT NULL, + [MAC_ADDRESS] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_NAME] VARCHAR(100) NULL DEFAULT NULL, + PRIMARY KEY ([ANDROID_DEVICE_ID])); + +-- ----------------------------------------------------- +-- Table `AD_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE AD_FEATURE ( + [ID] INT NOT NULL IDENTITY, + [CODE] VARCHAR(45) NOT NULL, + [NAME] VARCHAR(100) NULL, + [DESCRIPTION] VARCHAR(200) NULL, + PRIMARY KEY ([ID])); + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- +INSERT INTO AD_FEATURE (CODE, NAME, DESCRIPTION) +VALUES +('DEVICE_LOCK', 'Device Lock', 'Lock the device'), +('DEVICE_LOCATION', 'Location', 'Request coordinates of device location'), +('WIFI', 'Wifi', 'Setting up wifi configuration'), +('CAMERA', 'Camera', 'Enable or disable camera'), +('EMAIL', 'Email', 'Configure email settings'), +('DEVICE_MUTE', 'Mute', 'Enable mute in the device'), +('DEVICE_INFO', 'Device Info', 'Request device information'), +('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Remove enterprise applications'), +('CLEAR_PASSWORD', 'Clear Password', 'Clear current password'), +('WIPE_DATA', 'Wipe Data', 'Factory reset the device'), +('APPLICATION_LIST', 'Application List', 'Request list of current installed applications'), +('CHANGE_LOCK_CODE', 'Change Lock-code', 'Change current lock code'), +('INSTALL_APPLICATION', 'Install App', 'Install Enterprise or Market application'), +('UNINSTALL_APPLICATION', 'Uninstall App', 'Uninstall application'), +('BLACKLIST_APPLICATIONS', 'Blacklist app', 'Blacklist applications'), +('ENCRYPT_STORAGE', 'Encrypt storage', 'Encrypt storage'), +('DEVICE_RING', 'Ring', 'Ring the device'), +('PASSCODE_POLICY', 'Password Policy', 'Set passcode policy'), +('NOTIFICATION', 'Message', 'Send message'); \ No newline at end of file diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql index 2c5ed863c..7161791dd 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql @@ -1,10 +1,10 @@ -- ----------------------------------------------------- --- Table `MBL_DEVICE` +-- Table `AD_DEVICE` -- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( - `ANDROID_DEVICE_ID` VARCHAR(45) NOT NULL , - `DEVICE_INFO` VARCHAR(500) NULL DEFAULT NULL, +CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( + `ANDROID_DEVICE_ID` VARCHAR(45) NOT NULL, `GCM_TOKEN` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, `IMEI` VARCHAR(45) NULL DEFAULT NULL, `IMSI` VARCHAR(45) NULL DEFAULT NULL, `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, @@ -16,11 +16,10 @@ CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, PRIMARY KEY (`ANDROID_DEVICE_ID`)) -ENGINE = InnoDB; - + ENGINE = InnoDB; -- ----------------------------------------------------- --- Table `MBL_FEATURE` +-- Table `AD_FEATURE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AD_FEATURE` ( `ID` INT NOT NULL AUTO_INCREMENT, @@ -28,5 +27,31 @@ CREATE TABLE IF NOT EXISTS `AD_FEATURE` ( `NAME` VARCHAR(100) NULL, `DESCRIPTION` VARCHAR(200) NULL, PRIMARY KEY (`ID`)) -ENGINE = InnoDB; + ENGINE = InnoDB; + + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- +INSERT INTO AD_FEATURE (CODE, NAME, DESCRIPTION) +VALUES +('DEVICE_LOCK', 'Device Lock', 'Lock the device'), +('DEVICE_LOCATION', 'Location', 'Request coordinates of device location'), +('WIFI', 'Wifi', 'Setting up wifi configuration'), +('CAMERA', 'Camera', 'Enable or disable camera'), +('EMAIL', 'Email', 'Configure email settings'), +('DEVICE_MUTE', 'Mute', 'Enable mute in the device'), +('DEVICE_INFO', 'Device Info', 'Request device information'), +('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Remove enterprise applications'), +('CLEAR_PASSWORD', 'Clear Password', 'Clear current password'), +('WIPE_DATA', 'Wipe Data', 'Factory reset the device'), +('APPLICATION_LIST', 'Application List', 'Request list of current installed applications'), +('CHANGE_LOCK_CODE', 'Change Lock-code', 'Change current lock code'), +('INSTALL_APPLICATION', 'Install App', 'Install Enterprise or Market application'), +('UNINSTALL_APPLICATION', 'Uninstall App', 'Uninstall application'), +('BLACKLIST_APPLICATIONS', 'Blacklist app', 'Blacklist applications'), +('ENCRYPT_STORAGE', 'Encrypt storage', 'Encrypt storage'), +('DEVICE_RING', 'Ring', 'Ring the device'), +('PASSCODE_POLICY', 'Password Policy', 'Set passcode policy'), +('NOTIFICATION', 'Message', 'Send message'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql index 1b90f68c6..a9fc3da00 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql @@ -35,4 +35,37 @@ CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( ENGINE = InnoDB; -long +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- + +INSERT INTO IOS_FEATURE (CODE, NAME, DESCRIPTION) +VALUES +('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), +
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 +('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), +
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), +
('CELLULAR', 'Cellular', 'Cellular'), +
('APN', 'APN', 'APN'), +
('RESTRICTION', 'Restrictions', 'Restrictions operation'), +
('WIFI', 'Wifi', 'Wifi'), +
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 +('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 +('LOCATION', 'Location', 'Fetch location'), 
 +('ALARM', 'Alarm', 'Alarm device'), +('APPLICATION_LIST', 'Application list', 'Application list'), +('PROFILE_LIST', 'Profile List', 'Profile list'), +('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), +('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), +('CALDAV', 'CalDev', 'Setup CalDav'), +('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), +('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), +('EMAIL', 'Email', 'Email operation'), +('LDAP', 'LDAP', 'LDAP operation'), +('WEB_CLIP', 'Web Clip', 'Web clip operation'), +('VPN', 'VPN', 'VPN operation'), +('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), +('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), +('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), +('APP_LOCK', 'App lock', 'App lock operation'), +('GET_RESTRICTIONS', 'Get restrictions', 'Get restrictions operation'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql index dfabdc009..0605ec433 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql @@ -1,9 +1,24 @@ -- ----------------------------------------------------- --- Table `MBL_DEVICE` +-- Table `WINDOWS_FEATURE` -- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `MBL_DEVICE` ( +CREATE TABLE IF NOT EXISTS `WINDOWS_FEATURE` ( + `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, + `CODE` VARCHAR(45) NOT NULL, + `NAME` VARCHAR(100) NULL, + `DESCRIPTION` VARCHAR(200) NULL, + PRIMARY KEY (`FEATURE_ID`)) + ENGINE = InnoDB; + + + +-- ----------------------------------------------------- +-- Table `WINDOWS_DEVICE` +-- ----------------------------------------------------- + + CREATE TABLE IF NOT EXISTS `WINDOWS_DEVICE` ( `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL, - `PUSH_TOKEN` VARCHAR(45) NULL DEFAULT NULL, + `CHANNEL_URI` VARCHAR(100) NULL DEFAULT NULL, + `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, `IMEI` VARCHAR(45) NULL DEFAULT NULL, `IMSI` VARCHAR(45) NULL DEFAULT NULL, `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, @@ -11,42 +26,43 @@ CREATE TABLE IF NOT EXISTS `MBL_DEVICE` ( `VENDOR` VARCHAR(45) NULL DEFAULT NULL, `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, - `CHALLENGE` VARCHAR(45) NULL DEFAULT NULL, - `TOKEN` VARCHAR(50) NULL DEFAULT NULL, - `UNLOCK_TOKEN` VARCHAR(2000) NULL DEFAULT NULL, `SERIAL` VARCHAR(45) NULL DEFAULT NULL, + `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, PRIMARY KEY (`MOBILE_DEVICE_ID`)) -ENGINE = InnoDB; + ENGINE = InnoDB; -- ----------------------------------------------------- --- Table `MBL_FEATURE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `MBL_FEATURE` ( - `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, - `DEVICE_TYPE` VARCHAR(45) NOT NULL, - `CODE` VARCHAR(45) NULL, - `NAME` VARCHAR(100) NULL, - `DESCRIPTION` VARCHAR(200) NULL, - PRIMARY KEY (`FEATURE_ID`)) -ENGINE = InnoDB; - --- ----------------------------------------------------- --- Table `MBL_FEATURE_PROPERTY` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `MBL_FEATURE_PROPERTY` ( - `PROPERTY` VARCHAR(45) NOT NULL , - `FEATURE_ID` INT NOT NULL , - PRIMARY KEY (`PROPERTY`), - CONSTRAINT `fk_MBL_FEATURE_PROPERTY_MBL_FEATURE1` - FOREIGN KEY (`FEATURE_ID`) - REFERENCES `MBL_FEATURE` (`FEATURE_ID`) - ON DELETE NO ACTION - ON UPDATE NO ACTION) -ENGINE = InnoDB; - --- ----------------------------------------------------- --- Inserts +-- TODO remove this later -- ----------------------------------------------------- -INSERT INTO MBL_FEATURE (DEVICE_TYPE,NAME,CODE, DESCRIPTION) VALUES ('android','DEVICE_LOCK','503A','Device Lock'),('android','WIPE','504A','Device Wipe'),('android','CLEARPASSCODE','505A','Clear Passcode'),('android','APPLIST','502A','Get All Applications'),('android','LOCATION','501A','Location'),('android','INFO','500A','Device Information'),('android','NOTIFICATION','506A','Message'),('android','WIFI','507A','Setup Wifi'),('android','CAMERA','508A','Camera Control'),('android','MUTE','513A','Mute Device'),('android','INSTALLAPP','509A','Install Application'),('android','UNINSTALLAPP','510A','Uninstall Application'),('android','ENCRYPT','511A','Encrypt Storage'),('android','APN','512A','APN'),('android','WEBCLIP','518A','Create Webclips'),('android','PASSWORDPOLICY','519A','Passcode Policy'),('android','EMAIL','520A','Email Configuration'),('android','GOOGLECALENDAR','521A','Calender Subscription'),('android','VPN','523A','VPN'),('android','LDAP','524A','LDAP'),('android','CHANGEPASSWORD','526A','Set Passcode'),('android','ENTERPRISEWIPE','527A','Enterprise Wipe'),('android','POLICY','500P','Policy Enforcement'),('android','MONITORING','501P','Policy Monitoring '),('android','BLACKLISTAPPS','528B','Blacklist Apps'),('android','REVOKEPOLICY','502P','Revoke Policy'); +INSERT INTO WINDOWS_FEATURE (CODE, NAME, DESCRIPTION) +VALUES +('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), +
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 +('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), +
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), +
('CELLULAR', 'Cellular', 'Cellular'), +
('APN', 'APN', 'APN'), +
('RESTRICTION', 'Restrictions', 'Restrictions operation'), +
('WIFI', 'Wifi', 'Wifi'), +
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 +('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 +('LOCATION', 'Location', 'Fetch location'), 
 +('ALARM', 'Alarm', 'Alarm device'), +('APPLICATION_LIST', 'Application list', 'Application list'), +('PROFILE_LIST', 'Profile List', 'Profile list'), +('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), +('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), +('CALDAV', 'CalDev', 'Setup CalDav'), +('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), +('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), +('EMAIL', 'Email', 'Email operation'), +('LDAP', 'LDAP', 'LDAP operation'), +('WEB_CLIP', 'Web Clip', 'Web clip operation'), +('VPN', 'VPN', 'VPN operation'), +('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), +('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), +('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), +('APP_LOCK', 'App lock', 'App lock operation'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_android.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_android.sql new file mode 100644 index 000000000..57c71b1af --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_android.sql @@ -0,0 +1,63 @@ +-- ----------------------------------------------------- +-- Table `AD_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE AD_DEVICE ( + ANDROID_DEVICE_ID VARCHAR2(45) NOT NULL, + GCM_TOKEN VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_INFO VARCHAR2(8000) DEFAULT NULL NULL, + IMEI VARCHAR2(45) DEFAULT NULL NULL, + IMSI VARCHAR2(45) DEFAULT NULL NULL, + OS_VERSION VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_MODEL VARCHAR2(45) DEFAULT NULL NULL, + VENDOR VARCHAR2(45) DEFAULT NULL NULL, + LATITUDE VARCHAR2(45) DEFAULT NULL NULL, + LONGITUDE VARCHAR2(45) DEFAULT NULL NULL, + SERIAL VARCHAR2(45) DEFAULT NULL NULL, + MAC_ADDRESS VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_NAME VARCHAR2(100) DEFAULT NULL NULL, + PRIMARY KEY (ANDROID_DEVICE_ID)); + +-- ----------------------------------------------------- +-- Table `AD_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE AD_FEATURE ( + ID NUMBER(10) NOT NULL, + CODE VARCHAR2(45) NOT NULL, + NAME VARCHAR2(100) NULL, + DESCRIPTION VARCHAR2(200) NULL, + PRIMARY KEY (ID)); + +-- Generate ID using sequence and trigger +CREATE SEQUENCE AD_FEATURE_seq START WITH 1 INCREMENT BY 1; + +CREATE OR REPLACE TRIGGER AD_FEATURE_seq_tr + BEFORE INSERT ON AD_FEATURE FOR EACH ROW + WHEN (NEW.ID IS NULL) +BEGIN + SELECT AD_FEATURE_seq.NEXTVAL INTO :NEW.ID FROM DUAL; +END; +/ + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- +INSERT INTO AD_FEATURE (CODE, NAME, DESCRIPTION) + SELECT 'DEVICE_LOCK', 'Device Lock', 'Lock the device' FROM dual UNION ALL + SELECT 'DEVICE_LOCATION', 'Location', 'Request coordinates of device location' FROM dual UNION ALL + SELECT 'WIFI', 'Wifi', 'Setting up wifi configuration' FROM dual UNION ALL + SELECT 'CAMERA', 'Camera', 'Enable or disable camera' FROM dual UNION ALL + SELECT 'EMAIL', 'Email', 'Configure email settings' FROM dual UNION ALL + SELECT 'DEVICE_MUTE', 'Mute', 'Enable mute in the device' FROM dual UNION ALL + SELECT 'DEVICE_INFO', 'Device Info', 'Request device information' FROM dual UNION ALL + SELECT 'ENTERPRISE_WIPE', 'Enterprise Wipe', 'Remove enterprise applications' FROM dual UNION ALL + SELECT 'CLEAR_PASSWORD', 'Clear Password', 'Clear current password' FROM dual UNION ALL + SELECT 'WIPE_DATA', 'Wipe Data', 'Factory reset the device' FROM dual UNION ALL + SELECT 'APPLICATION_LIST', 'Application List', 'Request list of current installed applications' FROM dual UNION ALL + SELECT 'CHANGE_LOCK_CODE', 'Change Lock-code', 'Change current lock code' FROM dual UNION ALL + SELECT 'INSTALL_APPLICATION', 'Install App', 'Install Enterprise or Market application' FROM dual UNION ALL + SELECT 'UNINSTALL_APPLICATION', 'Uninstall App', 'Uninstall application' FROM dual UNION ALL + SELECT 'BLACKLIST_APPLICATIONS', 'Blacklist app', 'Blacklist applications' FROM dual UNION ALL + SELECT 'ENCRYPT_STORAGE', 'Encrypt storage', 'Encrypt storage' FROM dual UNION ALL + SELECT 'DEVICE_RING', 'Ring', 'Ring the device' FROM dual UNION ALL + SELECT 'PASSCODE_POLICY', 'Password Policy', 'Set passcode policy' FROM dual UNION ALL + SELECT 'NOTIFICATION', 'Message', 'Send message' FROM dual; From c2bd221f6484090a9aff1832753d7c75bae77510 Mon Sep 17 00:00:00 2001 From: Dileesha Rajapakse Date: Wed, 28 Oct 2015 11:00:37 +0530 Subject: [PATCH 2/5] Added missing sql DB Scripts --- .../resources/dbscripts/plugins/mssql_ios.sql | 69 ++++++++++++++++ .../dbscripts/plugins/mssql_windows.sql | 61 ++++++++++++++ .../resources/dbscripts/plugins/mysql_ios.sql | 60 +++++++------- .../dbscripts/plugins/mysql_windows.sql | 57 +++++++------ .../dbscripts/plugins/oracle_ios.sql | 80 +++++++++++++++++++ .../dbscripts/plugins/oracle_windows.sql | 72 +++++++++++++++++ 6 files changed, 339 insertions(+), 60 deletions(-) create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_ios.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_windows.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_ios.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_windows.sql diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_ios.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_ios.sql new file mode 100644 index 000000000..871c996eb --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_ios.sql @@ -0,0 +1,69 @@ +-- ----------------------------------------------------- +-- Table `IOS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IOS_FEATURE ( + [FEATURE_ID] INT NOT NULL IDENTITY, + [CODE] VARCHAR(45) NOT NULL, + [NAME] VARCHAR(100) NULL, + [DESCRIPTION] VARCHAR(200) NULL, + PRIMARY KEY ([FEATURE_ID]) ) + ; + + +-- ----------------------------------------------------- +-- Table `IOS_DEVICE` +-- ----------------------------------------------------- + CREATE TABLE IOS_DEVICE ( + [MOBILE_DEVICE_ID] VARCHAR(45) NOT NULL, + [APNS_PUSH_TOKEN] VARCHAR(100) NULL DEFAULT NULL, + [MAGIC_TOKEN] VARCHAR(100) NULL DEFAULT NULL, + [MDM_TOKEN] VARCHAR(100) NULL DEFAULT NULL, + [UNLOCK_TOKEN] VARCHAR(2000) NULL DEFAULT NULL, + [CHALLENGE_TOKEN] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_INFO] VARCHAR(8000) NULL DEFAULT NULL, + [SERIAL] VARCHAR(45) NULL DEFAULT NULL, + [PRODUCT] VARCHAR(45) NULL DEFAULT NULL, + [IMEI] VARCHAR(45) NULL DEFAULT NULL, + [VERSION] VARCHAR(45) NULL DEFAULT NULL, + [MAC_ADDRESS] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_NAME] VARCHAR(100) NULL DEFAULT NULL, + [ICCID] VARCHAR(45) NULL DEFAULT NULL, + [LATITUDE] VARCHAR(45) NULL DEFAULT NULL, + [LONGITUDE] VARCHAR(45) NULL DEFAULT NULL, + PRIMARY KEY ([MOBILE_DEVICE_ID]) ) + ; + + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- + +INSERT INTO IOS_FEATURE (CODE, NAME, DESCRIPTION) VALUES + ('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), + ('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), + ('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), + ('DEVICE_LOCK', 'Device Lock', 'Device Lock'), + ('CELLULAR', 'Cellular', 'Cellular'), + ('APN', 'APN', 'APN'), + ('RESTRICTION', 'Restrictions', 'Restrictions operation'), + ('WIFI', 'Wifi', 'Wifi'), + ('DEVICE_INFO', 'Device Info', 'Device info operation'), + ('AIR_PLAY', 'Air Play', 'AirPlay operation'), + ('LOCATION', 'Location', 'Fetch location'), + ('ALARM', 'Alarm', 'Alarm device'), + ('APPLICATION_LIST', 'Application list', 'Application list'), + ('PROFILE_LIST', 'Profile List', 'Profile list'), + ('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), + ('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), + ('CALDAV', 'CalDev', 'Setup CalDav'), + ('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), + ('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), + ('EMAIL', 'Email', 'Email operation'), + ('LDAP', 'LDAP', 'LDAP operation'), + ('WEB_CLIP', 'Web Clip', 'Web clip operation'), + ('VPN', 'VPN', 'VPN operation'), + ('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), + ('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), + ('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), + ('APP_LOCK', 'App lock', 'App lock operation'), + ('GET_RESTRICTIONS', 'Get restrictions', 'Get restrictions operation'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_windows.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_windows.sql new file mode 100644 index 000000000..6f42b553b --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mssql_windows.sql @@ -0,0 +1,61 @@ +-- ----------------------------------------------------- +-- Table `WINDOWS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE WINDOWS_FEATURE ( + [FEATURE_ID] INT NOT NULL IDENTITY, + [CODE] VARCHAR(45) NOT NULL, + [NAME] VARCHAR(100) NULL, + [DESCRIPTION] VARCHAR(200) NULL, + PRIMARY KEY ([FEATURE_ID])) + ; + + -- ----------------------------------------------------- +-- Table `WINDOWS_DEVICE` +-- ----------------------------------------------------- + CREATE TABLE WINDOWS_DEVICE ( + [MOBILE_DEVICE_ID] VARCHAR(45) NOT NULL, + [CHANNEL_URI] VARCHAR(100) NULL DEFAULT NULL, + [DEVICE_INFO] VARCHAR(8000) NULL DEFAULT NULL, + [IMEI] VARCHAR(45) NULL DEFAULT NULL, + [IMSI] VARCHAR(45) NULL DEFAULT NULL, + [OS_VERSION] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_MODEL] VARCHAR(45) NULL DEFAULT NULL, + [VENDOR] VARCHAR(45) NULL DEFAULT NULL, + [LATITUDE] VARCHAR(45) NULL DEFAULT NULL, + [LONGITUDE] VARCHAR(45) NULL DEFAULT NULL, + [SERIAL] VARCHAR(45) NULL DEFAULT NULL, + [MAC_ADDRESS] VARCHAR(45) NULL DEFAULT NULL, + [DEVICE_NAME] VARCHAR(100) NULL DEFAULT NULL, + PRIMARY KEY ([MOBILE_DEVICE_ID])); + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- +INSERT INTO WINDOWS_FEATURE (CODE, NAME, DESCRIPTION) VALUES +('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), +
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 +('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), +
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), +
('CELLULAR', 'Cellular', 'Cellular'), +
('APN', 'APN', 'APN'), +
('RESTRICTION', 'Restrictions', 'Restrictions operation'), +
('WIFI', 'Wifi', 'Wifi'), +
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 +('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 +('LOCATION', 'Location', 'Fetch location'), 
 +('ALARM', 'Alarm', 'Alarm device'), +('APPLICATION_LIST', 'Application list', 'Application list'), +('PROFILE_LIST', 'Profile List', 'Profile list'), +('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), +('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), +('CALDAV', 'CalDev', 'Setup CalDav'), +('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), +('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), +('EMAIL', 'Email', 'Email operation'), +('LDAP', 'LDAP', 'LDAP operation'), +('WEB_CLIP', 'Web Clip', 'Web clip operation'), +('VPN', 'VPN', 'VPN operation'), +('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), +('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), +('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), +('APP_LOCK', 'App lock', 'App lock operation'); \ No newline at end of file diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql index a9fc3da00..58abd2627 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql @@ -13,7 +13,6 @@ CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( -- ----------------------------------------------------- -- Table `IOS_DEVICE` -- ----------------------------------------------------- - CREATE TABLE IF NOT EXISTS `IOS_DEVICE` ( `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL, `APNS_PUSH_TOKEN` VARCHAR(100) NULL DEFAULT NULL, @@ -39,33 +38,32 @@ CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( -- TODO remove this later -- ----------------------------------------------------- -INSERT INTO IOS_FEATURE (CODE, NAME, DESCRIPTION) -VALUES -('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), -
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 -('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), -
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), -
('CELLULAR', 'Cellular', 'Cellular'), -
('APN', 'APN', 'APN'), -
('RESTRICTION', 'Restrictions', 'Restrictions operation'), -
('WIFI', 'Wifi', 'Wifi'), -
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 -('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 -('LOCATION', 'Location', 'Fetch location'), 
 -('ALARM', 'Alarm', 'Alarm device'), -('APPLICATION_LIST', 'Application list', 'Application list'), -('PROFILE_LIST', 'Profile List', 'Profile list'), -('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), -('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), -('CALDAV', 'CalDev', 'Setup CalDav'), -('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), -('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), -('EMAIL', 'Email', 'Email operation'), -('LDAP', 'LDAP', 'LDAP operation'), -('WEB_CLIP', 'Web Clip', 'Web clip operation'), -('VPN', 'VPN', 'VPN operation'), -('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), -('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), -('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), -('APP_LOCK', 'App lock', 'App lock operation'), -('GET_RESTRICTIONS', 'Get restrictions', 'Get restrictions operation'); +INSERT INTO IOS_FEATURE (CODE, NAME, DESCRIPTION) VALUES + ('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), + ('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), + ('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), + ('DEVICE_LOCK', 'Device Lock', 'Device Lock'), + ('CELLULAR', 'Cellular', 'Cellular'), + ('APN', 'APN', 'APN'), + ('RESTRICTION', 'Restrictions', 'Restrictions operation'), + ('WIFI', 'Wifi', 'Wifi'), + ('DEVICE_INFO', 'Device Info', 'Device info operation'), + ('AIR_PLAY', 'Air Play', 'AirPlay operation'), + ('LOCATION', 'Location', 'Fetch location'), + ('ALARM', 'Alarm', 'Alarm device'), + ('APPLICATION_LIST', 'Application list', 'Application list'), + ('PROFILE_LIST', 'Profile List', 'Profile list'), + ('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), + ('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), + ('CALDAV', 'CalDev', 'Setup CalDav'), + ('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), + ('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), + ('EMAIL', 'Email', 'Email operation'), + ('LDAP', 'LDAP', 'LDAP operation'), + ('WEB_CLIP', 'Web Clip', 'Web clip operation'), + ('VPN', 'VPN', 'VPN operation'), + ('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), + ('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), + ('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), + ('APP_LOCK', 'App lock', 'App lock operation'), + ('GET_RESTRICTIONS', 'Get restrictions', 'Get restrictions operation'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql index 0605ec433..061b7f525 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql @@ -37,32 +37,31 @@ CREATE TABLE IF NOT EXISTS `WINDOWS_FEATURE` ( -- TODO remove this later -- ----------------------------------------------------- -INSERT INTO WINDOWS_FEATURE (CODE, NAME, DESCRIPTION) -VALUES -('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), -
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 -('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), -
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), -
('CELLULAR', 'Cellular', 'Cellular'), -
('APN', 'APN', 'APN'), -
('RESTRICTION', 'Restrictions', 'Restrictions operation'), -
('WIFI', 'Wifi', 'Wifi'), -
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 -('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 -('LOCATION', 'Location', 'Fetch location'), 
 -('ALARM', 'Alarm', 'Alarm device'), -('APPLICATION_LIST', 'Application list', 'Application list'), -('PROFILE_LIST', 'Profile List', 'Profile list'), -('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), -('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), -('CALDAV', 'CalDev', 'Setup CalDav'), -('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), -('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), -('EMAIL', 'Email', 'Email operation'), -('LDAP', 'LDAP', 'LDAP operation'), -('WEB_CLIP', 'Web Clip', 'Web clip operation'), -('VPN', 'VPN', 'VPN operation'), -('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), -('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), -('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), -('APP_LOCK', 'App lock', 'App lock operation'); +INSERT INTO WINDOWS_FEATURE (CODE, NAME, DESCRIPTION) VALUES + ('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), + ('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), + ('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), + ('DEVICE_LOCK', 'Device Lock', 'Device Lock'), + ('CELLULAR', 'Cellular', 'Cellular'), + ('APN', 'APN', 'APN'), + ('RESTRICTION', 'Restrictions', 'Restrictions operation'), + ('WIFI', 'Wifi', 'Wifi'), + ('DEVICE_INFO', 'Device Info', 'Device info operation'), + ('AIR_PLAY', 'Air Play', 'AirPlay operation'), + ('LOCATION', 'Location', 'Fetch location'), + ('ALARM', 'Alarm', 'Alarm device'), + ('APPLICATION_LIST', 'Application list', 'Application list'), + ('PROFILE_LIST', 'Profile List', 'Profile list'), + ('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), + ('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), + ('CALDAV', 'CalDev', 'Setup CalDav'), + ('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), + ('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), + ('EMAIL', 'Email', 'Email operation'), + ('LDAP', 'LDAP', 'LDAP operation'), + ('WEB_CLIP', 'Web Clip', 'Web clip operation'), + ('VPN', 'VPN', 'VPN operation'), + ('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), + ('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), + ('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), + ('APP_LOCK', 'App lock', 'App lock operation'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_ios.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_ios.sql new file mode 100644 index 000000000..1354bf577 --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_ios.sql @@ -0,0 +1,80 @@ +-- ----------------------------------------------------- +-- Table `IOS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IOS_FEATURE ( + FEATURE_ID NUMBER(10) NOT NULL, + CODE VARCHAR2(45) NOT NULL, + NAME VARCHAR2(100) NULL, + DESCRIPTION VARCHAR2(200) NULL, + PRIMARY KEY (FEATURE_ID) ) +; + +-- Generate ID using sequence and trigger +CREATE SEQUENCE IOS_FEATURE_seq START WITH 1 INCREMENT BY 1; + +CREATE OR REPLACE TRIGGER IOS_FEATURE_seq_tr +BEFORE INSERT ON IOS_FEATURE FOR EACH ROW +WHEN (NEW.FEATURE_ID IS NULL) + BEGIN + SELECT IOS_FEATURE_seq.NEXTVAL INTO :NEW.FEATURE_ID FROM DUAL; + END; +/ + + +-- ----------------------------------------------------- +-- Table `IOS_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE IOS_DEVICE ( + MOBILE_DEVICE_ID VARCHAR2(45) NOT NULL, + APNS_PUSH_TOKEN VARCHAR2(100) DEFAULT NULL NULL, + MAGIC_TOKEN VARCHAR2(100) DEFAULT NULL NULL, + MDM_TOKEN VARCHAR2(100) DEFAULT NULL NULL, + UNLOCK_TOKEN VARCHAR2(2000) DEFAULT NULL NULL, + CHALLENGE_TOKEN VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_INFO VARCHAR2(8000) DEFAULT NULL NULL, + SERIAL VARCHAR2(45) DEFAULT NULL NULL, + PRODUCT VARCHAR2(45) DEFAULT NULL NULL, + IMEI VARCHAR2(45) DEFAULT NULL NULL, + VERSION VARCHAR2(45) DEFAULT NULL NULL, + MAC_ADDRESS VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_NAME VARCHAR2(100) DEFAULT NULL NULL, + ICCID VARCHAR2(45) DEFAULT NULL NULL, + LATITUDE VARCHAR2(45) DEFAULT NULL NULL, + LONGITUDE VARCHAR2(45) DEFAULT NULL NULL, + PRIMARY KEY (MOBILE_DEVICE_ID) ) +; + + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- + +INSERT INTO IOS_FEATURE (CODE, NAME, DESCRIPTION) + SELECT 'INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App' FROM dual UNION ALL + SELECT 'INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App' FROM dual UNION ALL + SELECT 'REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App' FROM dual UNION ALL + SELECT 'DEVICE_LOCK', 'Device Lock', 'Device Lock' FROM dual UNION ALL + SELECT 'CELLULAR', 'Cellular', 'Cellular' FROM dual UNION ALL + SELECT 'APN', 'APN', 'APN' FROM dual UNION ALL + SELECT 'RESTRICTION', 'Restrictions', 'Restrictions operation' FROM dual UNION ALL + SELECT 'WIFI', 'Wifi', 'Wifi' FROM dual UNION ALL + SELECT 'DEVICE_INFO', 'Device Info', 'Device info operation' FROM dual UNION ALL + SELECT 'AIR_PLAY', 'Air Play', 'AirPlay operation' FROM dual UNION ALL + SELECT 'LOCATION', 'Location', 'Fetch location' FROM dual UNION ALL + SELECT 'ALARM', 'Alarm', 'Alarm device' FROM dual UNION ALL + SELECT 'APPLICATION_LIST', 'Application list', 'Application list' FROM dual UNION ALL + SELECT 'PROFILE_LIST', 'Profile List', 'Profile list' FROM dual UNION ALL + SELECT 'REMOVE_PROFILE', 'Remove Profile', 'Remove profile' FROM dual UNION ALL + SELECT 'CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode' FROM dual UNION ALL + SELECT 'CALDAV', 'CalDev', 'Setup CalDav' FROM dual UNION ALL + SELECT 'CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription' FROM dual UNION ALL + SELECT 'PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy' FROM dual UNION ALL + SELECT 'EMAIL', 'Email', 'Email operation' FROM dual UNION ALL + SELECT 'LDAP', 'LDAP', 'LDAP operation' FROM dual UNION ALL + SELECT 'WEB_CLIP', 'Web Clip', 'Web clip operation' FROM dual UNION ALL + SELECT 'VPN', 'VPN', 'VPN operation' FROM dual UNION ALL + SELECT 'PER_APP_VPN', 'Per App VPN', 'Per app VPN operation' FROM dual UNION ALL + SELECT 'APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation' FROM dual UNION ALL + SELECT 'ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation' FROM dual UNION ALL + SELECT 'APP_LOCK', 'App lock', 'App lock operation' FROM dual UNION ALL + SELECT 'GET_RESTRICTIONS', 'Get restrictions', 'Get restrictions operation' FROM dual; diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_windows.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_windows.sql new file mode 100644 index 000000000..c14e58cee --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/oracle_windows.sql @@ -0,0 +1,72 @@ +-- ----------------------------------------------------- +-- Table `WINDOWS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE WINDOWS_FEATURE ( + FEATURE_ID NUMBER(10) NOT NULL, + CODE VARCHAR2(45) NOT NULL, + NAME VARCHAR2(100) NULL, + DESCRIPTION VARCHAR2(200) NULL, + PRIMARY KEY (FEATURE_ID)) + ; + +-- Generate ID using sequence and trigger +CREATE SEQUENCE WINDOWS_FEATURE_seq START WITH 1 INCREMENT BY 1; + +CREATE OR REPLACE TRIGGER WINDOWS_FEATURE_seq_tr + BEFORE INSERT ON WINDOWS_FEATURE FOR EACH ROW + WHEN (NEW.FEATURE_ID IS NULL) +BEGIN + SELECT WINDOWS_FEATURE_seq.NEXTVAL INTO :NEW.FEATURE_ID FROM DUAL; +END; +/ + +-- ----------------------------------------------------- +-- Table `WINDOWS_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE WINDOWS_DEVICE ( + MOBILE_DEVICE_ID VARCHAR2(45) NOT NULL, + CHANNEL_URI VARCHAR2(100) DEFAULT NULL NULL, + DEVICE_INFO VARCHAR2(8000) DEFAULT NULL NULL, + IMEI VARCHAR2(45) DEFAULT NULL NULL, + IMSI VARCHAR2(45) DEFAULT NULL NULL, + OS_VERSION VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_MODEL VARCHAR2(45) DEFAULT NULL NULL, + VENDOR VARCHAR2(45) DEFAULT NULL NULL, + LATITUDE VARCHAR2(45) DEFAULT NULL NULL, + LONGITUDE VARCHAR2(45) DEFAULT NULL NULL, + SERIAL VARCHAR2(45) DEFAULT NULL NULL, + MAC_ADDRESS VARCHAR2(45) DEFAULT NULL NULL, + DEVICE_NAME VARCHAR2(100) DEFAULT NULL NULL, + PRIMARY KEY (MOBILE_DEVICE_ID)); + +-- ----------------------------------------------------- +-- TODO remove this later +-- ----------------------------------------------------- +INSERT INTO WINDOWS_FEATURE (CODE, NAME, DESCRIPTION) + SELECT 'INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App' FROM dual UNION ALL +
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 +('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), +
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), +
('CELLULAR', 'Cellular', 'Cellular'), +
('APN', 'APN', 'APN'), +
('RESTRICTION', 'Restrictions', 'Restrictions operation'), +
('WIFI', 'Wifi', 'Wifi'), +
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 +('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 +('LOCATION', 'Location', 'Fetch location'), 
 +('ALARM', 'Alarm', 'Alarm device'), +('APPLICATION_LIST', 'Application list', 'Application list'), +('PROFILE_LIST', 'Profile List', 'Profile list'), +('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), +('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), +('CALDAV', 'CalDev', 'Setup CalDav'), +('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), +('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), +('EMAIL', 'Email', 'Email operation'), +('LDAP', 'LDAP', 'LDAP operation'), +('WEB_CLIP', 'Web Clip', 'Web clip operation'), +('VPN', 'VPN', 'VPN operation'), +('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), +('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), +('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), +('APP_LOCK', 'App lock', 'App lock operation'); \ No newline at end of file From b5548f5744feedc741ea0923f7c8fe36d3f5269c Mon Sep 17 00:00:00 2001 From: prabathabey Date: Wed, 28 Oct 2015 17:55:26 +0530 Subject: [PATCH 3/5] Adding postgreSQL and Oracle schemas for plugin specific datastores and refactoring existing schemas to be consistent across that of all available plugin types --- .../dao/impl/WindowsDeviceDAOImpl.java | 29 ++++---- .../windows/util/WindowsPluginConstants.java | 2 +- .../src/test/resources/sql/h2.sql | 6 +- .../dbscripts/plugins/android/h2.sql | 30 ++++++++ .../{mysql_android.sql => android/mysql.sql} | 4 +- .../dbscripts/plugins/android/oracle.sql | 49 +++++++++++++ .../dbscripts/plugins/android/postgres.sql | 30 ++++++++ .../dbscripts/plugins/h2_android.sql | 56 --------------- .../resources/dbscripts/plugins/h2_ios.sql | 69 ------------------- .../dbscripts/plugins/h2_windows.sql | 65 ----------------- .../resources/dbscripts/plugins/ios/h2.sql | 33 +++++++++ .../plugins/{mysql_ios.sql => ios/mysql.sql} | 33 ++++----- .../dbscripts/plugins/ios/oracle.sql | 51 ++++++++++++++ .../dbscripts/plugins/ios/postgres.sql | 33 +++++++++ .../dbscripts/plugins/mysql_windows.sql | 52 -------------- .../dbscripts/plugins/windows/h2.sql | 30 ++++++++ .../dbscripts/plugins/windows/mysql.sql | 48 +++++++++++++ .../dbscripts/plugins/windows/oracle.sql | 64 +++++++++++++++++ .../dbscripts/plugins/windows/postgres.sql | 45 ++++++++++++ 19 files changed, 447 insertions(+), 282 deletions(-) create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql rename features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/{mysql_android.sql => android/mysql.sql} (96%) create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/oracle.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql delete mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_android.sql delete mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_ios.sql delete mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_windows.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/h2.sql rename features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/{mysql_ios.sql => ios/mysql.sql} (84%) create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/oracle.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgres.sql delete mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/h2.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/mysql.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql create mode 100644 features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/postgres.sql diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java index 237f88168..d9902cb7b 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java @@ -15,7 +15,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.wso2.carbon.device.mgt.mobile.impl.windows.dao.impl; import org.apache.commons.logging.Log; @@ -52,17 +51,17 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { try { conn = WindowsDAOFactory.getConnection(); String selectDBQuery = - "SELECT MOBILE_DEVICE_ID, CHANNEL_URI, DEVICE_INFO, IMEI, IMSI, " + + "SELECT DEVICE_ID, CHANNEL_URI, DEVICE_INFO, IMEI, IMSI, " + "OS_VERSION, DEVICE_MODEL, VENDOR, LATITUDE, LONGITUDE, SERIAL, MAC_ADDRESS," + " OS_VERSION, DEVICE_NAME " + - "FROM WINDOWS_DEVICE WHERE MOBILE_DEVICE_ID = ?"; + "FROM WIN_DEVICE WHERE DEVICE_ID = ?"; stmt = conn.prepareStatement(selectDBQuery); stmt.setString(1, mblDeviceId); rs = stmt.executeQuery(); while (rs.next()) { mobileDevice = new MobileDevice(); - mobileDevice.setMobileDeviceId(rs.getString(WindowsPluginConstants.MOBILE_DEVICE_ID)); + mobileDevice.setMobileDeviceId(rs.getString(WindowsPluginConstants.DEVICE_ID)); mobileDevice.setImei(rs.getString(WindowsPluginConstants.IMEI)); mobileDevice.setImsi(rs.getString(WindowsPluginConstants.IMSI)); mobileDevice.setModel(rs.getString(WindowsPluginConstants.DEVICE_MODEL)); @@ -72,7 +71,7 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { mobileDevice.setSerial(rs.getString(WindowsPluginConstants.SERIAL)); mobileDevice.setOsVersion(rs.getString(WindowsPluginConstants.LATITUDE)); - Map propertyMap = new HashMap(); + Map propertyMap = new HashMap<>(); propertyMap.put(WindowsPluginConstants.CHANNEL_URI, rs.getString(WindowsPluginConstants.CHANNEL_URI)); propertyMap.put(WindowsPluginConstants.DEVICE_INFO, rs.getString(WindowsPluginConstants.DEVICE_INFO)); propertyMap.put(WindowsPluginConstants.MAC_ADDRESS, rs.getString(WindowsPluginConstants.MAC_ADDRESS)); @@ -99,7 +98,7 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { try { conn = WindowsDAOFactory.getConnection(); String createDBQuery = - "INSERT INTO WINDOWS_DEVICE(MOBILE_DEVICE_ID, CHANNEL_URI, DEVICE_INFO, IMEI, " + + "INSERT INTO WIN_DEVICE(DEVICE_ID, CHANNEL_URI, DEVICE_INFO, IMEI, " + "IMSI, OS_VERSION, DEVICE_MODEL, VENDOR, LATITUDE, LONGITUDE, SERIAL, " + "MAC_ADDRESS, DEVICE_NAME) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; @@ -139,14 +138,14 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { @Override public boolean updateMobileDevice(MobileDevice mobileDevice) throws MobileDeviceManagementDAOException { boolean status = false; - Connection conn = null; + Connection conn; PreparedStatement stmt = null; try { conn = WindowsDAOFactory.getConnection(); String updateDBQuery = - "UPDATE WINDOWS_DEVICE SET CHANNEL_URI = ?, DEVICE_INFO = ?, IMEI = ?, IMSI = ?, " + + "UPDATE WIN_DEVICE SET CHANNEL_URI = ?, DEVICE_INFO = ?, IMEI = ?, IMSI = ?, " + "OS_VERSION = ?, DEVICE_MODEL = ?, VENDOR = ?, LATITUDE = ?, LONGITUDE = ?, " + - "SERIAL = ?, MAC_ADDRESS = ?, DEVICE_NAME = ? WHERE MOBILE_DEVICE_ID = ?"; + "SERIAL = ?, MAC_ADDRESS = ?, DEVICE_NAME = ? WHERE DEVICE_ID = ?"; stmt = conn.prepareStatement(updateDBQuery); @@ -188,7 +187,7 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { PreparedStatement stmt = null; try { conn = WindowsDAOFactory.getConnection(); - String deleteDBQuery = "DELETE FROM WINDOWS_DEVICE WHERE MOBILE_DEVICE_ID = ?"; + String deleteDBQuery = "DELETE FROM WIN_DEVICE WHERE DEVICE_ID = ?"; stmt = conn.prepareStatement(deleteDBQuery); stmt.setString(1, mblDeviceId); int rows = stmt.executeUpdate(); @@ -214,20 +213,20 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { PreparedStatement stmt = null; ResultSet rs = null; MobileDevice mobileDevice; - List mobileDevices = new ArrayList(); + List mobileDevices = new ArrayList<>(); try { conn = WindowsDAOFactory.getConnection(); String selectDBQuery = - "SELECT MOBILE_DEVICE_ID, CHANNEL_URI, DEVICE_INFO, IMEI, IMSI, " + + "SELECT DEVICE_ID, CHANNEL_URI, DEVICE_INFO, IMEI, IMSI, " + "OS_VERSION, DEVICE_MODEL, VENDOR, LATITUDE, LONGITUDE, SERIAL, MAC_ADDRESS," + " OS_VERSION, DEVICE_NAME " + - "FROM WINDOWS_DEVICE"; + "FROM WIN_DEVICE"; stmt = conn.prepareStatement(selectDBQuery); rs = stmt.executeQuery(); while (rs.next()) { mobileDevice = new MobileDevice(); - mobileDevice.setMobileDeviceId(rs.getString(WindowsPluginConstants.MOBILE_DEVICE_ID)); + mobileDevice.setMobileDeviceId(rs.getString(WindowsPluginConstants.DEVICE_ID)); mobileDevice.setVendor(rs.getString(WindowsPluginConstants.IMEI)); mobileDevice.setLatitude(rs.getString(WindowsPluginConstants.IMSI)); mobileDevice.setLongitude(rs.getString(WindowsPluginConstants.OS_VERSION)); @@ -235,7 +234,7 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { mobileDevice.setImsi(rs.getString(WindowsPluginConstants.VENDOR)); mobileDevice.setOsVersion(rs.getString(WindowsPluginConstants.LATITUDE)); - Map propertyMap = new HashMap(); + Map propertyMap = new HashMap<>(); propertyMap.put(WindowsPluginConstants.CHANNEL_URI, rs.getString(WindowsPluginConstants.CHANNEL_URI)); propertyMap.put(WindowsPluginConstants.DEVICE_INFO, rs.getString(WindowsPluginConstants.DEVICE_INFO)); propertyMap.put(WindowsPluginConstants.DEVICE_NAME, rs.getString(WindowsPluginConstants.DEVICE_NAME)); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/util/WindowsPluginConstants.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/util/WindowsPluginConstants.java index 50f8f15c3..853e5d435 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/util/WindowsPluginConstants.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/util/WindowsPluginConstants.java @@ -24,7 +24,7 @@ package org.wso2.carbon.device.mgt.mobile.impl.windows.util; public class WindowsPluginConstants { //properties related to database table WINDOWS_DEVICE - public static final String MOBILE_DEVICE_ID = "MOBILE_DEVICE_ID"; + public static final String DEVICE_ID = "DEVICE_ID"; public static final String CHANNEL_URI = "CHANNEL_URI"; public static final String DEVICE_INFO = "DEVICE_INFO"; public static final String IMEI = "IMEI"; diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql index e10ec1da8..58210317e 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql @@ -3,7 +3,7 @@ -- Table `AD_DEVICE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( - `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL , + `DEVICE_ID` VARCHAR(45) NOT NULL , `PUSH_TOKEN` VARCHAR(45) NULL DEFAULT NULL , `IMEI` VARCHAR(45) NULL DEFAULT NULL , `IMSI` VARCHAR(45) NULL DEFAULT NULL , @@ -16,7 +16,7 @@ CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( `TOKEN` VARCHAR(500) NULL DEFAULT NULL, `UNLOCK_TOKEN` VARCHAR(500) NULL DEFAULT NULL, `SERIAL` VARCHAR(45) NULL DEFAULT NULL, - PRIMARY KEY (`MOBILE_DEVICE_ID`) ); + PRIMARY KEY (`DEVICE_ID`) ); -- ----------------------------------------------------- @@ -51,7 +51,7 @@ CREATE TABLE IF NOT EXISTS `AD_DEVICE_OPERATION_MAPPING` ( PRIMARY KEY (`DEVICE_ID`, `OPERATION_ID`) , CONSTRAINT `fk_AD_DEVICE_OPERATION_AD_DEVICE` FOREIGN KEY (`DEVICE_ID` ) - REFERENCES `AD_DEVICE` (`MOBILE_DEVICE_ID` ) + REFERENCES `AD_DEVICE` (`DEVICE_ID` ) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_AD_DEVICE_OPERATION_AD_OPERATION1` diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql new file mode 100644 index 000000000..1f280205c --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql @@ -0,0 +1,30 @@ + +-- ----------------------------------------------------- +-- Table `AD_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( + `ANDROID_DEVICE_ID` VARCHAR(45) NOT NULL, + `GCM_TOKEN` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, + `IMEI` VARCHAR(45) NULL DEFAULT NULL, + `IMSI` VARCHAR(45) NULL DEFAULT NULL, + `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_MODEL` VARCHAR(45) NULL DEFAULT NULL, + `VENDOR` VARCHAR(45) NULL DEFAULT NULL, + `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, + `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, + `SERIAL` VARCHAR(45) NULL DEFAULT NULL, + `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, + PRIMARY KEY (`ANDROID_DEVICE_ID`)); + +-- ----------------------------------------------------- +-- Table `AD_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `AD_FEATURE` ( + `ID` INT NOT NULL AUTO_INCREMENT, + `CODE` VARCHAR(45) NOT NULL, + `NAME` VARCHAR(100) NULL, + `DESCRIPTION` VARCHAR(200) NULL, + PRIMARY KEY (`ID`)); + diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mysql.sql similarity index 96% rename from features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql rename to features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mysql.sql index 2c5ed863c..ce25caf6e 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_android.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mysql.sql @@ -1,5 +1,5 @@ -- ----------------------------------------------------- --- Table `MBL_DEVICE` +-- Table `AD_DEVICE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( `ANDROID_DEVICE_ID` VARCHAR(45) NOT NULL , @@ -20,7 +20,7 @@ ENGINE = InnoDB; -- ----------------------------------------------------- --- Table `MBL_FEATURE` +-- Table `AD_FEATURE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AD_FEATURE` ( `ID` INT NOT NULL AUTO_INCREMENT, diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/oracle.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/oracle.sql new file mode 100644 index 000000000..b8a522b90 --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/oracle.sql @@ -0,0 +1,49 @@ +-- ----------------------------------------------------- +-- Table `AD_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE AD_DEVICE ( + DEVICE_ID VARCHAR(45) NOT NULL , + DEVICE_INFO VARCHAR(500) DEFAULT NULL, + GCM_TOKEN VARCHAR(45) DEFAULT NULL, + IMEI VARCHAR(45) DEFAULT NULL, + IMSI VARCHAR(45) DEFAULT NULL, + OS_VERSION VARCHAR(45) DEFAULT NULL, + DEVICE_MODEL VARCHAR(45) DEFAULT NULL, + VENDOR VARCHAR(45) DEFAULT NULL, + LATITUDE VARCHAR(45) DEFAULT NULL, + LONGITUDE VARCHAR(45) DEFAULT NULL, + SERIAL VARCHAR(45) DEFAULT NULL, + MAC_ADDRESS VARCHAR(45) DEFAULT NULL, + DEVICE_NAME VARCHAR(100) DEFAULT NULL, + PRIMARY KEY (DEVICE_ID) +); +/ + +-- ----------------------------------------------------- +-- Table `AD_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE AD_FEATURE ( + ID INT NOT NULL, + CODE VARCHAR(45) NOT NULL, + NAME VARCHAR(100) NOT NULL, + DESCRIPTION VARCHAR(200) DEFAULT NULL, + PRIMARY KEY (ID) +); +/ + +-- ----------------------------------------------------- +-- Sequence `AD_FEATURE_ID_INC_SEQ` +-- ----------------------------------------------------- +CREATE SEQUENCE AD_FEATURE_ID_INC_SEQ START WITH 1 INCREMENT BY 1 NOCACHE; +/ + +-- ----------------------------------------------------- +-- Trigger `AD_FEATURE_ID_INC_TRIG` +-- ----------------------------------------------------- +CREATE OR REPLACE TRIGGER AD_FEATURE_ID_INC_TRIG +BEFORE INSERT ON AD_FEATURE +FOR EACH ROW +BEGIN + SELECT AD_FEATURE_ID_INC_SEQ.NEXTVAL INTO :NEW.ID FROM DUAL; +END; +/ diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql new file mode 100644 index 000000000..af5c9a5cf --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql @@ -0,0 +1,30 @@ +-- ----------------------------------------------------- +-- Table AD_DEVICE +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS AD_DEVICE ( + ID VARCHAR(45) NOT NULL , + DEVICE_INFO VARCHAR(500) NULL DEFAULT NULL, + GCM_TOKEN VARCHAR(45) NULL DEFAULT NULL, + IMEI VARCHAR(45) NULL DEFAULT NULL, + IMSI VARCHAR(45) NULL DEFAULT NULL, + OS_VERSION VARCHAR(45) NULL DEFAULT NULL, + DEVICE_MODEL VARCHAR(45) NULL DEFAULT NULL, + VENDOR VARCHAR(45) NULL DEFAULT NULL, + LATITUDE VARCHAR(45) NULL DEFAULT NULL, + LONGITUDE VARCHAR(45) NULL DEFAULT NULL, + SERIAL VARCHAR(45) NULL DEFAULT NULL, + MAC_ADDRESS VARCHAR(45) NULL DEFAULT NULL, + DEVICE_NAME VARCHAR(100) NULL DEFAULT NULL, + PRIMARY KEY (ID) + ); + +-- ----------------------------------------------------- +-- Table AD_FEATURE +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS AD_FEATURE ( + ID INT NOT NULL AUTO_INCREMENT, + CODE VARCHAR(45) NOT NULL, + NAME VARCHAR(100) NULL, + DESCRIPTION VARCHAR(200) NULL, + PRIMARY KEY (ID) +); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_android.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_android.sql deleted file mode 100644 index 3cef91277..000000000 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_android.sql +++ /dev/null @@ -1,56 +0,0 @@ - --- ----------------------------------------------------- --- Table `AD_DEVICE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( - `ANDROID_DEVICE_ID` VARCHAR(45) NOT NULL, - `GCM_TOKEN` VARCHAR(45) NULL DEFAULT NULL, - `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, - `IMEI` VARCHAR(45) NULL DEFAULT NULL, - `IMSI` VARCHAR(45) NULL DEFAULT NULL, - `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, - `DEVICE_MODEL` VARCHAR(45) NULL DEFAULT NULL, - `VENDOR` VARCHAR(45) NULL DEFAULT NULL, - `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, - `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, - `SERIAL` VARCHAR(45) NULL DEFAULT NULL, - `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, - `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, - PRIMARY KEY (`ANDROID_DEVICE_ID`)); - --- ----------------------------------------------------- --- Table `AD_FEATURE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `AD_FEATURE` ( - `ID` INT NOT NULL AUTO_INCREMENT, - `CODE` VARCHAR(45) NOT NULL, - `NAME` VARCHAR(100) NULL, - `DESCRIPTION` VARCHAR(200) NULL, - PRIMARY KEY (`ID`)); - - --- ----------------------------------------------------- --- TODO remove this later --- ----------------------------------------------------- - -INSERT INTO AD_FEATURE (CODE, NAME, DESCRIPTION) -VALUES -('DEVICE_LOCK', 'Device Lock', 'Lock the device'), -('DEVICE_LOCATION', 'Location', 'Request coordinates of device location'), -('WIFI', 'Wifi', 'Setting up wifi configuration'), -('CAMERA', 'Camera', 'Enable or disable camera'), -('EMAIL', 'Email', 'Configure email settings'), -('DEVICE_MUTE', 'Mute', 'Enable mute in the device'), -('DEVICE_INFO', 'Device Info', 'Request device information'), -('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Remove enterprise applications'), -('CLEAR_PASSWORD', 'Clear Password', 'Clear current password'), -('WIPE_DATA', 'Wipe Data', 'Factory reset the device'), -('APPLICATION_LIST', 'Application List', 'Request list of current installed applications'), -('CHANGE_LOCK_CODE', 'Change Lock-code', 'Change current lock code'), -('INSTALL_APPLICATION', 'Install App', 'Install Enterprise or Market application'), -('UNINSTALL_APPLICATION', 'Uninstall App', 'Uninstall application'), -('BLACKLIST_APPLICATIONS', 'Blacklist app', 'Blacklist applications'), -('ENCRYPT_STORAGE', 'Encrypt storage', 'Encrypt storage'), -('DEVICE_RING', 'Ring', 'Ring the device'), -('PASSCODE_POLICY', 'Password Policy', 'Set passcode policy'), -('NOTIFICATION', 'Message', 'Send message'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_ios.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_ios.sql deleted file mode 100644 index 52f30b57e..000000000 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_ios.sql +++ /dev/null @@ -1,69 +0,0 @@ --- ----------------------------------------------------- --- Table `IOS_FEATURE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( - `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, - `CODE` VARCHAR(45) NOT NULL, - `NAME` VARCHAR(100) NULL, - `DESCRIPTION` VARCHAR(200) NULL, - PRIMARY KEY (`FEATURE_ID`) ); - - --- ----------------------------------------------------- --- Table `IOS_DEVICE` --- ----------------------------------------------------- - - CREATE TABLE IF NOT EXISTS `IOS_DEVICE` ( - `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL, - `APNS_PUSH_TOKEN` VARCHAR(100) DEFAULT NULL, - `MAGIC_TOKEN` VARCHAR(100) DEFAULT NULL, - `MDM_TOKEN` VARCHAR(100) DEFAULT NULL, - `UNLOCK_TOKEN` VARCHAR(2000) DEFAULT NULL, - `CHALLENGE_TOKEN` VARCHAR(45) DEFAULT NULL, - `DEVICE_INFO` VARCHAR(8000) DEFAULT NULL, - `SERIAL` VARCHAR(45) DEFAULT NULL, - `PRODUCT` VARCHAR(45) DEFAULT NULL, - `IMEI` VARCHAR(45) DEFAULT NULL, - `VERSION` VARCHAR(45) DEFAULT NULL, - `MAC_ADDRESS` VARCHAR(45) DEFAULT NULL, - `DEVICE_NAME` VARCHAR(100) DEFAULT NULL, - `ICCID` VARCHAR(45) DEFAULT NULL, - `LATITUDE` VARCHAR(45) DEFAULT NULL, - `LONGITUDE` VARCHAR(45) DEFAULT NULL, - PRIMARY KEY (`MOBILE_DEVICE_ID`) ); - - --- ----------------------------------------------------- --- TODO remove this later --- ----------------------------------------------------- - -INSERT INTO IOS_FEATURE (CODE, NAME, DESCRIPTION) -VALUES -('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), -
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 -('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), -
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), -
('CELLULAR', 'Cellular', 'Cellular'), -
('APN', 'APN', 'APN'), -
('RESTRICTION', 'Restrictions', 'Restrictions operation'), -
('WIFI', 'Wifi', 'Wifi'), -
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 -('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 -('LOCATION', 'Location', 'Fetch location'), 
 -('ALARM', 'Alarm', 'Alarm device'), -('APPLICATION_LIST', 'Application list', 'Application list'), -('PROFILE_LIST', 'Profile List', 'Profile list'), -('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), -('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), -('CALDAV', 'CalDev', 'Setup CalDav'), -('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), -('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), -('EMAIL', 'Email', 'Email operation'), -('LDAP', 'LDAP', 'LDAP operation'), -('WEB_CLIP', 'Web Clip', 'Web clip operation'), -('VPN', 'VPN', 'VPN operation'), -('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), -('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), -('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), -('APP_LOCK', 'App lock', 'App lock operation'), -('GET_RESTRICTIONS', 'Get restrictions', 'Get restrictions operation'); \ No newline at end of file diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_windows.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_windows.sql deleted file mode 100644 index 638f3bf67..000000000 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/h2_windows.sql +++ /dev/null @@ -1,65 +0,0 @@ --- ----------------------------------------------------- --- Table `WINDOWS_FEATURE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `WINDOWS_FEATURE` ( - `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, - `CODE` VARCHAR(45) NOT NULL, - `NAME` VARCHAR(100) NULL, - `DESCRIPTION` VARCHAR(200) NULL, - PRIMARY KEY (`FEATURE_ID`)); - - --- ----------------------------------------------------- --- Table `WINDOWS_DEVICE` --- ----------------------------------------------------- - - CREATE TABLE IF NOT EXISTS `WINDOWS_DEVICE` ( - `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL, - `CHANNEL_URI` VARCHAR(100) NULL DEFAULT NULL, - `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, - `IMEI` VARCHAR(45) NULL DEFAULT NULL, - `IMSI` VARCHAR(45) NULL DEFAULT NULL, - `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, - `DEVICE_MODEL` VARCHAR(45) NULL DEFAULT NULL, - `VENDOR` VARCHAR(45) NULL DEFAULT NULL, - `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, - `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, - `SERIAL` VARCHAR(45) NULL DEFAULT NULL, - `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, - `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, - PRIMARY KEY (`MOBILE_DEVICE_ID`) ); - - --- ----------------------------------------------------- --- TODO remove this later --- ----------------------------------------------------- - -INSERT INTO WINDOWS_FEATURE (CODE, NAME, DESCRIPTION) -VALUES -('INSTALL_ENTERPRISE_APPLICATION', 'Install Enterprise App', 'Install Enterprise App'), -
('INSTALL_STORE_APPLICATION', 'Install Public App', 'Install Public App'), 
 -('REMOVE_APPLICATION', 'Uninstall App', 'Uninstall App'), -
('DEVICE_LOCK', 'Device Lock', 'Device Lock'), -
('CELLULAR', 'Cellular', 'Cellular'), -
('APN', 'APN', 'APN'), -
('RESTRICTION', 'Restrictions', 'Restrictions operation'), -
('WIFI', 'Wifi', 'Wifi'), -
('DEVICE_INFO', 'Device Info', 'Device info operation'), 
 -('AIR_PLAY', 'Air Play', 'AirPlay operation'), 
 -('LOCATION', 'Location', 'Fetch location'), 
 -('ALARM', 'Alarm', 'Alarm device'), -('APPLICATION_LIST', 'Application list', 'Application list'), -('PROFILE_LIST', 'Profile List', 'Profile list'), -('REMOVE_PROFILE', 'Remove Profile', 'Remove profile'), -('CLEAR_PASSCODE', 'Clear Passcode', 'Clear passcode'), -('CALDAV', 'CalDev', 'Setup CalDav'), -('CALENDAR_SUBSCRIPTION', 'Calendar Subscriptions', 'Calendar subscription'), -('PASSCODE_POLICY', 'Passcode Policy', 'Passcode policy'), -('EMAIL', 'Email', 'Email operation'), -('LDAP', 'LDAP', 'LDAP operation'), -('WEB_CLIP', 'Web Clip', 'Web clip operation'), -('VPN', 'VPN', 'VPN operation'), -('PER_APP_VPN', 'Per App VPN', 'Per app VPN operation'), -('APP_TO_PER_APP_VPN_MAPPING', 'VPN App mapping', 'App to per app VPN mapping operation'), -('ENTERPRISE_WIPE', 'Enterprise Wipe', 'Enterprise wipe operation'), -('APP_LOCK', 'App lock', 'App lock operation'); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/h2.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/h2.sql new file mode 100644 index 000000000..c9c70ce2d --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/h2.sql @@ -0,0 +1,33 @@ +-- ----------------------------------------------------- +-- Table `IOS_DEVICE` +-- ----------------------------------------------------- + CREATE TABLE IF NOT EXISTS `IOS_DEVICE` ( + `DEVICE_ID` VARCHAR(45) NOT NULL, + `APNS_PUSH_TOKEN` VARCHAR(100) DEFAULT NULL, + `MAGIC_TOKEN` VARCHAR(100) DEFAULT NULL, + `MDM_TOKEN` VARCHAR(100) DEFAULT NULL, + `UNLOCK_TOKEN` VARCHAR(2000) DEFAULT NULL, + `CHALLENGE_TOKEN` VARCHAR(45) DEFAULT NULL, + `DEVICE_INFO` VARCHAR(8000) DEFAULT NULL, + `SERIAL` VARCHAR(45) DEFAULT NULL, + `PRODUCT` VARCHAR(45) DEFAULT NULL, + `IMEI` VARCHAR(45) DEFAULT NULL, + `VERSION` VARCHAR(45) DEFAULT NULL, + `MAC_ADDRESS` VARCHAR(45) DEFAULT NULL, + `DEVICE_NAME` VARCHAR(100) DEFAULT NULL, + `ICCID` VARCHAR(45) DEFAULT NULL, + `LATITUDE` VARCHAR(45) DEFAULT NULL, + `LONGITUDE` VARCHAR(45) DEFAULT NULL, + PRIMARY KEY (`DEVICE_ID`) +); + +-- ----------------------------------------------------- +-- Table `IOS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( + `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, + `CODE` VARCHAR(45) NOT NULL, + `NAME` VARCHAR(100) NULL, + `DESCRIPTION` VARCHAR(200) NULL, + PRIMARY KEY (`FEATURE_ID`) +); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/mysql.sql similarity index 84% rename from features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql rename to features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/mysql.sql index 1b90f68c6..c71a33254 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_ios.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/mysql.sql @@ -1,21 +1,8 @@ --- ----------------------------------------------------- --- Table `IOS_FEATURE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( - `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, - `CODE` VARCHAR(45) NOT NULL, - `NAME` VARCHAR(100) NULL, - `DESCRIPTION` VARCHAR(200) NULL, - PRIMARY KEY (`FEATURE_ID`) ) - ENGINE = InnoDB; - - -- ----------------------------------------------------- -- Table `IOS_DEVICE` -- ----------------------------------------------------- - - CREATE TABLE IF NOT EXISTS `IOS_DEVICE` ( - `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL, +CREATE TABLE IF NOT EXISTS `IOS_DEVICE` ( + `DEVICE_ID` VARCHAR(45) NOT NULL, `APNS_PUSH_TOKEN` VARCHAR(100) NULL DEFAULT NULL, `MAGIC_TOKEN` VARCHAR(100) NULL DEFAULT NULL, `MDM_TOKEN` VARCHAR(100) NULL DEFAULT NULL, @@ -31,8 +18,16 @@ CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( `ICCID` VARCHAR(45) NULL DEFAULT NULL, `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, - PRIMARY KEY (`MOBILE_DEVICE_ID`) ) - ENGINE = InnoDB; - + PRIMARY KEY (`DEVICE_ID`) +) ENGINE = InnoDB; -long +-- ----------------------------------------------------- +-- Table `IOS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `IOS_FEATURE` ( + `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, + `CODE` VARCHAR(45) NOT NULL, + `NAME` VARCHAR(100) NULL, + `DESCRIPTION` VARCHAR(200) NULL, + PRIMARY KEY (`FEATURE_ID`) +) ENGINE = InnoDB; diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/oracle.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/oracle.sql new file mode 100644 index 000000000..11e5212e1 --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/oracle.sql @@ -0,0 +1,51 @@ +-- ----------------------------------------------------- +-- Table `IOS_DEVICE` +-- ----------------------------------------------------- + CREATE TABLE IOS_DEVICE ( + DEVICE_ID VARCHAR(45) NOT NULL, + APNS_PUSH_TOKEN VARCHAR(100) DEFAULT NULL, + MAGIC_TOKEN VARCHAR(100) DEFAULT NULL, + MDM_TOKEN VARCHAR(100) DEFAULT NULL, + UNLOCK_TOKEN VARCHAR(2000) DEFAULT NULL, + CHALLENGE_TOKEN VARCHAR(45) DEFAULT NULL, + DEVICE_INFO VARCHAR(8000) DEFAULT NULL, + SERIAL VARCHAR(45) DEFAULT NULL, + PRODUCT VARCHAR(45) DEFAULT NULL, + IMEI VARCHAR(45) DEFAULT NULL, + VERSION VARCHAR(45) DEFAULT NULL, + MAC_ADDRESS VARCHAR(45) DEFAULT NULL, + DEVICE_NAME VARCHAR(100) DEFAULT NULL, + ICCID VARCHAR(45) DEFAULT NULL, + LATITUDE VARCHAR(45) DEFAULT NULL, + LONGITUDE VARCHAR(45) DEFAULT NULL, + PRIMARY KEY (DEVICE_ID) +); +/ + +-- ----------------------------------------------------- +-- Table `IOS_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IOS_FEATURE ( + ID INT NOT NULL, + CODE VARCHAR(45) NOT NULL, + NAME VARCHAR(100) NOT NULL, + DESCRIPTION VARCHAR(200) NULL, + PRIMARY KEY (ID) +); +/ + +-- Sequence `IOS_FEATURE_ID_INC_SEQ` +-- ----------------------------------------------------- +CREATE SEQUENCE IOS_FEATURE_ID_INC_SEQ START WITH 1 INCREMENT BY 1 NOCACHE; +/ + +-- ----------------------------------------------------- +-- Trigger `IOS_FEATURE_ID_INC_TRIG` +-- ----------------------------------------------------- +CREATE OR REPLACE TRIGGER IOS_FEATURE_ID_INC_TRIG +BEFORE INSERT ON IOS_FEATURE +FOR EACH ROW +BEGIN + SELECT IOS_FEATURE_ID_INC_SEQ.NEXTVAL INTO :NEW.ID FROM DUAL; +END; +/ diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgres.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgres.sql new file mode 100644 index 000000000..79b342ca3 --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/ios/postgres.sql @@ -0,0 +1,33 @@ +-- ----------------------------------------------------- +-- Table IOS_FEATURE +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS IOS_FEATURE ( + ID SERIAL NOT NULL, + CODE VARCHAR(45) NOT NULL, + NAME VARCHAR(100) NULL, + DESCRIPTION VARCHAR(200) NULL, + PRIMARY KEY (ID) +); + +-- ----------------------------------------------------- +-- Table IOS_DEVICE +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS IOS_DEVICE ( + DEVICE_ID VARCHAR(45) NOT NULL, + APNS_PUSH_TOKEN VARCHAR(100) NULL DEFAULT NULL, + MAGIC_TOKEN VARCHAR(100) NULL DEFAULT NULL, + MDM_TOKEN VARCHAR(100) NULL DEFAULT NULL, + UNLOCK_TOKEN VARCHAR(2000) NULL DEFAULT NULL, + CHALLENGE_TOKEN VARCHAR(45) NULL DEFAULT NULL, + DEVICE_INFO VARCHAR(8000) NULL DEFAULT NULL, + SERIAL VARCHAR(45) NULL DEFAULT NULL, + PRODUCT VARCHAR(45) NULL DEFAULT NULL, + IMEI VARCHAR(45) NULL DEFAULT NULL, + VERSION VARCHAR(45) NULL DEFAULT NULL, + MAC_ADDRESS VARCHAR(45) NULL DEFAULT NULL, + DEVICE_NAME VARCHAR(100) NULL DEFAULT NULL, + ICCID VARCHAR(45) NULL DEFAULT NULL, + LATITUDE VARCHAR(45) NULL DEFAULT NULL, + LONGITUDE VARCHAR(45) NULL DEFAULT NULL, + PRIMARY KEY (DEVICE_ID) + ); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql deleted file mode 100644 index dfabdc009..000000000 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/mysql_windows.sql +++ /dev/null @@ -1,52 +0,0 @@ --- ----------------------------------------------------- --- Table `MBL_DEVICE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `MBL_DEVICE` ( - `MOBILE_DEVICE_ID` VARCHAR(45) NOT NULL, - `PUSH_TOKEN` VARCHAR(45) NULL DEFAULT NULL, - `IMEI` VARCHAR(45) NULL DEFAULT NULL, - `IMSI` VARCHAR(45) NULL DEFAULT NULL, - `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, - `DEVICE_MODEL` VARCHAR(45) NULL DEFAULT NULL, - `VENDOR` VARCHAR(45) NULL DEFAULT NULL, - `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, - `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, - `CHALLENGE` VARCHAR(45) NULL DEFAULT NULL, - `TOKEN` VARCHAR(50) NULL DEFAULT NULL, - `UNLOCK_TOKEN` VARCHAR(2000) NULL DEFAULT NULL, - `SERIAL` VARCHAR(45) NULL DEFAULT NULL, - PRIMARY KEY (`MOBILE_DEVICE_ID`)) -ENGINE = InnoDB; - - --- ----------------------------------------------------- --- Table `MBL_FEATURE` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `MBL_FEATURE` ( - `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, - `DEVICE_TYPE` VARCHAR(45) NOT NULL, - `CODE` VARCHAR(45) NULL, - `NAME` VARCHAR(100) NULL, - `DESCRIPTION` VARCHAR(200) NULL, - PRIMARY KEY (`FEATURE_ID`)) -ENGINE = InnoDB; - --- ----------------------------------------------------- --- Table `MBL_FEATURE_PROPERTY` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `MBL_FEATURE_PROPERTY` ( - `PROPERTY` VARCHAR(45) NOT NULL , - `FEATURE_ID` INT NOT NULL , - PRIMARY KEY (`PROPERTY`), - CONSTRAINT `fk_MBL_FEATURE_PROPERTY_MBL_FEATURE1` - FOREIGN KEY (`FEATURE_ID`) - REFERENCES `MBL_FEATURE` (`FEATURE_ID`) - ON DELETE NO ACTION - ON UPDATE NO ACTION) -ENGINE = InnoDB; - --- ----------------------------------------------------- --- Inserts --- ----------------------------------------------------- -INSERT INTO MBL_FEATURE (DEVICE_TYPE,NAME,CODE, DESCRIPTION) VALUES ('android','DEVICE_LOCK','503A','Device Lock'),('android','WIPE','504A','Device Wipe'),('android','CLEARPASSCODE','505A','Clear Passcode'),('android','APPLIST','502A','Get All Applications'),('android','LOCATION','501A','Location'),('android','INFO','500A','Device Information'),('android','NOTIFICATION','506A','Message'),('android','WIFI','507A','Setup Wifi'),('android','CAMERA','508A','Camera Control'),('android','MUTE','513A','Mute Device'),('android','INSTALLAPP','509A','Install Application'),('android','UNINSTALLAPP','510A','Uninstall Application'),('android','ENCRYPT','511A','Encrypt Storage'),('android','APN','512A','APN'),('android','WEBCLIP','518A','Create Webclips'),('android','PASSWORDPOLICY','519A','Passcode Policy'),('android','EMAIL','520A','Email Configuration'),('android','GOOGLECALENDAR','521A','Calender Subscription'),('android','VPN','523A','VPN'),('android','LDAP','524A','LDAP'),('android','CHANGEPASSWORD','526A','Set Passcode'),('android','ENTERPRISEWIPE','527A','Enterprise Wipe'),('android','POLICY','500P','Policy Enforcement'),('android','MONITORING','501P','Policy Monitoring '),('android','BLACKLISTAPPS','528B','Blacklist Apps'),('android','REVOKEPOLICY','502P','Revoke Policy'); - diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/h2.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/h2.sql new file mode 100644 index 000000000..3954f3c5e --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/h2.sql @@ -0,0 +1,30 @@ +-- ----------------------------------------------------- +-- Table `WIN_DEVICE` +-- ----------------------------------------------------- + CREATE TABLE IF NOT EXISTS `WIN_DEVICE` ( + `DEVICE_ID` VARCHAR(45) NOT NULL, + `CHANNEL_URI` VARCHAR(100) NULL DEFAULT NULL, + `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, + `IMEI` VARCHAR(45) NULL DEFAULT NULL, + `IMSI` VARCHAR(45) NULL DEFAULT NULL, + `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_MODEL` VARCHAR(45) NULL DEFAULT NULL, + `VENDOR` VARCHAR(45) NULL DEFAULT NULL, + `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, + `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, + `SERIAL` VARCHAR(45) NULL DEFAULT NULL, + `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, + PRIMARY KEY (`DEVICE_ID`) +); + +-- ----------------------------------------------------- +-- Table `WIN_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `WIN_FEATURE` ( + `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, + `CODE` VARCHAR(45) NOT NULL, + `NAME` VARCHAR(100) NULL, + `DESCRIPTION` VARCHAR(200) NULL, + PRIMARY KEY (`FEATURE_ID`) +); diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/mysql.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/mysql.sql new file mode 100644 index 000000000..ecdacf5b9 --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/mysql.sql @@ -0,0 +1,48 @@ +-- ----------------------------------------------------- +-- Table `WIN_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `WIN_DEVICE` ( + `DEVICE_ID` VARCHAR(45) NOT NULL, + `PUSH_TOKEN` VARCHAR(45) NULL DEFAULT NULL, + `IMEI` VARCHAR(45) NULL DEFAULT NULL, + `IMSI` VARCHAR(45) NULL DEFAULT NULL, + `OS_VERSION` VARCHAR(45) NULL DEFAULT NULL, + `DEVICE_MODEL` VARCHAR(45) NULL DEFAULT NULL, + `VENDOR` VARCHAR(45) NULL DEFAULT NULL, + `LATITUDE` VARCHAR(45) NULL DEFAULT NULL, + `LONGITUDE` VARCHAR(45) NULL DEFAULT NULL, + `CHALLENGE` VARCHAR(45) NULL DEFAULT NULL, + `TOKEN` VARCHAR(50) NULL DEFAULT NULL, + `UNLOCK_TOKEN` VARCHAR(2000) NULL DEFAULT NULL, + `SERIAL` VARCHAR(45) NULL DEFAULT NULL, + PRIMARY KEY (`DEVICE_ID`)) +ENGINE = InnoDB; + + +-- ----------------------------------------------------- +-- Table `WIN_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `WIN_FEATURE` ( + `FEATURE_ID` INT NOT NULL AUTO_INCREMENT, + `DEVICE_TYPE` VARCHAR(45) NOT NULL, + `CODE` VARCHAR(45) NULL, + `NAME` VARCHAR(100) NULL, + `DESCRIPTION` VARCHAR(200) NULL, + PRIMARY KEY (`FEATURE_ID`)) +ENGINE = InnoDB; + +-- ----------------------------------------------------- +-- Table `WIN_FEATURE_PROPERTY` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `WIN_FEATURE_PROPERTY` ( + `PROPERTY` VARCHAR(45) NOT NULL , + `FEATURE_ID` INT NOT NULL , + PRIMARY KEY (`PROPERTY`), + CONSTRAINT `fk_WIN_FEATURE_PROPERTY_WIN_FEATURE1` + FOREIGN KEY (`FEATURE_ID`) + REFERENCES `WIN_FEATURE` (`FEATURE_ID`) + ON DELETE NO ACTION + ON UPDATE NO ACTION) +ENGINE = InnoDB; + + diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql new file mode 100644 index 000000000..505330b66 --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql @@ -0,0 +1,64 @@ +-- ----------------------------------------------------- +-- Table `WIN_DEVICE` +-- ----------------------------------------------------- +CREATE TABLE WIN_DEVICE ( + DEVICE_ID VARCHAR(45) NOT NULL, + PUSH_TOKEN VARCHAR(45) DEFAULT NULL, + IMEI VARCHAR(45) DEFAULT NULL, + IMSI VARCHAR(45) DEFAULT NULL, + OS_VERSION VARCHAR(45) DEFAULT NULL, + DEVICE_MODEL VARCHAR(45) DEFAULT NULL, + VENDOR VARCHAR(45) DEFAULT NULL, + LATITUDE VARCHAR(45) DEFAULT NULL, + LONGITUDE VARCHAR(45) DEFAULT NULL, + CHALLENGE VARCHAR(45) DEFAULT NULL, + TOKEN VARCHAR(50) DEFAULT NULL, + UNLOCK_TOKEN VARCHAR(2000) DEFAULT NULL, + SERIAL VARCHAR(45) DEFAULT NULL, + PRIMARY KEY (DEVICE_ID) +); +/ + +-- ----------------------------------------------------- +-- Table `WIN_FEATURE` +-- ----------------------------------------------------- +CREATE TABLE WIN_FEATURE ( + ID INT NOT NULL, + DEVICE_TYPE VARCHAR(45) NOT NULL, + CODE VARCHAR(45) NOT NULL, + NAME VARCHAR(100) NOT NULL, + DESCRIPTION VARCHAR(200) NULL, + PRIMARY KEY (ID) +); +/ + +-- ----------------------------------------------------- +-- Table `WIN_FEATURE_PROPERTY` +-- ----------------------------------------------------- +CREATE TABLE WIN_FEATURE_PROPERTY ( + PROPERTY VARCHAR(45) NOT NULL, + FEATURE_ID INT NOT NULL, + PRIMARY KEY (PROPERTY), + CONSTRAINT fk_WIN_FEATURE_PROPERTY_WIN_FEATURE1 + FOREIGN KEY (FEATURE_ID) + REFERENCES WIN_FEATURE (FEATURE_ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION); +/ + +-- ----------------------------------------------------- +-- Sequence `WIN_FEATURE_ID_INC_SEQ` +-- ----------------------------------------------------- +CREATE SEQUENCE WIN_FEATURE_ID_INC_SEQ START WITH 1 INCREMENT BY 1 NOCACHE; +/ + +-- ----------------------------------------------------- +-- Trigger `WIN_FEATURE_ID_INC_TRIG` +-- ----------------------------------------------------- +CREATE OR REPLACE TRIGGER WIN_FEATURE_ID_INC_TRIG +BEFORE INSERT ON WIN_FEATURE +FOR EACH ROW +BEGIN + SELECT WIN_FEATURE_ID_INC_SEQ.NEXTVAL INTO :NEW.ID FROM DUAL; +END; +/ diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/postgres.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/postgres.sql new file mode 100644 index 000000000..45754d06f --- /dev/null +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/postgres.sql @@ -0,0 +1,45 @@ +-- ----------------------------------------------------- +-- Table WIN_DEVICE +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS WIN_DEVICE ( + DEVICE_ID VARCHAR(45) NOT NULL, + PUSH_TOKEN VARCHAR(45) NULL DEFAULT NULL, + IMEI VARCHAR(45) NULL DEFAULT NULL, + IMSI VARCHAR(45) NULL DEFAULT NULL, + OS_VERSION VARCHAR(45) NULL DEFAULT NULL, + DEVICE_MODEL VARCHAR(45) NULL DEFAULT NULL, + VENDOR VARCHAR(45) NULL DEFAULT NULL, + LATITUDE VARCHAR(45) NULL DEFAULT NULL, + LONGITUDE VARCHAR(45) NULL DEFAULT NULL, + CHALLENGE VARCHAR(45) NULL DEFAULT NULL, + TOKEN VARCHAR(50) NULL DEFAULT NULL, + UNLOCK_TOKEN VARCHAR(2000) NULL DEFAULT NULL, + SERIAL VARCHAR(45) NULL DEFAULT NULL, + PRIMARY KEY (DEVICE_ID) + ); + +-- ----------------------------------------------------- +-- Table WIN_FEATURE +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS WIN_FEATURE ( + ID SERIAL NOT NULL, + DEVICE_TYPE VARCHAR(45) NOT NULL, + CODE VARCHAR(45) NULL, + NAME VARCHAR(100) NULL, + DESCRIPTION VARCHAR(200) NULL, + PRIMARY KEY (ID) + ); + +-- ----------------------------------------------------- +-- Table `WIN_FEATURE_PROPERTY` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS WIN_FEATURE_PROPERTY ( + PROPERTY VARCHAR(45) NOT NULL , + FEATURE_ID INT NOT NULL , + PRIMARY KEY (PROPERTY), + CONSTRAINT fk_WIN_FEATURE_PROPERTY_WIN_FEATURE1 + FOREIGN KEY (FEATURE_ID) + REFERENCES WIN_FEATURE (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); From 363dca0b6175c912850497a9a75f242772987ecd Mon Sep 17 00:00:00 2001 From: prabathabey Date: Wed, 28 Oct 2015 17:55:38 +0530 Subject: [PATCH 4/5] code clean up --- .../impl/MobileDeviceOperationMappingDAOImpl.java | 14 +++++++------- .../mobile/dao/impl/MobileOperationDAOImpl.java | 9 ++++----- .../dao/impl/MobileOperationPropertyDAOImpl.java | 8 ++++---- 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java index 9058df9ae..931ab33a2 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java @@ -77,7 +77,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio String msg = "Error occurred while adding device id - '" + mblDeviceOperationMapping.getDeviceId() + " and operation id - " + mblDeviceOperationMapping.getOperationId() + - " to mapping table AD_DEVICE_OPERATION"; + " to mapping table AD_DEVICE_OPERATION_MAPPING"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -114,7 +114,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio } catch (SQLException e) { String msg = "Error occurred while updating device id - '" + mblDeviceOperation.getDeviceId() + " and operation id - " + - mblDeviceOperation.getOperationId() + " in table MBL_DEVICE_OPERATION"; + mblDeviceOperation.getOperationId() + " in table AD_DEVICE_OPERATION_MAPPING"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -151,7 +151,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio String msg = "Error occurred while updating the Status of operation to in-progress of device id - '" + mblDeviceId + " and operation id - " + - operationId + " in table MBL_DEVICE_OPERATION"; + operationId + " in table AD_DEVICE_OPERATION_MAPPING"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -189,7 +189,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio String msg = "Error occurred while updating the Status of operation to completed of device id - '" + mblDeviceId + " and operation id - " + - operationId + " in table MBL_DEVICE_OPERATION"; + operationId + " in table AD_DEVICE_OPERATION_MAPPING"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -280,7 +280,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio PreparedStatement stmt = null; MobileDeviceOperationMapping mblDeviceOperation; List mblDeviceOperations = - new ArrayList(); + new ArrayList<>(); try { conn = this.getConnection(); String selectDBQuery = @@ -303,7 +303,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio } } catch (SQLException e) { String msg = - "Error occurred while fetching mapping table MBL_DEVICE_OPERATION entries of " + + "Error occurred while fetching mapping table AD_DEVICE_OPERATION_MAPPING entries of " + "device id - '" + mblDeviceId; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); @@ -321,7 +321,7 @@ public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperatio PreparedStatement stmt = null; MobileDeviceOperationMapping mblDeviceOperation = null; List mblDeviceOperations = - new ArrayList(); + new ArrayList<>(); try { conn = this.getConnection(); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java index 9d5694a3a..12585f530 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java @@ -36,7 +36,6 @@ import java.sql.SQLException; */ public class MobileOperationDAOImpl implements MobileOperationDAO { - public static final String COLUMN_OPERATION_ID = "OPERATION_ID"; private DataSource dataSource; private static final Log log = LogFactory.getLog(MobileOperationDAOImpl.class); @@ -54,7 +53,7 @@ public class MobileOperationDAOImpl implements MobileOperationDAO { conn = this.getConnection(); String createDBQuery = "INSERT INTO AD_OPERATION(FEATURE_CODE, CREATED_DATE) VALUES ( ?, ?)"; - stmt = conn.prepareStatement(createDBQuery, new String[] { COLUMN_OPERATION_ID }); + stmt = conn.prepareStatement(createDBQuery, new String[] { "OPERATION_ID" }); stmt.setString(1, mblOperation.getFeatureCode()); stmt.setLong(2, mblOperation.getCreatedDate()); int rows = stmt.executeUpdate(); @@ -70,7 +69,7 @@ public class MobileOperationDAOImpl implements MobileOperationDAO { } } catch (SQLException e) { String msg = "Error occurred while adding the operation - '" + - mblOperation.getFeatureCode() + "' to MBL_OPERATION table"; + mblOperation.getFeatureCode() + "' to AD_OPERATION table"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -104,7 +103,7 @@ public class MobileOperationDAOImpl implements MobileOperationDAO { } } catch (SQLException e) { String msg = - "Error occurred while updating the MBL_OPERATION table entry with operation id - '" + + "Error occurred while updating the AD_OPERATION table entry with operation id - '" + mblOperation.getOperationId() + "'"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); @@ -135,7 +134,7 @@ public class MobileOperationDAOImpl implements MobileOperationDAO { } } } catch (SQLException e) { - String msg = "Error occurred while deleting MBL_OPERATION entry with operation Id - "; + String msg = "Error occurred while deleting AD_OPERATION entry with operation Id - "; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java index 0542e6347..d111dc653 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java @@ -70,7 +70,7 @@ public class MobileOperationPropertyDAOImpl implements MobileOperationPropertyDA } } catch (SQLException e) { String msg = - "Error occurred while adding mobile operation property to MBL_OPERATION_PROPERTY " + + "Error occurred while adding mobile operation property to AD_OPERATION_PROPERTY " + "table"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); @@ -107,7 +107,7 @@ public class MobileOperationPropertyDAOImpl implements MobileOperationPropertyDA } catch (SQLException e) { String msg = "Error occurred while updating the mobile operation property in" + - " MBL_OPERATION_PROPERTY table."; + " AD_OPERATION_PROPERTY table."; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -139,7 +139,7 @@ public class MobileOperationPropertyDAOImpl implements MobileOperationPropertyDA } } catch (SQLException e) { String msg = - "Error occurred while deleting MBL_OPERATION_PROPERTY entry with operation Id - "; + "Error occurred while deleting AD_OPERATION_PROPERTY entry with operation Id - "; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -193,7 +193,7 @@ public class MobileOperationPropertyDAOImpl implements MobileOperationPropertyDA Connection conn = null; PreparedStatement stmt = null; MobileOperationProperty mobileOperationProperty; - List properties = new ArrayList(); + List properties = new ArrayList<>(); try { conn = this.getConnection(); String selectDBQuery = From 530c6049baf455443fcd1f4da60a0c097e3d0ea0 Mon Sep 17 00:00:00 2001 From: prabathabey Date: Wed, 28 Oct 2015 19:09:09 +0530 Subject: [PATCH 5/5] Cleaning up mobile device management implementation --- ...tractMobileDeviceManagementDAOFactory.java | 102 ++++ .../dao/MobileDeviceManagementDAOFactory.java | 82 +--- ...leDeviceManagementDAOFactoryInterface.java | 37 -- .../dao/MobileDeviceOperationMappingDAO.java | 118 ----- .../mgt/mobile/dao/MobileOperationDAO.java | 62 --- .../dao/MobileOperationPropertyDAO.java | 87 ---- .../MobileDeviceOperationMappingDAOImpl.java | 369 --------------- .../mobile/dao/impl/MobileFeatureDAOImpl.java | 42 +- .../dao/impl/MobileOperationDAOImpl.java | 191 -------- .../impl/MobileOperationPropertyDAOImpl.java | 239 ---------- .../AndroidDeviceManagementService.java | 10 - .../impl/android/AndroidDeviceManager.java | 4 +- .../impl/android/AndroidFeatureManager.java | 6 +- .../impl/android/dao/AndroidDAOFactory.java | 22 +- .../dao/impl/AndroidDeviceDAOImpl.java | 20 +- .../dao/impl/AndroidFeatureDAOImpl.java | 28 +- .../android/util/AndroidPluginConstants.java | 2 +- .../impl/windows/WindowsDeviceManager.java | 4 +- .../impl/windows/WindowsFeatureManager.java | 7 +- .../impl/windows/dao/WindowsDAOFactory.java | 28 +- .../dao/impl/WindowsDeviceDAOImpl.java | 1 + ...obileDeviceManagementServiceComponent.java | 6 +- ...ileDeviceOperationMappingDAOTestSuite.java | 441 ------------------ .../impl/dao/MobileFeatureDAOTestSuite.java | 8 +- .../impl/dao/MobileOperationDAOTestSuite.java | 186 -------- .../MobileOperationPropertyDAOTestSuite.java | 237 ---------- .../src/test/resources/sql/h2.sql | 40 +- .../src/test/resources/testng.xml | 3 - .../dbscripts/plugins/android/h2.sql | 4 +- .../dbscripts/plugins/android/mssql.sql | 4 +- .../dbscripts/plugins/android/postgres.sql | 4 +- .../dbscripts/plugins/windows/oracle.sql | 2 +- 32 files changed, 180 insertions(+), 2216 deletions(-) create mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/AbstractMobileDeviceManagementDAOFactory.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactoryInterface.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceOperationMappingDAO.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationDAO.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationPropertyDAO.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileDeviceOperationMappingDAOTestSuite.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationDAOTestSuite.java delete mode 100644 components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationPropertyDAOTestSuite.java diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/AbstractMobileDeviceManagementDAOFactory.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/AbstractMobileDeviceManagementDAOFactory.java new file mode 100644 index 000000000..32bcb8de7 --- /dev/null +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/AbstractMobileDeviceManagementDAOFactory.java @@ -0,0 +1,102 @@ +/* + * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * you may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.device.mgt.mobile.dao; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.device.mgt.mobile.common.MobileDeviceMgtPluginException; +import org.wso2.carbon.device.mgt.mobile.config.datasource.JNDILookupDefinition; +import org.wso2.carbon.device.mgt.mobile.config.datasource.MobileDataSourceConfig; +import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; + +import javax.sql.DataSource; +import java.util.HashMap; +import java.util.Hashtable; +import java.util.List; +import java.util.Map; + +/** + * Factory class used to create MobileDeviceManagement related DAO objects. + */ +public abstract class AbstractMobileDeviceManagementDAOFactory implements MobileDeviceManagementDAOFactory { + + private static final Log log = LogFactory.getLog(AbstractMobileDeviceManagementDAOFactory.class); + private static Map dataSourceMap = new HashMap<>(); + private static boolean isInitialized; + + public static void init(Map mobileDataSourceConfigMap) + throws MobileDeviceMgtPluginException { + DataSource dataSource; + for (String pluginType : mobileDataSourceConfigMap.keySet()) { + if (dataSourceMap.get(pluginType) == null) { + dataSource = AbstractMobileDeviceManagementDAOFactory.resolveDataSource(mobileDataSourceConfigMap.get + (pluginType)); + dataSourceMap.put(pluginType, dataSource); + } + } + isInitialized = true; + } + + public static void init(String key, MobileDataSourceConfig mobileDataSourceConfig) throws + MobileDeviceMgtPluginException { + DataSource dataSource = AbstractMobileDeviceManagementDAOFactory.resolveDataSource(mobileDataSourceConfig); + dataSourceMap.put(key, dataSource); + } + + /** + * Resolve data source from the data source definition. + * + * @param config Mobile data source configuration + * @return data source resolved from the data source definition + */ + public static DataSource resolveDataSource(MobileDataSourceConfig config) { + DataSource dataSource = null; + if (config == null) { + throw new RuntimeException("Device Management Repository data source configuration " + + "is null and thus, is not initialized"); + } + JNDILookupDefinition jndiConfig = config.getJndiLookupDefinition(); + if (jndiConfig != null) { + if (log.isDebugEnabled()) { + log.debug("Initializing Device Management Repository data source using the JNDI " + + "Lookup Definition"); + } + List jndiPropertyList = + jndiConfig.getJndiProperties(); + if (jndiPropertyList != null) { + Hashtable jndiProperties = new Hashtable(); + for (JNDILookupDefinition.JNDIProperty prop : jndiPropertyList) { + jndiProperties.put(prop.getName(), prop.getValue()); + } + dataSource = + MobileDeviceManagementDAOUtil + .lookupDataSource(jndiConfig.getJndiName(), jndiProperties); + } else { + dataSource = MobileDeviceManagementDAOUtil + .lookupDataSource(jndiConfig.getJndiName(), null); + } + } + return dataSource; + } + + public static Map getDataSourceMap() { + return dataSourceMap; + } + +} \ No newline at end of file diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactory.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactory.java index 94d8b2a06..37a5c311c 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactory.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactory.java @@ -18,84 +18,10 @@ package org.wso2.carbon.device.mgt.mobile.dao; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.wso2.carbon.device.mgt.mobile.common.MobileDeviceMgtPluginException; -import org.wso2.carbon.device.mgt.mobile.config.datasource.JNDILookupDefinition; -import org.wso2.carbon.device.mgt.mobile.config.datasource.MobileDataSourceConfig; -import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; +public interface MobileDeviceManagementDAOFactory { -import javax.sql.DataSource; -import java.util.HashMap; -import java.util.Hashtable; -import java.util.List; -import java.util.Map; + MobileDeviceDAO getMobileDeviceDAO(); -/** - * Factory class used to create MobileDeviceManagement related DAO objects. - */ -public abstract class MobileDeviceManagementDAOFactory implements MobileDeviceManagementDAOFactoryInterface { - - private static final Log log = LogFactory.getLog(MobileDeviceManagementDAOFactory.class); - private static Map dataSourceMap = new HashMap(); - private static boolean isInitialized; - - public static void init(Map mobileDataSourceConfigMap) - throws MobileDeviceMgtPluginException { - DataSource dataSource; - for (String pluginType : mobileDataSourceConfigMap.keySet()) { - if (dataSourceMap.get(pluginType) == null) { - dataSource = MobileDeviceManagementDAOFactory.resolveDataSource(mobileDataSourceConfigMap.get - (pluginType)); - dataSourceMap.put(pluginType, dataSource); - } - } - isInitialized = true; - } - - public static void init(String key, MobileDataSourceConfig mobileDataSourceConfig) throws - MobileDeviceMgtPluginException { - DataSource dataSource = MobileDeviceManagementDAOFactory.resolveDataSource(mobileDataSourceConfig); - dataSourceMap.put(key, dataSource); - } - - /** - * Resolve data source from the data source definition. - * - * @param config Mobile data source configuration - * @return data source resolved from the data source definition - */ - public static DataSource resolveDataSource(MobileDataSourceConfig config) { - DataSource dataSource = null; - if (config == null) { - throw new RuntimeException("Device Management Repository data source configuration " + - "is null and thus, is not initialized"); - } - JNDILookupDefinition jndiConfig = config.getJndiLookupDefinition(); - if (jndiConfig != null) { - if (log.isDebugEnabled()) { - log.debug("Initializing Device Management Repository data source using the JNDI " + - "Lookup Definition"); - } - List jndiPropertyList = - jndiConfig.getJndiProperties(); - if (jndiPropertyList != null) { - Hashtable jndiProperties = new Hashtable(); - for (JNDILookupDefinition.JNDIProperty prop : jndiPropertyList) { - jndiProperties.put(prop.getName(), prop.getValue()); - } - dataSource = - MobileDeviceManagementDAOUtil - .lookupDataSource(jndiConfig.getJndiName(), jndiProperties); - } else { - dataSource = MobileDeviceManagementDAOUtil - .lookupDataSource(jndiConfig.getJndiName(), null); - } - } - return dataSource; - } + MobileFeatureDAO getMobileFeatureDAO(); - public static Map getDataSourceMap() { - return dataSourceMap; - } -} \ No newline at end of file +} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactoryInterface.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactoryInterface.java deleted file mode 100644 index 3dd2336ef..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceManagementDAOFactoryInterface.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao; - -import org.wso2.carbon.device.mgt.mobile.config.datasource.MobileDataSourceConfig; - -public interface MobileDeviceManagementDAOFactoryInterface { - - public MobileDeviceDAO getMobileDeviceDAO(); - - public MobileOperationDAO getMobileOperationDAO(); - - public MobileOperationPropertyDAO getMobileOperationPropertyDAO(); - - public MobileDeviceOperationMappingDAO getMobileDeviceOperationDAO(); - - public MobileFeatureDAO getMobileFeatureDao(); - - public MobileFeaturePropertyDAO getFeaturePropertyDAO(); - -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceOperationMappingDAO.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceOperationMappingDAO.java deleted file mode 100644 index bc61be003..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileDeviceOperationMappingDAO.java +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao; - -import org.wso2.carbon.device.mgt.mobile.dto.MobileDeviceOperationMapping; - -import java.util.List; - -/** - * This class represents the mapping between mobile device and operations. - */ -public interface MobileDeviceOperationMappingDAO { - - /** - * Adds a new mobile device operation mapping to the table. - * - * @param mblDeviceOperationMapping MobileDeviceOperationMapping object that holds data related - * to the MobileDeviceOperationMapping to be inserted. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean addMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperationMapping) - throws MobileDeviceManagementDAOException; - - /** - * Updates a MobileDeviceOperationMapping in MobileDeviceOperationMapping table. - * - * @param mblDeviceOperation MobileDeviceOperationMapping object that holds data has to be updated. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean updateMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperation) - throws MobileDeviceManagementDAOException; - - /** - * Updates a MobileDeviceOperationMapping to In-Progress state in MobileDeviceOperationMapping - * table. - * - * @param mblDeviceId MobileDevice id of the mappings to be updated. - * @param operationId Operation id of the mapping to be updated. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean updateMobileDeviceOperationMappingToInProgress(String mblDeviceId, int operationId) - throws MobileDeviceManagementDAOException; - - /** - * Updates a MobileDeviceOperationMapping to completed state in MobileDeviceOperationMapping - * table. - * - * @param mblDeviceId MobileDevice id of the mappings to be updated. - * @param operationId Operation id of the mapping to be updated. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean updateMobileDeviceOperationMappingToCompleted(String mblDeviceId, int operationId) - throws MobileDeviceManagementDAOException; - - /** - * Delete a given MobileDeviceOperationMapping from MobileDeviceOperationMapping table. - * - * @param mblDeviceId MobileDevice id of the mappings to be deleted. - * @param operationId Operation id of the mapping to be deleted. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean deleteMobileDeviceOperationMapping(String mblDeviceId, int operationId) - throws MobileDeviceManagementDAOException; - - /** - * Retrieves a given MobileDeviceOperationMapping object from the MobileDeviceOperationMapping - * table. - * - * @param mblDeviceId Device id of the mapping to be retrieved. - * @param operationId Operation id of the mapping to be retrieved. - * @return MobileDeviceOperation object that holds data of the device operation mapping - * represented by deviceId and operationId. - * @throws MobileDeviceManagementDAOException - */ - MobileDeviceOperationMapping getMobileDeviceOperationMapping(String mblDeviceId, int operationId) - throws MobileDeviceManagementDAOException; - - /** - * Retrieves all the of MobileDeviceOperationMappings relevant to a given mobile device. - * - * @param mblDeviceId MobileDevice id of the mappings to be retrieved. - * @return MobileDeviceOperationMapping object list. - * @throws MobileDeviceManagementDAOException - */ - List getAllMobileDeviceOperationMappingsOfDevice(String mblDeviceId) - throws MobileDeviceManagementDAOException; - - /** - * Retrieves all the pending MobileDeviceOperationMappings of a mobile device. - * - * @param mblDeviceId MobileDevice id of the mappings to be retrieved. - * @return MobileDeviceOperationMapping object list. - * @throws MobileDeviceManagementDAOException - */ - List getAllPendingOperationMappingsOfMobileDevice(String mblDeviceId) - throws MobileDeviceManagementDAOException; -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationDAO.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationDAO.java deleted file mode 100644 index 90e5a3ea7..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationDAO.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao; - -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperation; - -/** - * This class represents the key operations associated with persisting mobile operation related - * information. - */ -public interface MobileOperationDAO { - - /** - * Adds a new Mobile operation to the MobileOperation table. - * @param mblOperation MobileOperation object that holds data related to the operation to be - * inserted. - * @return The id of the inserted record, if the insertion was unsuccessful -1 is returned. - * @throws MobileDeviceManagementDAOException - */ - int addMobileOperation(MobileOperation mblOperation) throws MobileDeviceManagementDAOException; - - /** - * Updates a Mobile operation in the MobileOperation table. - * @param mblOperation MobileOperation object that holds data has to be updated. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean updateMobileOperation(MobileOperation mblOperation) throws MobileDeviceManagementDAOException; - - /** - * Deletes a given MobileOperation from MobileOperation table. - * @param mblOperationId Operation code of the MobileOperation to be deleted. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean deleteMobileOperation(int mblOperationId) throws MobileDeviceManagementDAOException; - - /** - * Retrieve a MobileOperation from MobileOperation table. - * @param mblOperationId Operation id of the MobileOperation to be retrieved. - * @return MobileOperation object that holds data of MobileOperation represented by operationId. - * @throws MobileDeviceManagementDAOException - */ - MobileOperation getMobileOperation(int mblOperationId) throws MobileDeviceManagementDAOException; - -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationPropertyDAO.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationPropertyDAO.java deleted file mode 100644 index 87216b02d..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/MobileOperationPropertyDAO.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao; - -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperationProperty; - -import java.util.List; - -/** - * - * This class represents the key operations associated with persisting mobile operation property - * related information. - * - */ -public interface MobileOperationPropertyDAO { - - /** - * Add a new MobileOperationProperty to MobileOperationProperty table. - * - * @param mblOperationProperty MobileOperationProperty object that holds data related to the - * operation property to be inserted. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean addMobileOperationProperty(MobileOperationProperty mblOperationProperty) - throws MobileDeviceManagementDAOException; - - /** - * Update a MobileOperationProperty in the MobileOperationProperty table. - * - * @param mblOperationProperty MobileOperationProperty object that holds data has to be updated. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean updateMobileOperationProperty(MobileOperationProperty mblOperationProperty) - throws MobileDeviceManagementDAOException; - - /** - * Deletes MobileOperationProperties of a given operation id from the MobileOperationProperty - * table. - * - * @param mblOperationId Operation id of the MobileOperationProperty to be deleted. - * @return The status of the operation. - * @throws MobileDeviceManagementDAOException - */ - boolean deleteMobileOperationProperties(int mblOperationId) - throws MobileDeviceManagementDAOException; - - /** - * Retrieve a given MobileOperationProperty from MobileOperationProperty table. - * - * @param mblOperationId Operation id of the mapping to be retrieved. - * @param property Property of the mapping to be retrieved. - * @return MobileOperationProperty object that holds data of the MobileOperationProperty - * represented by mblOperationId and property. - * @throws MobileDeviceManagementDAOException - */ - MobileOperationProperty getMobileOperationProperty(int mblOperationId, String property) - throws MobileDeviceManagementDAOException; - - /** - * Retrieve all the MobileOperationProperties related to the a operation id from - * MobileOperationProperty table. - * - * @param mblOperationId Operation id of the MobileOperationProperty to be retrieved. - * @return List of MobileOperationProperty objects. - * @throws MobileDeviceManagementDAOException - */ - List getAllMobileOperationPropertiesOfOperation(int mblOperationId) - throws MobileDeviceManagementDAOException; -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java deleted file mode 100644 index 931ab33a2..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileDeviceOperationMappingDAOImpl.java +++ /dev/null @@ -1,369 +0,0 @@ -/* - * Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao.impl; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceOperationMappingDAO; -import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; -import org.wso2.carbon.device.mgt.mobile.dto.MobileDeviceOperationMapping; - -import javax.sql.DataSource; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -/** - * Implementation of MobileDeviceOperationMappingDAO. - */ -public class MobileDeviceOperationMappingDAOImpl implements MobileDeviceOperationMappingDAO { - - private DataSource dataSource; - private static final Log log = LogFactory.getLog(MobileDeviceOperationMappingDAOImpl.class); - - public MobileDeviceOperationMappingDAOImpl(DataSource dataSource) { - this.dataSource = dataSource; - } - - @Override - public boolean addMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperationMapping) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String createDBQuery = - "INSERT INTO AD_DEVICE_OPERATION_MAPPING (DEVICE_ID, OPERATION_ID, SENT_DATE, " + - "RECEIVED_DATE, STATUS) VALUES (?, ?, ?, ?, ?)"; - - stmt = conn.prepareStatement(createDBQuery); - stmt.setString(1, mblDeviceOperationMapping.getDeviceId()); - stmt.setLong(2, mblDeviceOperationMapping.getOperationId()); - stmt.setLong(3, mblDeviceOperationMapping.getSentDate()); - stmt.setLong(4, mblDeviceOperationMapping.getReceivedDate()); - stmt.setString(5, mblDeviceOperationMapping.getStatus().name()); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Added a MobileDevice-Mapping DeviceId : " + mblDeviceOperationMapping - .getDeviceId() + ", " + - "OperationId : " + mblDeviceOperationMapping.getOperationId() + " to the MDM database."); - } - } - } catch (SQLException e) { - String msg = "Error occurred while adding device id - '" + - mblDeviceOperationMapping.getDeviceId() + " and operation id - " + - mblDeviceOperationMapping.getOperationId() + - " to mapping table AD_DEVICE_OPERATION_MAPPING"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean updateMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperation) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String updateDBQuery = - "UPDATE AD_DEVICE_OPERATION_MAPPING SET SENT_DATE = ?, RECEIVED_DATE = ?, " + - "STATUS = ? WHERE DEVICE_ID = ? AND OPERATION_ID=?"; - stmt = conn.prepareStatement(updateDBQuery); - stmt.setLong(1, mblDeviceOperation.getSentDate()); - stmt.setLong(2, mblDeviceOperation.getReceivedDate()); - stmt.setString(3, mblDeviceOperation.getStatus().name()); - stmt.setString(4, mblDeviceOperation.getDeviceId()); - stmt.setInt(5, mblDeviceOperation.getOperationId()); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Updated MobileDevice-Mapping DeviceId : " + mblDeviceOperation.getDeviceId() + " , " + - "OperationId : " + mblDeviceOperation.getOperationId()); - } - } - } catch (SQLException e) { - String msg = "Error occurred while updating device id - '" + - mblDeviceOperation.getDeviceId() + " and operation id - " + - mblDeviceOperation.getOperationId() + " in table AD_DEVICE_OPERATION_MAPPING"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean updateMobileDeviceOperationMappingToInProgress(String mblDeviceId, int operationId) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String updateDBQuery = - "UPDATE AD_DEVICE_OPERATION_MAPPING SET SENT_DATE = ?, STATUS = ? " + - "WHERE DEVICE_ID = ? AND OPERATION_ID=?"; - stmt = conn.prepareStatement(updateDBQuery); - stmt.setLong(1, new Date().getTime()); - stmt.setString(2, MobileDeviceOperationMapping.Status.INPROGRESS.name()); - stmt.setString(3, mblDeviceId); - stmt.setInt(4, operationId); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Updated status of MobileDevice-Mapping DeviceId : " + mblDeviceId + " , " + - "OperationId : " + operationId + " to In-Progress state"); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while updating the Status of operation to in-progress of device id - '" + - mblDeviceId + " and operation id - " + - operationId + " in table AD_DEVICE_OPERATION_MAPPING"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean updateMobileDeviceOperationMappingToCompleted(String mblDeviceId, - int operationId) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String updateDBQuery = - "UPDATE AD_DEVICE_OPERATION_MAPPING SET RECEIVED_DATE = ?, STATUS = ? " + - "WHERE DEVICE_ID = ? AND OPERATION_ID = ?"; - stmt = conn.prepareStatement(updateDBQuery); - stmt.setLong(1, new Date().getTime()); - stmt.setString(2, MobileDeviceOperationMapping.Status.COMPLETED.name()); - stmt.setString(3, mblDeviceId); - stmt.setInt(4, operationId); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Updated status of MobileDevice-Mapping DeviceId : " + mblDeviceId + " , " + - "OperationId : " + operationId + " to Completed state"); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while updating the Status of operation to completed of device id - '" + - mblDeviceId + " and operation id - " + - operationId + " in table AD_DEVICE_OPERATION_MAPPING"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean deleteMobileDeviceOperationMapping(String mblDeviceId, int operationId) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String deleteDBQuery = - "DELETE FROM AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND " + - "OPERATION_ID = ?"; - stmt = conn.prepareStatement(deleteDBQuery); - stmt.setString(1, mblDeviceId); - stmt.setInt(2, operationId); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Deleted MobileDevice-Mapping DeviceId : " + mblDeviceId + " , " + - "OperationId : " + operationId + "from MDM database."); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while deleting the table entry AD_DEVICE_OPERATION with " + - " device id - '" + mblDeviceId + " and operation id - " + operationId; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public MobileDeviceOperationMapping getMobileDeviceOperationMapping(String mblDeviceId, - int operationId) - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement stmt = null; - MobileDeviceOperationMapping mblDeviceOperation = null; - try { - conn = this.getConnection(); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, SENT_DATE, RECEIVED_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND OPERATION_ID = ?"; - stmt = conn.prepareStatement(selectDBQuery); - stmt.setString(1, mblDeviceId); - stmt.setInt(2, operationId); - ResultSet resultSet = stmt.executeQuery(); - if (resultSet.next()) { - mblDeviceOperation = new MobileDeviceOperationMapping(); - mblDeviceOperation.setDeviceId(resultSet.getString(1)); - mblDeviceOperation.setOperationId(resultSet.getInt(2)); - mblDeviceOperation.setSentDate(resultSet.getInt(3)); - mblDeviceOperation.setReceivedDate(resultSet.getInt(4)); - mblDeviceOperation.setStatus(resultSet.getString(5)); - if (log.isDebugEnabled()) { - log.debug("Fetched MobileDevice-Mapping of DeviceId : " + mblDeviceId + " , " + - "OperationId : " + operationId ); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while fetching table MBL_DEVICE_OPERATION entry with device id - '" + - mblDeviceId + " and operation id - " + operationId; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return mblDeviceOperation; - } - - @Override - public List getAllMobileDeviceOperationMappingsOfDevice( - String mblDeviceId) - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement stmt = null; - MobileDeviceOperationMapping mblDeviceOperation; - List mblDeviceOperations = - new ArrayList<>(); - try { - conn = this.getConnection(); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, SENT_DATE, RECEIVED_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ?"; - stmt = conn.prepareStatement(selectDBQuery); - stmt.setString(1, mblDeviceId); - ResultSet resultSet = stmt.executeQuery(); - while (resultSet.next()) { - mblDeviceOperation = new MobileDeviceOperationMapping(); - mblDeviceOperation.setDeviceId(resultSet.getString(1)); - mblDeviceOperation.setOperationId(resultSet.getInt(2)); - mblDeviceOperation.setSentDate(resultSet.getInt(3)); - mblDeviceOperation.setReceivedDate(resultSet.getInt(4)); - mblDeviceOperation.setStatus(resultSet.getString(5)); - mblDeviceOperations.add(mblDeviceOperation); - } - if (log.isDebugEnabled()) { - log.debug("Fetched all MobileDevice-Mappings of DeviceId : " + mblDeviceId); - } - } catch (SQLException e) { - String msg = - "Error occurred while fetching mapping table AD_DEVICE_OPERATION_MAPPING entries of " + - "device id - '" + mblDeviceId; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return mblDeviceOperations; - } - - @Override - public List getAllPendingOperationMappingsOfMobileDevice( - String mblDeviceId) - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement stmt = null; - MobileDeviceOperationMapping mblDeviceOperation = null; - List mblDeviceOperations = - new ArrayList<>(); - try { - - conn = this.getConnection(); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, SENT_DATE, RECEIVED_DATE, STATUS FROM" + - " AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND STATUS = ?"; - stmt = conn.prepareStatement(selectDBQuery); - stmt.setString(1, mblDeviceId); - stmt.setString(2, MobileDeviceOperationMapping.Status.NEW.name()); - ResultSet resultSet = stmt.executeQuery(); - while (resultSet.next()) { - mblDeviceOperation = new MobileDeviceOperationMapping(); - mblDeviceOperation.setDeviceId(resultSet.getString(1)); - mblDeviceOperation.setOperationId(resultSet.getInt(2)); - mblDeviceOperation.setSentDate(resultSet.getInt(3)); - mblDeviceOperation.setReceivedDate(resultSet.getInt(4)); - mblDeviceOperation.setStatus(resultSet.getString(5)); - mblDeviceOperations.add(mblDeviceOperation); - } - if (log.isDebugEnabled()) { - log.debug("Fetched all pending MobileDevice-Mappings of DeviceId : " + mblDeviceId); - } - } catch (SQLException e) { - String msg = - "Error occurred while fetching mapping table MBL_DEVICE_OPERATION entries of" + - " device id - '" + mblDeviceId; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return mblDeviceOperations; - } - - private Connection getConnection() throws MobileDeviceManagementDAOException { - try { - return dataSource.getConnection(); - } catch (SQLException e) { - String msg = "Error occurred while obtaining a connection from the mobile device " + - "management metadata repository datasource."; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } - } -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileFeatureDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileFeatureDAOImpl.java index 666e33e2d..a9636ccb4 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileFeatureDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileFeatureDAOImpl.java @@ -64,12 +64,10 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { int rows = stmt.executeUpdate(); if (rows > 0) { if (log.isDebugEnabled()) { - log.debug("Added a new MobileFeature " + mobileFeature.getCode() + " to the" + - " MDM database."); + log.debug("Added a new MobileFeature " + mobileFeature.getCode() + " to the MDM database."); } status = true; } - } catch (SQLException e) { String msg = "Error occurred while adding feature code - '" + mobileFeature.getCode() + "' to feature table"; @@ -91,7 +89,7 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { conn = this.getConnection(); String updateDBQuery = "UPDATE AD_FEATURE SET CODE = ?, NAME = ?, DESCRIPTION = ?, DEVICE_TYPE = ?" + - " WHERE FEATURE_ID = ?"; + " WHERE ID = ?"; stmt = conn.prepareStatement(updateDBQuery); stmt.setString(1, mobileFeature.getCode()); stmt.setString(2, mobileFeature.getName()); @@ -132,8 +130,7 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { if (rows > 0) { status = true; if (log.isDebugEnabled()) { - log.debug("Deleted MobileFeature code " + mblFeatureCode + " from the" + - " MDM database."); + log.debug("Deleted MobileFeature code " + mblFeatureCode + " from the MDM database."); } } } catch (SQLException e) { @@ -155,15 +152,14 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { try { conn = this.getConnection(); String deleteDBQuery = - "DELETE FROM AD_FEATURE WHERE FEATURE_ID = ?"; + "DELETE FROM AD_FEATURE WHERE ID = ?"; stmt = conn.prepareStatement(deleteDBQuery); stmt.setInt(1, mblFeatureId); int rows = stmt.executeUpdate(); if (rows > 0) { status = true; if (log.isDebugEnabled()) { - log.debug("Deleted MobileFeature id " + mblFeatureId + " from the" + - " MDM database."); + log.debug("Deleted MobileFeature id " + mblFeatureId + " from the MDM database."); } } } catch (SQLException e) { @@ -185,7 +181,7 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { try { conn = this.getConnection(); String selectDBQuery = - "SELECT FEATURE_ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE " + + "SELECT ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE " + "WHERE CODE = ?"; stmt = conn.prepareStatement(selectDBQuery); stmt.setString(1, mblFeatureCode); @@ -198,13 +194,11 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { mobileFeature.setDescription(resultSet.getString(4)); mobileFeature.setDeviceType(resultSet.getString(5)); if (log.isDebugEnabled()) { - log.debug("Fetched MobileFeature " + mblFeatureCode + " from the" + - " MDM database."); + log.debug("Fetched MobileFeature " + mblFeatureCode + " from the MDM database."); } } } catch (SQLException e) { - String msg = "Error occurred while fetching feature code - '" + - mblFeatureCode + "'"; + String msg = "Error occurred while fetching feature code - '" + mblFeatureCode + "'"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -222,8 +216,8 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { try { conn = this.getConnection(); String selectDBQuery = - "SELECT FEATURE_ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE" + - " WHERE FEATURE_ID = ?"; + "SELECT ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE" + + " WHERE ID = ?"; stmt = conn.prepareStatement(selectDBQuery); stmt.setInt(1, mblFeatureId); ResultSet resultSet = stmt.executeQuery(); @@ -235,13 +229,11 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { mobileFeature.setDescription(resultSet.getString(4)); mobileFeature.setDeviceType(resultSet.getString(5)); if (log.isDebugEnabled()) { - log.debug("Fetched MobileFeatureId" + mblFeatureId + " from the" + - " MDM database."); + log.debug("Fetched MobileFeatureId" + mblFeatureId + " from the MDM database."); } } } catch (SQLException e) { - String msg = "Error occurred while fetching feature id - '" + - mblFeatureId + "'"; + String msg = "Error occurred while fetching feature id - '" + mblFeatureId + "'"; log.error(msg, e); throw new MobileDeviceManagementDAOException(msg, e); } finally { @@ -259,7 +251,7 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { try { conn = this.getConnection(); String selectDBQuery = - "SELECT FEATURE_ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE"; + "SELECT ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE"; stmt = conn.prepareStatement(selectDBQuery); ResultSet resultSet = stmt.executeQuery(); while (resultSet.next()) { @@ -285,16 +277,15 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { } @Override - public List getFeatureByDeviceType(String deviceType) throws - MobileDeviceManagementDAOException { + public List getFeatureByDeviceType(String deviceType) throws MobileDeviceManagementDAOException { Connection conn = null; PreparedStatement stmt = null; MobileFeature mobileFeature; - List mobileFeatures = new ArrayList(); + List mobileFeatures = new ArrayList<>(); try { conn = this.getConnection(); String selectDBQuery = - "SELECT FEATURE_ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE" + + "SELECT ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE" + " WHERE DEVICE_TYPE = ?"; stmt = conn.prepareStatement(selectDBQuery); stmt.setString(1, deviceType); @@ -332,4 +323,5 @@ public class MobileFeatureDAOImpl implements MobileFeatureDAO { throw new MobileDeviceManagementDAOException(msg, e); } } + } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java deleted file mode 100644 index 12585f530..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationDAOImpl.java +++ /dev/null @@ -1,191 +0,0 @@ -/* - * Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao.impl; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileOperationDAO; -import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperation; - -import javax.sql.DataSource; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; - -/** - * Implementation of MobileOperationDAO. - */ -public class MobileOperationDAOImpl implements MobileOperationDAO { - - private DataSource dataSource; - private static final Log log = LogFactory.getLog(MobileOperationDAOImpl.class); - - public MobileOperationDAOImpl(DataSource dataSource) { - this.dataSource = dataSource; - } - - @Override - public int addMobileOperation(MobileOperation mblOperation) - throws MobileDeviceManagementDAOException { - int status = -1; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String createDBQuery = - "INSERT INTO AD_OPERATION(FEATURE_CODE, CREATED_DATE) VALUES ( ?, ?)"; - stmt = conn.prepareStatement(createDBQuery, new String[] { "OPERATION_ID" }); - stmt.setString(1, mblOperation.getFeatureCode()); - stmt.setLong(2, mblOperation.getCreatedDate()); - int rows = stmt.executeUpdate(); - if (rows > 0) { - ResultSet rs = stmt.getGeneratedKeys(); - if (rs != null && rs.next()) { - status = rs.getInt(1); - } - if (log.isDebugEnabled()) { - log.debug("Added a new MobileOperation " + mblOperation.getFeatureCode() + - " to MDM database."); - } - } - } catch (SQLException e) { - String msg = "Error occurred while adding the operation - '" + - mblOperation.getFeatureCode() + "' to AD_OPERATION table"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean updateMobileOperation(MobileOperation mblOperation) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String updateDBQuery = - "UPDATE AD_OPERATION SET FEATURE_CODE = ?, CREATED_DATE = ? WHERE " + - "OPERATION_ID = ?"; - stmt = conn.prepareStatement(updateDBQuery); - stmt.setString(1, mblOperation.getFeatureCode()); - stmt.setLong(2, mblOperation.getCreatedDate()); - stmt.setInt(3, mblOperation.getOperationId()); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Updated MobileOperation " + mblOperation.getFeatureCode() + - " to MDM database."); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while updating the AD_OPERATION table entry with operation id - '" + - mblOperation.getOperationId() + "'"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean deleteMobileOperation(int mblOperationId) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String deleteDBQuery = - "DELETE FROM AD_OPERATION WHERE OPERATION_ID = ?"; - stmt = conn.prepareStatement(deleteDBQuery); - stmt.setInt(1, mblOperationId); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Deleted a new MobileOperation " + mblOperationId + - " from MDM database."); - } - } - } catch (SQLException e) { - String msg = "Error occurred while deleting AD_OPERATION entry with operation Id - "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public MobileOperation getMobileOperation(int mblOperationId) - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement stmt = null; - MobileOperation operation = null; - try { - conn = this.getConnection(); - String selectDBQuery = - "SELECT OPERATION_ID, FEATURE_CODE, CREATED_DATE FROM AD_OPERATION WHERE " + - "OPERATION_ID = ?"; - stmt = conn.prepareStatement(selectDBQuery); - stmt.setInt(1, mblOperationId); - ResultSet resultSet = stmt.executeQuery(); - if (resultSet.next()) { - operation = new MobileOperation(); - operation.setOperationId(resultSet.getInt(1)); - operation.setFeatureCode(resultSet.getString(2)); - operation.setCreatedDate(resultSet.getLong(3)); - if (log.isDebugEnabled()) { - log.debug("Fetched MobileOperation " + operation.getFeatureCode() + - " from MDM database."); - } - } - } catch (SQLException e) { - String msg = "Error occurred while fetching operationId - '" + - mblOperationId + "' from MBL_OPERATION"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return operation; - } - - private Connection getConnection() throws MobileDeviceManagementDAOException { - try { - return dataSource.getConnection(); - } catch (SQLException e) { - String msg = "Error occurred while obtaining a connection from the mobile device " + - "management metadata repository datasource."; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } - } -} \ No newline at end of file diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java deleted file mode 100644 index d111dc653..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/impl/MobileOperationPropertyDAOImpl.java +++ /dev/null @@ -1,239 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.dao.impl; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileOperationPropertyDAO; -import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperationProperty; - -import javax.sql.DataSource; -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.List; - -/** - * Implementation of MobileOperationPropertyDAO. - */ -public class MobileOperationPropertyDAOImpl implements MobileOperationPropertyDAO { - - private DataSource dataSource; - private static final Log log = LogFactory.getLog(MobileOperationPropertyDAOImpl.class); - - public MobileOperationPropertyDAOImpl(DataSource dataSource) { - this.dataSource = dataSource; - } - - @Override - public boolean addMobileOperationProperty(MobileOperationProperty mblOperationProperty) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String createDBQuery = - "INSERT INTO AD_OPERATION_PROPERTY(OPERATION_ID, PROPERTY, VALUE) " + - "VALUES ( ?, ?, ?)"; - stmt = conn.prepareStatement(createDBQuery); - stmt.setInt(1, mblOperationProperty.getOperationId()); - stmt.setString(2, mblOperationProperty.getProperty()); - stmt.setString(3, mblOperationProperty.getValue()); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Added a new MobileOperationProperty " + mblOperationProperty.getProperty() + - " to MDM database."); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while adding mobile operation property to AD_OPERATION_PROPERTY " + - "table"; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean updateMobileOperationProperty( - MobileOperationProperty mblOperationProperty) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String createDBQuery = - "UPDATE AD_OPERATION_PROPERTY SET VALUE = ? WHERE OPERATION_ID = ? AND " + - "PROPERTY = ?"; - stmt = conn.prepareStatement(createDBQuery); - stmt.setString(1, mblOperationProperty.getValue()); - stmt.setInt(2, mblOperationProperty.getOperationId()); - stmt.setString(3, mblOperationProperty.getProperty()); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Updated MobileOperationProperty " + mblOperationProperty.getProperty() + - " to MDM database."); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while updating the mobile operation property in" + - " AD_OPERATION_PROPERTY table."; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public boolean deleteMobileOperationProperties(int mblOperationId) - throws MobileDeviceManagementDAOException { - boolean status = false; - Connection conn = null; - PreparedStatement stmt = null; - try { - conn = this.getConnection(); - String deleteDBQuery = - "DELETE FROM AD_OPERATION_PROPERTY WHERE OPERATION_ID = ?"; - stmt = conn.prepareStatement(deleteDBQuery); - stmt.setInt(1, mblOperationId); - int rows = stmt.executeUpdate(); - if (rows > 0) { - status = true; - if (log.isDebugEnabled()) { - log.debug("Deleted MobileOperationProperties of operation-id " + - mblOperationId + - " from MDM database."); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while deleting AD_OPERATION_PROPERTY entry with operation Id - "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return status; - } - - @Override - public MobileOperationProperty getMobileOperationProperty(int mblOperationId, - String property) - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement stmt = null; - MobileOperationProperty mobileOperationProperty = null; - try { - conn = this.getConnection(); - String selectDBQuery = - "SELECT OPERATION_ID, PROPERTY, VALUE FROM AD_OPERATION_PROPERTY WHERE " + - "OPERATION_ID = ? AND PROPERTY = ?"; - stmt = conn.prepareStatement(selectDBQuery); - stmt.setInt(1, mblOperationId); - stmt.setString(2, property); - ResultSet resultSet = stmt.executeQuery(); - if (resultSet.next()) { - mobileOperationProperty = new MobileOperationProperty(); - mobileOperationProperty.setOperationId(resultSet.getInt(1)); - mobileOperationProperty.setProperty(resultSet.getString(2)); - mobileOperationProperty.setValue(resultSet.getString(3)); - if (log.isDebugEnabled()) { - log.debug("Fetched MobileOperationProperty of Operation-id : " + - mblOperationId + - " Property : " + property + " from MDM database."); - } - } - } catch (SQLException e) { - String msg = - "Error occurred while fetching the mobile operation property of Operation_id : " + - mblOperationId + " and Property : " + property; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return mobileOperationProperty; - } - - @Override - public List getAllMobileOperationPropertiesOfOperation( - int mblOperationId) throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement stmt = null; - MobileOperationProperty mobileOperationProperty; - List properties = new ArrayList<>(); - try { - conn = this.getConnection(); - String selectDBQuery = - "SELECT OPERATION_ID, PROPERTY, VALUE FROM AD_OPERATION_PROPERTY WHERE " + - "OPERATION_ID = ?"; - stmt = conn.prepareStatement(selectDBQuery); - stmt.setInt(1, mblOperationId); - ResultSet resultSet = stmt.executeQuery(); - while (resultSet.next()) { - mobileOperationProperty = new MobileOperationProperty(); - mobileOperationProperty.setOperationId(resultSet.getInt(1)); - mobileOperationProperty.setProperty(resultSet.getString(2)); - mobileOperationProperty.setValue(resultSet.getString(3)); - properties.add(mobileOperationProperty); - } - if (log.isDebugEnabled()) { - log.debug("Fetched all MobileOperationProperties of Operation-id : " + - mblOperationId + - " from MDM database."); - } - } catch (SQLException e) { - String msg = - "Error occurred while fetching the mobile operation properties of Operation_id " + - mblOperationId; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDeviceManagementDAOUtil.cleanupResources(conn, stmt, null); - } - return properties; - } - - private Connection getConnection() throws MobileDeviceManagementDAOException { - try { - return dataSource.getConnection(); - } catch (SQLException e) { - String msg = "Error occurred while obtaining a connection from the mobile device " + - "management metadata repository datasource."; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } - } -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java index ffac64dec..9f1e22167 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java @@ -18,23 +18,13 @@ package org.wso2.carbon.device.mgt.mobile.impl.android; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.*; import org.wso2.carbon.device.mgt.common.app.mgt.Application; import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManagementException; import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManager; -import org.wso2.carbon.device.mgt.common.license.mgt.License; -import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManagementException; import org.wso2.carbon.device.mgt.common.operation.mgt.Operation; import org.wso2.carbon.device.mgt.common.spi.DeviceManagementService; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; -import org.wso2.carbon.device.mgt.mobile.dto.MobileDevice; -import org.wso2.carbon.device.mgt.mobile.impl.android.dao.AndroidDAOFactory; -import org.wso2.carbon.device.mgt.mobile.util.MobileDeviceManagementUtil; -import java.util.ArrayList; import java.util.List; /** diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManager.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManager.java index 73b3d9835..d396f45ee 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManager.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManager.java @@ -28,8 +28,8 @@ import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManager; import org.wso2.carbon.device.mgt.extensions.license.mgt.registry.RegistryBasedLicenseManager; import org.wso2.carbon.device.mgt.mobile.common.MobileDeviceMgtPluginException; import org.wso2.carbon.device.mgt.mobile.common.MobilePluginConstants; +import org.wso2.carbon.device.mgt.mobile.dao.AbstractMobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dto.MobileDevice; import org.wso2.carbon.device.mgt.mobile.impl.android.dao.AndroidDAOFactory; import org.wso2.carbon.device.mgt.mobile.impl.android.util.AndroidPluginUtils; @@ -49,7 +49,7 @@ import java.util.List; public class AndroidDeviceManager implements DeviceManager { - private MobileDeviceManagementDAOFactory daoFactory; + private AbstractMobileDeviceManagementDAOFactory daoFactory; private static final Log log = LogFactory.getLog(AndroidDeviceManagementService.class); private FeatureManager featureManager = new AndroidFeatureManager(); private LicenseManager licenseManager; diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidFeatureManager.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidFeatureManager.java index 999dfb655..6ce207890 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidFeatureManager.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidFeatureManager.java @@ -23,6 +23,7 @@ import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.DeviceManagementException; import org.wso2.carbon.device.mgt.common.Feature; import org.wso2.carbon.device.mgt.common.FeatureManager; +import org.wso2.carbon.device.mgt.mobile.dao.AbstractMobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileFeatureDAO; @@ -37,11 +38,10 @@ public class AndroidFeatureManager implements FeatureManager { private MobileFeatureDAO featureDAO; private static final Log log = LogFactory.getLog(AndroidFeatureManager.class); - private MobileDeviceManagementDAOFactory mobileDeviceManagementDAOFactory; public AndroidFeatureManager() { - mobileDeviceManagementDAOFactory = new AndroidDAOFactory(); - this.featureDAO = mobileDeviceManagementDAOFactory.getMobileFeatureDao(); + MobileDeviceManagementDAOFactory daoFactory = new AndroidDAOFactory(); + this.featureDAO = daoFactory.getMobileFeatureDAO(); } @Override diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/AndroidDAOFactory.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/AndroidDAOFactory.java index dd116e519..12573ac2b 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/AndroidDAOFactory.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/AndroidDAOFactory.java @@ -29,12 +29,11 @@ import javax.sql.DataSource; import java.sql.Connection; import java.sql.SQLException; -public class AndroidDAOFactory extends MobileDeviceManagementDAOFactory - implements MobileDeviceManagementDAOFactoryInterface { +public class AndroidDAOFactory extends AbstractMobileDeviceManagementDAOFactory { private static final Log log = LogFactory.getLog(AndroidDAOFactory.class); protected static DataSource dataSource; - private static ThreadLocal currentConnection = new ThreadLocal(); + private static ThreadLocal currentConnection = new ThreadLocal<>(); public AndroidDAOFactory() { this.dataSource = getDataSourceMap().get(DeviceManagementConstants.MobileDeviceTypes.MOBILE_DEVICE_TYPE_ANDROID); @@ -46,21 +45,7 @@ public class AndroidDAOFactory extends MobileDeviceManagementDAOFactory } @Override - public MobileOperationDAO getMobileOperationDAO() { - return null; - } - - @Override - public MobileOperationPropertyDAO getMobileOperationPropertyDAO() { - return null; - } - - @Override - public MobileDeviceOperationMappingDAO getMobileDeviceOperationDAO() { - return null; - } - - @Override public MobileFeatureDAO getMobileFeatureDao() { + public MobileFeatureDAO getMobileFeatureDAO() { return new AndroidFeatureDAOImpl(); } @@ -136,4 +121,5 @@ public class AndroidDAOFactory extends MobileDeviceManagementDAOFactory closeConnection(); } } + } \ No newline at end of file diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidDeviceDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidDeviceDAOImpl.java index 886039511..a43fcab9d 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidDeviceDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidDeviceDAOImpl.java @@ -52,17 +52,16 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ try { conn = AndroidDAOFactory.getConnection(); String selectDBQuery = - "SELECT ANDROID_DEVICE_ID, GCM_TOKEN, DEVICE_INFO, DEVICE_MODEL, SERIAL, " + + "SELECT DEVICE_ID, GCM_TOKEN, DEVICE_INFO, DEVICE_MODEL, SERIAL, " + "VENDOR, MAC_ADDRESS, DEVICE_NAME, LATITUDE, LONGITUDE, IMEI, IMSI, OS_VERSION" + - " FROM AD_DEVICE WHERE ANDROID_DEVICE_ID = ?"; + " FROM AD_DEVICE WHERE DEVICE_ID = ?"; stmt = conn.prepareStatement(selectDBQuery); stmt.setString(1, mblDeviceId); rs = stmt.executeQuery(); if (rs.next()) { mobileDevice = new MobileDevice(); - mobileDevice.setMobileDeviceId(rs.getString(AndroidPluginConstants. - ANDROID_DEVICE_ID)); + mobileDevice.setMobileDeviceId(rs.getString(AndroidPluginConstants.DEVICE_ID)); mobileDevice.setModel(rs.getString(AndroidPluginConstants.DEVICE_MODEL)); mobileDevice.setSerial(rs.getString(AndroidPluginConstants.SERIAL)); mobileDevice.setVendor(rs.getString(AndroidPluginConstants.VENDOR)); @@ -103,7 +102,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ try { conn = AndroidDAOFactory.getConnection(); String createDBQuery = - "INSERT INTO AD_DEVICE(ANDROID_DEVICE_ID, GCM_TOKEN, DEVICE_INFO, SERIAL, " + + "INSERT INTO AD_DEVICE(DEVICE_ID, GCM_TOKEN, DEVICE_INFO, SERIAL, " + "VENDOR, MAC_ADDRESS, DEVICE_NAME, LATITUDE, LONGITUDE, IMEI, IMSI, " + "OS_VERSION, DEVICE_MODEL) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; @@ -150,7 +149,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ String updateDBQuery = "UPDATE AD_DEVICE SET GCM_TOKEN = ?, DEVICE_INFO = ?, SERIAL = ?, VENDOR = ?, " + "MAC_ADDRESS = ?, DEVICE_NAME = ?, LATITUDE = ?, LONGITUDE = ?, IMEI = ?, " + - "IMSI = ?, OS_VERSION = ?, DEVICE_MODEL = ? WHERE ANDROID_DEVICE_ID = ?"; + "IMSI = ?, OS_VERSION = ?, DEVICE_MODEL = ? WHERE DEVICE_ID = ?"; stmt = conn.prepareStatement(updateDBQuery); Map properties = mobileDevice.getDeviceProperties(); @@ -195,7 +194,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ try { conn = AndroidDAOFactory.getConnection(); String deleteDBQuery = - "DELETE FROM AD_DEVICE WHERE ANDROID_DEVICE_ID = ?"; + "DELETE FROM AD_DEVICE WHERE DEVICE_ID = ?"; stmt = conn.prepareStatement(deleteDBQuery); stmt.setString(1, mblDeviceId); int rows = stmt.executeUpdate(); @@ -225,7 +224,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ try { conn = AndroidDAOFactory.getConnection(); String selectDBQuery = - "SELECT ANDROID_DEVICE_ID, GCM_TOKEN, DEVICE_INFO, DEVICE_MODEL, SERIAL, " + + "SELECT DEVICE_ID, GCM_TOKEN, DEVICE_INFO, DEVICE_MODEL, SERIAL, " + "VENDOR, MAC_ADDRESS, DEVICE_NAME, LATITUDE, LONGITUDE, IMEI, IMSI, OS_VERSION " + "FROM AD_DEVICE"; stmt = conn.prepareStatement(selectDBQuery); @@ -233,8 +232,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ while (rs.next()) { mobileDevice = new MobileDevice(); - mobileDevice.setMobileDeviceId(rs.getString(AndroidPluginConstants. - ANDROID_DEVICE_ID)); + mobileDevice.setMobileDeviceId(rs.getString(AndroidPluginConstants.DEVICE_ID)); mobileDevice.setModel(rs.getString(AndroidPluginConstants.DEVICE_MODEL)); mobileDevice.setSerial(rs.getString(AndroidPluginConstants.SERIAL)); mobileDevice.setVendor(rs.getString(AndroidPluginConstants.VENDOR)); @@ -244,7 +242,7 @@ public class AndroidDeviceDAOImpl implements MobileDeviceDAO{ mobileDevice.setImsi(rs.getString(AndroidPluginConstants.IMSI)); mobileDevice.setOsVersion(rs.getString(AndroidPluginConstants.OS_VERSION)); - Map propertyMap = new HashMap(); + Map propertyMap = new HashMap<>(); propertyMap.put(AndroidPluginConstants.GCM_TOKEN, rs.getString(AndroidPluginConstants.GCM_TOKEN)); propertyMap.put(AndroidPluginConstants.DEVICE_INFO, rs.getString(AndroidPluginConstants.DEVICE_INFO)); propertyMap.put(AndroidPluginConstants.DEVICE_NAME, rs.getString(AndroidPluginConstants.DEVICE_NAME)); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidFeatureDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidFeatureDAOImpl.java index d597d3a5d..88a21ab78 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidFeatureDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/dao/impl/AndroidFeatureDAOImpl.java @@ -22,7 +22,6 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.DeviceManagementConstants; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileFeatureDAO; import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; import org.wso2.carbon.device.mgt.mobile.dto.MobileFeature; @@ -30,7 +29,6 @@ import org.wso2.carbon.device.mgt.mobile.impl.android.dao.AndroidDAOFactory; import org.wso2.carbon.device.mgt.mobile.impl.android.dao.AndroidFeatureManagementDAOException; import org.wso2.carbon.device.mgt.mobile.impl.android.util.AndroidPluginConstants; -import javax.sql.DataSource; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; @@ -75,7 +73,7 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { @Override public boolean updateFeature(MobileFeature mobileFeature) throws MobileDeviceManagementDAOException { boolean status = false; - Connection conn = null; + Connection conn; PreparedStatement stmt = null; try { conn = AndroidDAOFactory.getConnection(); @@ -112,7 +110,7 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { PreparedStatement stmt = null; boolean status = false; - Connection conn = null; + Connection conn; try { conn = AndroidDAOFactory.getConnection(); String sql = "DELETE FROM AD_FEATURE WHERE ID = ?"; @@ -131,11 +129,10 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { } @Override - public boolean deleteFeatureByCode(String mblFeatureCode) throws - MobileDeviceManagementDAOException { + public boolean deleteFeatureByCode(String mblFeatureCode) throws MobileDeviceManagementDAOException { PreparedStatement stmt = null; boolean status = false; - Connection conn = null; + Connection conn; try { conn = AndroidDAOFactory.getConnection(); String sql = "DELETE FROM AD_FEATURE WHERE CODE = ?"; @@ -154,11 +151,10 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { } @Override - public MobileFeature getFeatureById(int mblFeatureId) throws - MobileDeviceManagementDAOException { + public MobileFeature getFeatureById(int mblFeatureId) throws MobileDeviceManagementDAOException { PreparedStatement stmt = null; ResultSet rs = null; - Connection conn = null; + Connection conn; try { conn = AndroidDAOFactory.getConnection(); String sql = "SELECT ID, CODE, NAME, DESCRIPTION FROM AD_FEATURE WHERE ID = ?"; @@ -189,11 +185,10 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { } @Override - public MobileFeature getFeatureByCode(String mblFeatureCode) throws - MobileDeviceManagementDAOException { + public MobileFeature getFeatureByCode(String mblFeatureCode) throws MobileDeviceManagementDAOException { PreparedStatement stmt = null; ResultSet rs = null; - Connection conn = null; + Connection conn; try { conn = AndroidDAOFactory.getConnection(); @@ -232,11 +227,10 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { @Override public List getAllFeatures() throws MobileDeviceManagementDAOException { - PreparedStatement stmt = null; ResultSet rs = null; Connection conn = null; - List features = new ArrayList(); + List features = new ArrayList<>(); try { conn = AndroidDAOFactory.getConnection(); @@ -250,8 +244,7 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { mobileFeature.setId(rs.getInt(AndroidPluginConstants.ANDROID_FEATURE_ID)); mobileFeature.setCode(rs.getString(AndroidPluginConstants.ANDROID_FEATURE_CODE)); mobileFeature.setName(rs.getString(AndroidPluginConstants.ANDROID_FEATURE_NAME)); - mobileFeature.setDescription(rs.getString(AndroidPluginConstants. - ANDROID_FEATURE_DESCRIPTION)); + mobileFeature.setDescription(rs.getString(AndroidPluginConstants.ANDROID_FEATURE_DESCRIPTION)); mobileFeature.setDeviceType( DeviceManagementConstants.MobileDeviceTypes.MOBILE_DEVICE_TYPE_ANDROID); features.add(mobileFeature); @@ -265,4 +258,5 @@ public class AndroidFeatureDAOImpl implements MobileFeatureDAO { AndroidDAOFactory.closeConnection(); } } + } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidPluginConstants.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidPluginConstants.java index 56837f259..798f5fef1 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidPluginConstants.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidPluginConstants.java @@ -24,7 +24,7 @@ package org.wso2.carbon.device.mgt.mobile.impl.android.util; public class AndroidPluginConstants { //Properties related to AD_DEVICE table - public static final String ANDROID_DEVICE_ID = "ANDROID_DEVICE_ID"; + public static final String DEVICE_ID = "DEVICE_ID"; public static final String GCM_TOKEN = "GCM_TOKEN"; public static final String DEVICE_INFO = "DEVICE_INFO"; public static final String SERIAL = "SERIAL"; diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManager.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManager.java index 54a1dbea1..18e9d6360 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManager.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManager.java @@ -28,8 +28,8 @@ import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManager; import org.wso2.carbon.device.mgt.extensions.license.mgt.registry.RegistryBasedLicenseManager; import org.wso2.carbon.device.mgt.mobile.common.MobileDeviceMgtPluginException; import org.wso2.carbon.device.mgt.mobile.common.MobilePluginConstants; +import org.wso2.carbon.device.mgt.mobile.dao.AbstractMobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dto.MobileDevice; import org.wso2.carbon.device.mgt.mobile.impl.windows.dao.WindowsDAOFactory; import org.wso2.carbon.device.mgt.mobile.impl.windows.util.WindowsPluginUtils; @@ -49,7 +49,7 @@ import java.util.List; public class WindowsDeviceManager implements DeviceManager { - private MobileDeviceManagementDAOFactory daoFactory; + private AbstractMobileDeviceManagementDAOFactory daoFactory; private LicenseManager licenseManager; private FeatureManager featureManager = new WindowsFeatureManager(); private static final Log log = LogFactory.getLog(WindowsDeviceManagementService.class); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsFeatureManager.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsFeatureManager.java index 99067b7eb..da7d718cc 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsFeatureManager.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsFeatureManager.java @@ -23,6 +23,7 @@ import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.DeviceManagementException; import org.wso2.carbon.device.mgt.common.Feature; import org.wso2.carbon.device.mgt.common.FeatureManager; +import org.wso2.carbon.device.mgt.mobile.dao.AbstractMobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.MobileFeatureDAO; @@ -37,16 +38,14 @@ public class WindowsFeatureManager implements FeatureManager { private MobileFeatureDAO featureDAO; private static final Log log = LogFactory.getLog(WindowsFeatureManager.class); - private MobileDeviceManagementDAOFactory mobileDeviceManagementDAOFactory; public WindowsFeatureManager() { - mobileDeviceManagementDAOFactory = new WindowsDAOFactory(); - this.featureDAO = mobileDeviceManagementDAOFactory.getMobileFeatureDao(); + MobileDeviceManagementDAOFactory daoFactory = new WindowsDAOFactory(); + this.featureDAO = daoFactory.getMobileFeatureDAO(); } @Override public boolean addFeature(Feature feature) throws DeviceManagementException { - try { WindowsDAOFactory.beginTransaction(); MobileFeature mobileFeature = MobileDeviceManagementUtil.convertToMobileFeature(feature); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/WindowsDAOFactory.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/WindowsDAOFactory.java index 3c1ba0424..ad2af0445 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/WindowsDAOFactory.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/WindowsDAOFactory.java @@ -28,12 +28,11 @@ import javax.sql.DataSource; import java.sql.Connection; import java.sql.SQLException; -public class WindowsDAOFactory extends MobileDeviceManagementDAOFactory - implements MobileDeviceManagementDAOFactoryInterface { +public class WindowsDAOFactory extends AbstractMobileDeviceManagementDAOFactory { private static final Log log = LogFactory.getLog(WindowsDAOFactory.class); protected static DataSource dataSource; - private static ThreadLocal currentConnection = new ThreadLocal(); + private static ThreadLocal currentConnection = new ThreadLocal<>(); public WindowsDAOFactory() { this.dataSource = getDataSourceMap().get(DeviceManagementConstants.MobileDeviceTypes.MOBILE_DEVICE_TYPE_WINDOWS); @@ -45,27 +44,7 @@ public class WindowsDAOFactory extends MobileDeviceManagementDAOFactory } @Override - public MobileOperationDAO getMobileOperationDAO() { - return null; - } - - @Override - public MobileOperationPropertyDAO getMobileOperationPropertyDAO() { - return null; - } - - @Override - public MobileDeviceOperationMappingDAO getMobileDeviceOperationDAO() { - return null; - } - - @Override - public MobileFeatureDAO getMobileFeatureDao() { - return null; - } - - @Override - public MobileFeaturePropertyDAO getFeaturePropertyDAO() { + public MobileFeatureDAO getMobileFeatureDAO() { return null; } @@ -145,4 +124,5 @@ public class WindowsDAOFactory extends MobileDeviceManagementDAOFactory log.warn("Error occurred while roll-backing the transaction", e); } } + } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java index d9902cb7b..478942b03 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/dao/impl/WindowsDeviceDAOImpl.java @@ -251,4 +251,5 @@ public class WindowsDeviceDAOImpl implements MobileDeviceDAO { MobileDeviceManagementDAOUtil.cleanupResources(stmt, rs); } } + } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/internal/MobileDeviceManagementServiceComponent.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/internal/MobileDeviceManagementServiceComponent.java index e8325e084..8f71321f4 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/internal/MobileDeviceManagementServiceComponent.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/internal/MobileDeviceManagementServiceComponent.java @@ -28,7 +28,7 @@ import org.wso2.carbon.device.mgt.mobile.common.MobileDeviceMgtPluginException; import org.wso2.carbon.device.mgt.mobile.config.MobileDeviceConfigurationManager; import org.wso2.carbon.device.mgt.mobile.config.MobileDeviceManagementConfig; import org.wso2.carbon.device.mgt.mobile.config.datasource.MobileDataSourceConfig; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOFactory; +import org.wso2.carbon.device.mgt.mobile.dao.AbstractMobileDeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.mobile.dao.util.MobileDeviceManagementDAOUtil; import org.wso2.carbon.device.mgt.mobile.impl.android.AndroidDeviceManagementService; import org.wso2.carbon.device.mgt.mobile.impl.android.AndroidPolicyMonitoringService; @@ -79,7 +79,7 @@ public class MobileDeviceManagementServiceComponent { Map dsConfigMap = config.getMobileDeviceMgtRepository().getMobileDataSourceConfigMap(); - MobileDeviceManagementDAOFactory.init(dsConfigMap); + AbstractMobileDeviceManagementDAOFactory.init(dsConfigMap); String setupOption = System.getProperty("setup"); if (setupOption != null) { @@ -91,7 +91,7 @@ public class MobileDeviceManagementServiceComponent { try { for (String pluginType : dsConfigMap.keySet()) { MobileDeviceManagementDAOUtil - .setupMobileDeviceManagementSchema(MobileDeviceManagementDAOFactory.getDataSourceMap + .setupMobileDeviceManagementSchema(AbstractMobileDeviceManagementDAOFactory.getDataSourceMap ().get(pluginType), pluginType); } } catch (MobileDeviceMgtPluginException e) { diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileDeviceOperationMappingDAOTestSuite.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileDeviceOperationMappingDAOTestSuite.java deleted file mode 100644 index 2c419bc5c..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileDeviceOperationMappingDAOTestSuite.java +++ /dev/null @@ -1,441 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.impl.dao; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.tomcat.jdbc.pool.DataSource; -import org.apache.tomcat.jdbc.pool.PoolProperties; -import org.testng.Assert; -import org.testng.annotations.BeforeClass; -import org.testng.annotations.Parameters; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.impl.MobileDeviceOperationMappingDAOImpl; -import org.wso2.carbon.device.mgt.mobile.dao.impl.MobileOperationDAOImpl; -import org.wso2.carbon.device.mgt.mobile.dto.MobileDevice; -import org.wso2.carbon.device.mgt.mobile.dto.MobileDeviceOperationMapping; -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperation; -import org.wso2.carbon.device.mgt.mobile.impl.common.DBTypes; -import org.wso2.carbon.device.mgt.mobile.impl.common.TestDBConfiguration; -import org.wso2.carbon.device.mgt.mobile.impl.dao.util.MobileDatabaseUtils; - -import java.sql.Connection; -import java.sql.DriverManager; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.List; - -/** - * - * Class for holding unit-tests related to MobileDeviceOperationMappingDAO class. - * - */ -public class MobileDeviceOperationMappingDAOTestSuite { - - private static final Log log = - LogFactory.getLog(MobileDeviceOperationMappingDAOTestSuite.class); - public static final String TEST_MOBILE_DEVICE_ID = "ABCD"; - public static final String TEST_MOBILE_IMEI = "2412421412"; - public static final String TEST_MOBILE_IMSI = "325235235"; - public static final String TEST_MOBILE_MODEL = "S5"; - public static final String TEST_MOBILE_VENDOR = "samsung"; - public static final String TEST_MOBILE_REG_ID = "2414"; - public static final String TEST_MOBILE_OS_VERSION = "5.0.0"; - public static final String TEST_MOBILE_LATITUDE = "6.93N"; - public static final String TEST_MOBILE_LONGITUDE = "80.60E"; - public static final String TEST_MOBILE_TOKEN = "2412K2HKHK24K12H4"; - public static final String TEST_MOBILE_SERIAL = "24124IIH4I2K4"; - public static final String TEST_MOBILE_CHALLENGE = "ASFASFSAFASFATWTWQTTQWTWQTQWTQWTWQT"; - public static final String TEST_MOBILE_UNLOCK_TOKEN = "FAFWQUWFUQWYWQYRWQURYUURUWQUWRUWRUWE"; - public static final String TEST_MBL_OPR_FEATURE_CODE1 = "LOCK"; - public static final String TEST_MBL_OPR_FEATURE_CODE2 = "WIPE"; - public static final long TEST_MBL_OPR_CREATED_DATE = new java.util.Date().getTime(); - - private TestDBConfiguration testDBConfiguration; - private MobileOperationDAOImpl mblOperationDAO; - private MobileDeviceOperationMappingDAOImpl mblDeviceOperationMappingDAO; - private int mblOperationId1; - private int mblOperationId2; - - @BeforeClass - @Parameters("dbType") - public void setUpDB(String dbTypeStr) throws Exception { - - DBTypes dbType = DBTypes.valueOf(dbTypeStr); - testDBConfiguration = MobileDatabaseUtils.getTestDBConfiguration(dbType); - - switch (dbType) { - case H2: - MobileDatabaseUtils.createH2DB(testDBConfiguration); - DataSource testDataSource = new org.apache.tomcat.jdbc.pool.DataSource(); - PoolProperties properties = new PoolProperties(); - properties.setUrl(testDBConfiguration.getConnectionURL()); - properties.setDriverClassName(testDBConfiguration.getDriverClassName()); - properties.setUsername(testDBConfiguration.getUsername()); - properties.setPassword(testDBConfiguration.getPassword()); - testDataSource.setPoolProperties(properties); - mblOperationDAO = new MobileOperationDAOImpl(testDataSource); - mblDeviceOperationMappingDAO = - new MobileDeviceOperationMappingDAOImpl(testDataSource); - default: - } - } - - //@Test - public void addMobileDeviceOperationMappingTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - - List mblOperations = - new ArrayList(); - MobileDeviceOperationMapping mblDvOperationMapping = - new MobileDeviceOperationMapping(); - //Add a new Device to the database - MobileDevice mobileDevice = new MobileDevice(); - mobileDevice.setMobileDeviceId(TEST_MOBILE_DEVICE_ID); - mobileDevice.setImei(TEST_MOBILE_IMEI); - mobileDevice.setImsi(TEST_MOBILE_IMSI); - mobileDevice.setModel(TEST_MOBILE_MODEL); - mobileDevice.setVendor(TEST_MOBILE_VENDOR); - mobileDevice.setOsVersion(TEST_MOBILE_OS_VERSION); - mobileDevice.setLatitude(TEST_MOBILE_LATITUDE); - mobileDevice.setLongitude(TEST_MOBILE_LONGITUDE); - mobileDevice.setSerial(TEST_MOBILE_SERIAL); - - //Add an Operation to the db - MobileOperation mblOperation = new MobileOperation(); - mblOperation.setFeatureCode(TEST_MBL_OPR_FEATURE_CODE1); - mblOperation.setCreatedDate(TEST_MBL_OPR_CREATED_DATE); - mblOperationId1 = mblOperationDAO.addMobileOperation(mblOperation); - - //Add a new Operation 2 to the db - mblOperation.setFeatureCode(TEST_MBL_OPR_FEATURE_CODE2); - mblOperation.setCreatedDate(TEST_MBL_OPR_CREATED_DATE); - mblOperationId2 = mblOperationDAO.addMobileOperation(mblOperation); - - //Add a device-operation mapping 1 to the table - mblDvOperationMapping.setDeviceId(TEST_MOBILE_DEVICE_ID); - mblDvOperationMapping.setOperationId(mblOperationId1); - mblDvOperationMapping.setStatus(MobileDeviceOperationMapping.Status.NEW); - boolean status1 = - mblDeviceOperationMappingDAO.addMobileDeviceOperationMapping(mblDvOperationMapping); - - //Add a device-operation mapping 2 to the table - mblDvOperationMapping.setDeviceId(TEST_MOBILE_DEVICE_ID); - mblDvOperationMapping.setOperationId(mblOperationId2); - mblDvOperationMapping.setStatus(MobileDeviceOperationMapping.Status.NEW); - boolean status2 = - mblDeviceOperationMappingDAO.addMobileDeviceOperationMapping(mblDvOperationMapping); - - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, SENT_DATE, RECEIVED_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setString(1, TEST_MOBILE_DEVICE_ID); - ResultSet resultSet = preparedStatement.executeQuery(); - while (resultSet.next()) { - mblDvOperationMapping = new MobileDeviceOperationMapping(); - mblDvOperationMapping.setDeviceId(resultSet.getString(1)); - mblDvOperationMapping.setOperationId(resultSet.getInt(2)); - mblDvOperationMapping.setSentDate(resultSet.getLong(3)); - mblDvOperationMapping.setReceivedDate(resultSet.getLong(4)); - mblDvOperationMapping.setStatus(resultSet.getString(5)); - mblOperations.add(mblDvOperationMapping); - } - - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation Mappings data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status1, "MobileOperationMapping1 has added "); - Assert.assertTrue(status2, "MobileOperationMapping2 has added "); - Assert.assertTrue(mblOperations.size() == 2, "MobileOperationMappings have retrieved "); - - for (MobileDeviceOperationMapping mapping : mblOperations) { - Assert.assertEquals(TEST_MOBILE_DEVICE_ID, mapping.getDeviceId(), - "MobileOperationMapping device id has persisted "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.NEW, mapping.getStatus(), - "MobileOperationMapping status has persisted "); - Assert.assertTrue(mapping.getOperationId() > 0, - "MobileOperationMapping operation-id has persisted "); - Assert.assertTrue(mapping.getSentDate() == 0, - "MobileOperationMapping sent-date has fetched "); - Assert.assertTrue(mapping.getReceivedDate() == 0, - "MobileOperationMapping received-date has fetched "); - } - } - - //@Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest" }) - public void getMobileDeviceOperationMappingTest() throws MobileDeviceManagementDAOException { - MobileDeviceOperationMapping mblOperationMapping = - mblDeviceOperationMappingDAO.getMobileDeviceOperationMapping( - TEST_MOBILE_DEVICE_ID, mblOperationId1); - Assert.assertNotNull(mblOperationMapping, "MobileOperationMapping 1 has fetched "); - Assert.assertEquals(TEST_MOBILE_DEVICE_ID, mblOperationMapping.getDeviceId(), - "MobileOperationMapping device id has fetched "); - Assert.assertEquals(mblOperationId1, mblOperationMapping.getOperationId(), - "MobileOperationMapping device id has fetched "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.NEW, - mblOperationMapping.getStatus(), - "MobileOperationMapping status has fetched "); - Assert.assertTrue(mblOperationMapping.getSentDate() == 0, - "MobileOperationMapping sent-date has fetched "); - Assert.assertTrue(mblOperationMapping.getReceivedDate() == 0, - "MobileOperationMapping received-date has fetched "); - } - - //@Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest" }) - public void getAllMobileDeviceOperationMappingsOfDeviceTest() - throws MobileDeviceManagementDAOException { - List mblOperationMappings = - mblDeviceOperationMappingDAO.getAllMobileDeviceOperationMappingsOfDevice( - TEST_MOBILE_DEVICE_ID); - Assert.assertNotNull(mblOperationMappings, "MobileOperationMappings have fetched "); - Assert.assertTrue(mblOperationMappings.size() == 2, - "All MobileOperationMappings have fetched "); - for (MobileDeviceOperationMapping mblOperationMapping : mblOperationMappings) { - Assert.assertEquals(TEST_MOBILE_DEVICE_ID, mblOperationMapping.getDeviceId(), - "MobileOperationMapping device id has fetched "); - Assert.assertTrue(mblOperationMapping.getOperationId() > 0, - "MobileOperationMapping operation-id has fetched "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.NEW, - mblOperationMapping.getStatus(), - "MobileOperationMapping status has fetched "); - Assert.assertTrue(mblOperationMapping.getSentDate() == 0, - "MobileOperationMapping sent-date has fetched "); - Assert.assertTrue(mblOperationMapping.getReceivedDate() == 0, - "MobileOperationMapping received-date has fetched "); - } - } - - /**@Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest", - "getAllMobileDeviceOperationMappingsOfDeviceTest" })*/ - public void updateMobileDeviceOperationMappingToInProgressTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - MobileDeviceOperationMapping mblOperationMapping = null; - //Update device-operation to In-Progress state - boolean status = - mblDeviceOperationMappingDAO.updateMobileDeviceOperationMappingToInProgress( - TEST_MOBILE_DEVICE_ID, mblOperationId1); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, SENT_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setString(1, TEST_MOBILE_DEVICE_ID); - preparedStatement.setInt(2, mblOperationId1); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - mblOperationMapping = new MobileDeviceOperationMapping(); - mblOperationMapping.setDeviceId(resultSet.getString(1)); - mblOperationMapping.setOperationId(resultSet.getInt(2)); - mblOperationMapping.setSentDate(resultSet.getLong(3)); - mblOperationMapping.setStatus(resultSet.getString(4)); - } - - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation Mappings data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileOperationMapping 1 has updated "); - Assert.assertNotNull(mblOperationMapping, "MobileOperationMappings have fetched "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.INPROGRESS, - mblOperationMapping.getStatus(), - "MobileOperationMapping status has updated "); - Assert.assertTrue(mblOperationMapping.getSentDate() > 0, - "MobileOperationMapping sent-date has updated "); - } - - /** - @Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest", - "getAllMobileDeviceOperationMappingsOfDeviceTest" })*/ - public void updateMobileDeviceOperationMappingToCompletedTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - MobileDeviceOperationMapping mblOperationMapping = null; - //Update device-operation to Completed state - boolean status = - mblDeviceOperationMappingDAO.updateMobileDeviceOperationMappingToCompleted( - TEST_MOBILE_DEVICE_ID, mblOperationId1); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, RECEIVED_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setString(1, TEST_MOBILE_DEVICE_ID); - preparedStatement.setInt(2, mblOperationId1); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - mblOperationMapping = new MobileDeviceOperationMapping(); - mblOperationMapping.setDeviceId(resultSet.getString(1)); - mblOperationMapping.setOperationId(resultSet.getInt(2)); - mblOperationMapping.setReceivedDate(resultSet.getLong(3)); - mblOperationMapping.setStatus(resultSet.getString(4)); - } - - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation Mappings data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileOperationMapping 1 has updated "); - Assert.assertNotNull(mblOperationMapping, "MobileOperationMappings have fetched "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.COMPLETED, - mblOperationMapping.getStatus(), - "MobileOperationMapping status has updated "); - Assert.assertTrue(mblOperationMapping.getReceivedDate() > 0, - "MobileOperationMapping received-date has updated "); - } - - /** - @Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest", - "getAllMobileDeviceOperationMappingsOfDeviceTest", - "updateMobileDeviceOperationMappingToInProgressTest", - "updateMobileDeviceOperationMappingToCompletedTest" })*/ - public void updateMobileDeviceOperationMappingTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - MobileDeviceOperationMapping mblOperationMapping = new MobileDeviceOperationMapping(); - long currentTime = new java.util.Date().getTime(); - //Update device-operation mapping 1 - mblOperationMapping.setDeviceId(TEST_MOBILE_DEVICE_ID); - mblOperationMapping.setOperationId(mblOperationId1); - mblOperationMapping.setStatus(MobileDeviceOperationMapping.Status.INPROGRESS); - mblOperationMapping.setSentDate(currentTime); - mblOperationMapping.setReceivedDate(currentTime); - boolean status = - mblDeviceOperationMappingDAO.updateMobileDeviceOperationMapping( - mblOperationMapping); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, RECEIVED_DATE, SENT_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setString(1, TEST_MOBILE_DEVICE_ID); - preparedStatement.setInt(2, mblOperationId1); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - mblOperationMapping = new MobileDeviceOperationMapping(); - mblOperationMapping.setDeviceId(resultSet.getString(1)); - mblOperationMapping.setOperationId(resultSet.getInt(2)); - mblOperationMapping.setReceivedDate(resultSet.getLong(3)); - mblOperationMapping.setSentDate(resultSet.getLong(4)); - mblOperationMapping.setStatus(resultSet.getString(5)); - } - - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation Mappings data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileOperationMapping 1 has updated "); - Assert.assertNotNull(mblOperationMapping, "MobileOperationMappings have fetched "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.INPROGRESS, - mblOperationMapping.getStatus(), - "MobileOperationMapping status has updated "); - Assert.assertTrue(mblOperationMapping.getReceivedDate() == currentTime, - "MobileOperationMapping received-date has updated "); - Assert.assertTrue(mblOperationMapping.getSentDate() == currentTime, - "MobileOperationMapping sent-date has updated "); - } - - /** - @Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest", - "getAllMobileDeviceOperationMappingsOfDeviceTest", - "updateMobileDeviceOperationMappingToInProgressTest" })*/ - public void getAllPendingOperationMappingsOfMobileDeviceTest() - throws MobileDeviceManagementDAOException { - List mblOperationMappings = - mblDeviceOperationMappingDAO.getAllPendingOperationMappingsOfMobileDevice( - TEST_MOBILE_DEVICE_ID); - Assert.assertNotNull(mblOperationMappings, "Pending MobileOperationMappings have fetched "); - Assert.assertTrue(mblOperationMappings.size() == 1, - "All MobileOperationMappings have fetched "); - for (MobileDeviceOperationMapping mblOperationMapping : mblOperationMappings) { - Assert.assertEquals(TEST_MOBILE_DEVICE_ID, mblOperationMapping.getDeviceId(), - "MobileOperationMapping device id has fetched "); - Assert.assertTrue(mblOperationMapping.getOperationId() == mblOperationId2, - "MobileOperationMapping operation-id has fetched "); - Assert.assertEquals(MobileDeviceOperationMapping.Status.NEW, - mblOperationMapping.getStatus(), - "MobileOperationMapping status has fetched "); - Assert.assertTrue(mblOperationMapping.getSentDate() == 0, - "MobileOperationMapping sent-date has fetched "); - Assert.assertTrue(mblOperationMapping.getReceivedDate() == 0, - "MobileOperationMapping received-date has fetched "); - } - } - - /** - @Test(dependsOnMethods = { "addMobileDeviceOperationMappingTest", - "getAllMobileDeviceOperationMappingsOfDeviceTest", - "updateMobileDeviceOperationMappingToInProgressTest", - "updateMobileDeviceOperationMappingToCompletedTest", - "updateMobileDeviceOperationMappingTest" })*/ - public void deleteMobileDeviceOperationMappingTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - boolean status = - mblDeviceOperationMappingDAO.deleteMobileDeviceOperationMapping( - TEST_MOBILE_DEVICE_ID, mblOperationId1); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT DEVICE_ID, OPERATION_ID, RECEIVED_DATE, SENT_DATE, STATUS FROM " + - "AD_DEVICE_OPERATION_MAPPING WHERE DEVICE_ID = ? AND OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setString(1, TEST_MOBILE_DEVICE_ID); - preparedStatement.setInt(2, mblOperationId1); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - status = false; - } - } catch (SQLException e) { - String msg = "Error in retrieving MobileFeatureProperty data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileDeviceOperationMapping 1 has deleted "); - } -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileFeatureDAOTestSuite.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileFeatureDAOTestSuite.java index 56d1bd613..02f66bf04 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileFeatureDAOTestSuite.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileFeatureDAOTestSuite.java @@ -92,7 +92,7 @@ public class MobileFeatureDAOTestSuite { try { conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); String query = - "SELECT FEATURE_ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE WHERE CODE = ?"; + "SELECT ID, CODE, NAME, DESCRIPTION, DEVICE_TYPE FROM AD_FEATURE WHERE CODE = ?"; preparedStatement = conn.prepareStatement(query); preparedStatement.setString(1, MBL_FEATURE_CODE); ResultSet resultSet = preparedStatement.executeQuery(); @@ -175,7 +175,7 @@ public class MobileFeatureDAOTestSuite { try { conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); String query = - "SELECT FEATURE_ID, CODE, NAME, DESCRIPTION FROM AD_FEATURE WHERE CODE = ?"; + "SELECT ID, CODE, NAME, DESCRIPTION FROM AD_FEATURE WHERE CODE = ?"; stmt = conn.prepareStatement(query); stmt.setString(1, MBL_FEATURE_UPDATED_CODE); ResultSet resultSet = stmt.executeQuery(); @@ -208,7 +208,7 @@ public class MobileFeatureDAOTestSuite { boolean status = mblFeatureDAO.deleteFeatureById(mblFeatureId); try { conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String query = "SELECT FEATURE_ID, CODE FROM AD_FEATURE WHERE FEATURE_ID = ?"; + String query = "SELECT ID, CODE FROM AD_FEATURE WHERE ID = ?"; stmt = conn.prepareStatement(query); stmt.setInt(1, mblFeatureId); ResultSet resultSet = stmt.executeQuery(); @@ -241,7 +241,7 @@ public class MobileFeatureDAOTestSuite { boolean status = mblFeatureDAO.deleteFeatureByCode(MBL_FEATURE_CODE); try { conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String query = "SELECT FEATURE_ID, CODE FROM AD_FEATURE WHERE CODE = ?"; + String query = "SELECT ID, CODE FROM AD_FEATURE WHERE CODE = ?"; preparedStatement = conn.prepareStatement(query); preparedStatement.setString(1, MBL_FEATURE_CODE); ResultSet resultSet = preparedStatement.executeQuery(); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationDAOTestSuite.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationDAOTestSuite.java deleted file mode 100644 index 3b05d09b3..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationDAOTestSuite.java +++ /dev/null @@ -1,186 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.impl.dao; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.tomcat.jdbc.pool.DataSource; -import org.apache.tomcat.jdbc.pool.PoolProperties; -import org.testng.Assert; -import org.testng.annotations.BeforeClass; -import org.testng.annotations.Parameters; -import org.testng.annotations.Test; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.impl.MobileOperationDAOImpl; -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperation; -import org.wso2.carbon.device.mgt.mobile.impl.common.DBTypes; -import org.wso2.carbon.device.mgt.mobile.impl.common.TestDBConfiguration; -import org.wso2.carbon.device.mgt.mobile.impl.dao.util.MobileDatabaseUtils; - -import java.sql.*; - -/** - * Class for holding unit-tests related to MobileOperationDAO class. - */ -public class MobileOperationDAOTestSuite { - - private static final Log log = LogFactory.getLog(MobileOperationDAOTestSuite.class); - public static final String TEST_MBL_OPR_FEATURE_CODE = "LOCK"; - public static final String TEST_MBL_OPR_UPDATED_FEATURE_CODE = "MUTE"; - public static final long TEST_MBL_OPR_CREATED_DATE = new java.util.Date().getTime(); - private TestDBConfiguration testDBConfiguration; - private MobileOperationDAOImpl mblOperationDAO; - private int mblOperationId; - - @BeforeClass - @Parameters("dbType") - public void setUpDB(String dbTypeStr) throws Exception { - - DBTypes dbType = DBTypes.valueOf(dbTypeStr); - testDBConfiguration = MobileDatabaseUtils.getTestDBConfiguration(dbType); - - switch (dbType) { - case H2: - MobileDatabaseUtils.createH2DB(testDBConfiguration); - DataSource testDataSource = new org.apache.tomcat.jdbc.pool.DataSource(); - PoolProperties properties = new PoolProperties(); - properties.setUrl(testDBConfiguration.getConnectionURL()); - properties.setDriverClassName(testDBConfiguration.getDriverClassName()); - properties.setUsername(testDBConfiguration.getUsername()); - properties.setPassword(testDBConfiguration.getPassword()); - testDataSource.setPoolProperties(properties); - mblOperationDAO = new MobileOperationDAOImpl(testDataSource); - default: - } - } - - @Test - public void addMobileOperationTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - MobileOperation mblOperation = new MobileOperation(); - MobileOperation testMblOperation = new MobileOperation(); - mblOperation.setFeatureCode(TEST_MBL_OPR_FEATURE_CODE); - mblOperation.setCreatedDate(TEST_MBL_OPR_CREATED_DATE); - mblOperationId = mblOperationDAO.addMobileOperation(mblOperation); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT OPERATION_ID, FEATURE_CODE, CREATED_DATE FROM AD_OPERATION WHERE OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setInt(1, mblOperationId); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - testMblOperation.setOperationId(resultSet.getInt(1)); - testMblOperation.setFeatureCode(resultSet.getString(2)); - testMblOperation.setCreatedDate(resultSet.getLong(3)); - } - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(mblOperationId > 0, "MobileOperation has added "); - Assert.assertEquals(TEST_MBL_OPR_FEATURE_CODE, testMblOperation.getFeatureCode(), - "MobileOperation feature code has persisted "); - Assert.assertEquals(TEST_MBL_OPR_CREATED_DATE, testMblOperation.getCreatedDate(), - "MobileOperation created-date has persisted "); - } - - @Test(dependsOnMethods = { "addMobileOperationTest" }) - public void getMobileOperationTest() - throws MobileDeviceManagementDAOException { - - MobileOperation mobileOperation = mblOperationDAO.getMobileOperation(mblOperationId); - Assert.assertEquals(TEST_MBL_OPR_CREATED_DATE, mobileOperation.getCreatedDate(), - "MobileOperation created-date has retrieved "); - Assert.assertEquals(TEST_MBL_OPR_FEATURE_CODE, mobileOperation.getFeatureCode(), - "MobileOperation feature-code has retrieved "); - } - - @Test(dependsOnMethods = { "addMobileOperationTest", "getMobileOperationTest" }) - public void updateMobileOperationTest() - throws MobileDeviceManagementDAOException { - - Connection conn = null; - PreparedStatement preparedStatement = null; - long updatedDate = new java.util.Date().getTime(); - MobileOperation mblOperation = new MobileOperation(); - MobileOperation testMblOperation = new MobileOperation(); - mblOperation.setFeatureCode(TEST_MBL_OPR_UPDATED_FEATURE_CODE); - mblOperation.setCreatedDate(updatedDate); - mblOperation.setOperationId(mblOperationId); - boolean status = mblOperationDAO.updateMobileOperation(mblOperation); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT OPERATION_ID, FEATURE_CODE, CREATED_DATE FROM AD_OPERATION WHERE OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setInt(1, mblOperationId); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - testMblOperation.setOperationId(resultSet.getInt(1)); - testMblOperation.setFeatureCode(resultSet.getString(2)); - testMblOperation.setCreatedDate(resultSet.getLong(3)); - } - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileOperation has updated "); - Assert.assertEquals(TEST_MBL_OPR_UPDATED_FEATURE_CODE, testMblOperation.getFeatureCode(), - "MobileOperation feature code has updated "); - Assert.assertEquals(updatedDate, testMblOperation.getCreatedDate(), - "MobileOperation created-date has updated "); - } - - @Test(dependsOnMethods = { "addMobileOperationTest", "getMobileOperationTest", - "updateMobileOperationTest" }) - public void deleteMobileDeviceTest() - throws MobileDeviceManagementDAOException { - - Connection conn = null; - PreparedStatement preparedStatement = null; - boolean deleted = mblOperationDAO.deleteMobileOperation(mblOperationId); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT OPERATION_ID, FEATURE_CODE, CREATED_DATE FROM AD_OPERATION WHERE OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setInt(1, mblOperationId); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - deleted = false; - } - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(deleted, "MobileOperation has deleted "); - } -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationPropertyDAOTestSuite.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationPropertyDAOTestSuite.java deleted file mode 100644 index 1342d6104..000000000 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/java/org/wso2/carbon/device/mgt/mobile/impl/dao/MobileOperationPropertyDAOTestSuite.java +++ /dev/null @@ -1,237 +0,0 @@ -/* - * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. - * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * you may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.wso2.carbon.device.mgt.mobile.impl.dao; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.tomcat.jdbc.pool.DataSource; -import org.apache.tomcat.jdbc.pool.PoolProperties; -import org.testng.Assert; -import org.testng.annotations.BeforeClass; -import org.testng.annotations.Parameters; -import org.testng.annotations.Test; -import org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException; -import org.wso2.carbon.device.mgt.mobile.dao.impl.MobileOperationDAOImpl; -import org.wso2.carbon.device.mgt.mobile.dao.impl.MobileOperationPropertyDAOImpl; -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperation; -import org.wso2.carbon.device.mgt.mobile.dto.MobileOperationProperty; -import org.wso2.carbon.device.mgt.mobile.impl.common.DBTypes; -import org.wso2.carbon.device.mgt.mobile.impl.common.TestDBConfiguration; -import org.wso2.carbon.device.mgt.mobile.impl.dao.util.MobileDatabaseUtils; - -import java.sql.*; -import java.util.ArrayList; -import java.util.List; - -/** - * - * Class for holding unit-tests related to MobileOperationPropertyDAO class. - * - */ -public class MobileOperationPropertyDAOTestSuite { - - private static final Log log = LogFactory.getLog(MobileOperationPropertyDAOTestSuite.class); - public static final String TEST_MBL_OPR_FEATURE_CODE = "LOCK"; - public static final long TEST_MBL_OPR_CREATED_DATE = new java.util.Date().getTime(); - public static final String TEST_MBL_OPR_PROPERTY_SSID = "SSID"; - public static final String TEST_MBL_OPR_PROPERTY_SSID_VALUE = "wso2"; - public static final String TEST_MBL_OPR_PROPERTY_PWD = "PASSWORD"; - public static final String TEST_MBL_OPR_PROPERTY_PWD_VALUE = "wso2"; - public static final String TEST_MBL_OPR_PROPERTY_PWD_UPDATED_VALUE = "wso2mdm"; - private int mblOperationId; - private TestDBConfiguration testDBConfiguration; - private MobileOperationPropertyDAOImpl mobileOperationPropertyDAO; - private MobileOperationDAOImpl mblOperationDAO; - - @BeforeClass - @Parameters("dbType") - public void setUpDB(String dbTypeStr) throws Exception { - - DBTypes dbType = DBTypes.valueOf(dbTypeStr); - testDBConfiguration = MobileDatabaseUtils.getTestDBConfiguration(dbType); - - switch (dbType) { - case H2: - MobileDatabaseUtils.createH2DB(testDBConfiguration); - DataSource testDataSource = new org.apache.tomcat.jdbc.pool.DataSource(); - PoolProperties properties = new PoolProperties(); - properties.setUrl(testDBConfiguration.getConnectionURL()); - properties.setDriverClassName(testDBConfiguration.getDriverClassName()); - properties.setUsername(testDBConfiguration.getUsername()); - properties.setPassword(testDBConfiguration.getPassword()); - testDataSource.setPoolProperties(properties); - mobileOperationPropertyDAO = new MobileOperationPropertyDAOImpl(testDataSource); - mblOperationDAO = new MobileOperationDAOImpl(testDataSource); - default: - } - } - - @Test - public void addMobileOperationPropertyTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - MobileOperation mblOperation = new MobileOperation(); - MobileOperationProperty operationProperty = new MobileOperationProperty(); - List properties = new ArrayList(); - //Add a new Operation to the database - MobileOperation testMblOperation = new MobileOperation(); - mblOperation.setFeatureCode(TEST_MBL_OPR_FEATURE_CODE); - mblOperation.setCreatedDate(TEST_MBL_OPR_CREATED_DATE); - mblOperationId = mblOperationDAO.addMobileOperation(mblOperation); - //Add property1 - operationProperty.setOperationId(mblOperationId); - operationProperty.setProperty(TEST_MBL_OPR_PROPERTY_SSID); - operationProperty.setValue(TEST_MBL_OPR_PROPERTY_SSID_VALUE); - boolean status1 = mobileOperationPropertyDAO.addMobileOperationProperty(operationProperty); - - //add property2 - operationProperty = new MobileOperationProperty(); - operationProperty.setOperationId(mblOperationId); - operationProperty.setProperty(TEST_MBL_OPR_PROPERTY_PWD); - operationProperty.setValue(TEST_MBL_OPR_PROPERTY_PWD_VALUE); - boolean status2 = mobileOperationPropertyDAO.addMobileOperationProperty(operationProperty); - - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT OPERATION_ID, PROPERTY, VALUE FROM AD_OPERATION_PROPERTY WHERE OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setInt(1, mblOperationId); - ResultSet resultSet = preparedStatement.executeQuery(); - while (resultSet.next()) { - operationProperty = new MobileOperationProperty(); - operationProperty.setOperationId(resultSet.getInt(1)); - operationProperty.setProperty(resultSet.getString(2)); - operationProperty.setValue(resultSet.getString(3)); - properties.add(operationProperty); - } - - } catch (SQLException e) { - String msg = "Error in retrieving Mobile Operation Property data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status1, "MobileOperationProperty1 has added "); - Assert.assertTrue(status2, "MobileOperationProperty2 has added "); - Assert.assertTrue(properties.size() == 2, "MobileOperationProperties have retrieved "); - - for (MobileOperationProperty mobileOperationProperty : properties) { - Assert.assertNotNull(mobileOperationProperty.getProperty(), - "MobileOperationProperty property has persisted "); - Assert.assertNotNull(mobileOperationProperty.getValue(), - "MobileOperationProperty value has persisted "); - } - } - - @Test(dependsOnMethods = { "addMobileOperationPropertyTest" }) - public void getMobileOperationPropertyTest() - throws MobileDeviceManagementDAOException { - MobileOperationProperty mobileOperationProperty = mobileOperationPropertyDAO - .getMobileOperationProperty(mblOperationId, TEST_MBL_OPR_PROPERTY_PWD); - Assert.assertEquals(mblOperationId, mobileOperationProperty.getOperationId(), - "MobileOperationProperty operation-id has retrieved "); - Assert.assertEquals(TEST_MBL_OPR_PROPERTY_PWD, mobileOperationProperty.getProperty(), - "MobileOperationProperty property has retrieved "); - Assert.assertEquals(TEST_MBL_OPR_PROPERTY_PWD_VALUE, mobileOperationProperty.getValue(), - "MobileOperationProperty property-value has retrieved "); - } - - @Test(dependsOnMethods = { "addMobileOperationPropertyTest" }) - public void getAllMobileOperationPropertiesOfOperationTest() - throws MobileDeviceManagementDAOException { - List mobileOperationProperties = mobileOperationPropertyDAO - .getAllMobileOperationPropertiesOfOperation(mblOperationId); - Assert.assertTrue(mobileOperationProperties.size() == 2, - "MobileOperationProperties of operation has retrieved"); - } - - @Test(dependsOnMethods = { "addMobileOperationPropertyTest", "getMobileOperationPropertyTest", - "getAllMobileOperationPropertiesOfOperationTest" }) - public void updateMobileOperationPropertyTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - MobileOperationProperty mblOperationProperty = new MobileOperationProperty(); - MobileOperationProperty testMblOperationProperty = new MobileOperationProperty(); - mblOperationProperty.setOperationId(mblOperationId); - mblOperationProperty.setProperty(TEST_MBL_OPR_PROPERTY_PWD); - mblOperationProperty.setValue(TEST_MBL_OPR_PROPERTY_PWD_UPDATED_VALUE); - - boolean status = - mobileOperationPropertyDAO.updateMobileOperationProperty(mblOperationProperty); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT OPERATION_ID, PROPERTY, VALUE FROM AD_OPERATION_PROPERTY WHERE" + - " OPERATION_ID = ? AND PROPERTY = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setInt(1, mblOperationId); - preparedStatement.setString(2, TEST_MBL_OPR_PROPERTY_PWD); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - testMblOperationProperty.setOperationId(resultSet.getInt(1)); - testMblOperationProperty.setProperty(resultSet.getString(2)); - testMblOperationProperty.setValue(resultSet.getString(3)); - } - } catch (SQLException e) { - String msg = "Error in retrieving MobileOperationProperty data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileOperationProperty has updated "); - Assert.assertEquals(TEST_MBL_OPR_PROPERTY_PWD_UPDATED_VALUE, - testMblOperationProperty.getValue(), - "MobileOperationProperty value has updated "); - } - - @Test(dependsOnMethods = { "addMobileOperationPropertyTest", "getMobileOperationPropertyTest", - "getAllMobileOperationPropertiesOfOperationTest", - "updateMobileOperationPropertyTest" }) - public void deleteMobileOperationPropertiesOfOperationTest() - throws MobileDeviceManagementDAOException { - Connection conn = null; - PreparedStatement preparedStatement = null; - boolean status = - mobileOperationPropertyDAO.deleteMobileOperationProperties(mblOperationId); - try { - conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL()); - String selectDBQuery = - "SELECT OPERATION_ID, PROPERTY, VALUE FROM AD_OPERATION_PROPERTY WHERE" + - " OPERATION_ID = ?"; - preparedStatement = conn.prepareStatement(selectDBQuery); - preparedStatement.setInt(1, mblOperationId); - ResultSet resultSet = preparedStatement.executeQuery(); - if (resultSet.next()) { - status = false; - } - } catch (SQLException e) { - String msg = "Error in retrieving MobileOperationProperty data "; - log.error(msg, e); - throw new MobileDeviceManagementDAOException(msg, e); - } finally { - MobileDatabaseUtils.cleanupResources(conn, preparedStatement, null); - } - Assert.assertTrue(status, "MobileOperationProperty has deleted "); - } -} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql index 58210317e..78b5b7b8b 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/sql/h2.sql @@ -23,12 +23,12 @@ CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( -- Table `AD_FEATURE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AD_FEATURE` ( - `FEATURE_ID` INT NOT NULL AUTO_INCREMENT , + `ID` INT NOT NULL AUTO_INCREMENT , `CODE` VARCHAR(45) NOT NULL, `NAME` VARCHAR(100) NULL , `DESCRIPTION` VARCHAR(200) NULL , `DEVICE_TYPE` VARCHAR(50) NULL , - PRIMARY KEY (`FEATURE_ID`) ); + PRIMARY KEY (`ID`) ); -- ----------------------------------------------------- -- Table `AD_OPERATION` @@ -39,40 +39,6 @@ CREATE TABLE IF NOT EXISTS `AD_OPERATION` ( `CREATED_DATE` BIGINT NULL , PRIMARY KEY (`OPERATION_ID`)); --- ----------------------------------------------------- --- Table `AD_DEVICE_OPERATION_MAPPING` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `AD_DEVICE_OPERATION_MAPPING` ( - `DEVICE_ID` VARCHAR(45) NOT NULL , - `OPERATION_ID` INT NOT NULL , - `SENT_DATE` BIGINT NULL , - `RECEIVED_DATE` BIGINT NULL , - `STATUS` VARCHAR(10) NOT NULL , - PRIMARY KEY (`DEVICE_ID`, `OPERATION_ID`) , - CONSTRAINT `fk_AD_DEVICE_OPERATION_AD_DEVICE` - FOREIGN KEY (`DEVICE_ID` ) - REFERENCES `AD_DEVICE` (`DEVICE_ID` ) - ON DELETE NO ACTION - ON UPDATE NO ACTION, - CONSTRAINT `fk_AD_DEVICE_OPERATION_AD_OPERATION1` - FOREIGN KEY (`OPERATION_ID` ) - REFERENCES `AD_OPERATION` (`OPERATION_ID` ) - ON DELETE NO ACTION - ON UPDATE NO ACTION); - --- ----------------------------------------------------- --- Table `AD_OPERATION_PROPERTY` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `AD_OPERATION_PROPERTY` ( - `OPERATION_ID` INT NOT NULL , - `PROPERTY` VARCHAR(45) NOT NULL , - `VALUE` TEXT NULL , - PRIMARY KEY (`OPERATION_ID`, `PROPERTY`) , - CONSTRAINT `fk_AD_OPERATION_PROPERTY_AD_OPERATION1` - FOREIGN KEY (`OPERATION_ID` ) - REFERENCES `AD_OPERATION` (`OPERATION_ID` ) - ON DELETE NO ACTION - ON UPDATE NO ACTION); -- ----------------------------------------------------- -- Table `AD_FEATURE_PROPERTY` @@ -83,6 +49,6 @@ CREATE TABLE IF NOT EXISTS `AD_FEATURE_PROPERTY` ( PRIMARY KEY (`PROPERTY`) , CONSTRAINT `fk_AD_FEATURE_PROPERTY_AD_FEATURE1` FOREIGN KEY (`FEATURE_ID` ) - REFERENCES `AD_FEATURE` (`FEATURE_ID` ) + REFERENCES `AD_FEATURE` (`ID` ) ON DELETE NO ACTION ON UPDATE NO ACTION); diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/testng.xml b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/testng.xml index 667486519..68f54744a 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/testng.xml +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/test/resources/testng.xml @@ -29,10 +29,7 @@ - - - diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql index 1f280205c..09b3cc91c 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/h2.sql @@ -3,7 +3,7 @@ -- Table `AD_DEVICE` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( - `ANDROID_DEVICE_ID` VARCHAR(45) NOT NULL, + `DEVICE_ID` VARCHAR(45) NOT NULL, `GCM_TOKEN` VARCHAR(45) NULL DEFAULT NULL, `DEVICE_INFO` VARCHAR(8000) NULL DEFAULT NULL, `IMEI` VARCHAR(45) NULL DEFAULT NULL, @@ -16,7 +16,7 @@ CREATE TABLE IF NOT EXISTS `AD_DEVICE` ( `SERIAL` VARCHAR(45) NULL DEFAULT NULL, `MAC_ADDRESS` VARCHAR(45) NULL DEFAULT NULL, `DEVICE_NAME` VARCHAR(100) NULL DEFAULT NULL, - PRIMARY KEY (`ANDROID_DEVICE_ID`)); + PRIMARY KEY (`DEVICE_ID`)); -- ----------------------------------------------------- -- Table `AD_FEATURE` diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mssql.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mssql.sql index 23cda9006..f95ec0f91 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mssql.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/mssql.sql @@ -2,7 +2,7 @@ -- Table `AD_DEVICE` -- ----------------------------------------------------- CREATE TABLE AD_DEVICE ( - ANDROID_DEVICE_ID VARCHAR(45) NOT NULL, + DEVICE_ID VARCHAR(45) NOT NULL, GCM_TOKEN VARCHAR(45) NULL DEFAULT NULL, DEVICE_INFO VARCHAR(8000) NULL DEFAULT NULL, IMEI VARCHAR(45) NULL DEFAULT NULL, @@ -15,7 +15,7 @@ CREATE TABLE AD_DEVICE ( SERIAL VARCHAR(45) NULL DEFAULT NULL, MAC_ADDRESS VARCHAR(45) NULL DEFAULT NULL, DEVICE_NAME VARCHAR(100) NULL DEFAULT NULL, - PRIMARY KEY (ANDROID_DEVICE_ID)); + PRIMARY KEY (DEVICE_ID)); -- ----------------------------------------------------- -- Table `AD_FEATURE` diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql index af5c9a5cf..8c3f0591b 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/android/postgres.sql @@ -2,7 +2,7 @@ -- Table AD_DEVICE -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS AD_DEVICE ( - ID VARCHAR(45) NOT NULL , + DEVICE_ID VARCHAR(45) NOT NULL , DEVICE_INFO VARCHAR(500) NULL DEFAULT NULL, GCM_TOKEN VARCHAR(45) NULL DEFAULT NULL, IMEI VARCHAR(45) NULL DEFAULT NULL, @@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS AD_DEVICE ( SERIAL VARCHAR(45) NULL DEFAULT NULL, MAC_ADDRESS VARCHAR(45) NULL DEFAULT NULL, DEVICE_NAME VARCHAR(100) NULL DEFAULT NULL, - PRIMARY KEY (ID) + PRIMARY KEY (DEVICE_ID) ); -- ----------------------------------------------------- diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql index 505330b66..952b4d817 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.mobile.feature/src/main/resources/dbscripts/plugins/windows/oracle.sql @@ -41,7 +41,7 @@ CREATE TABLE WIN_FEATURE_PROPERTY ( PRIMARY KEY (PROPERTY), CONSTRAINT fk_WIN_FEATURE_PROPERTY_WIN_FEATURE1 FOREIGN KEY (FEATURE_ID) - REFERENCES WIN_FEATURE (FEATURE_ID) + REFERENCES WIN_FEATURE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION); /