mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed merge conflicts
This commit is contained in:
commit
13d9672b74
@ -24,10 +24,14 @@ public interface FeatureManager {
|
||||
|
||||
boolean addFeature(Feature feature) throws DeviceManagementException;
|
||||
|
||||
boolean addFeatures(List<Feature> features) throws DeviceManagementException;
|
||||
|
||||
Feature getFeature(String name) throws DeviceManagementException;
|
||||
|
||||
List<Feature> getFeatures() throws DeviceManagementException;
|
||||
|
||||
boolean removeFeature(String name) throws DeviceManagementException;
|
||||
|
||||
boolean addSupportedFeaturesToDB() throws DeviceManagementException;
|
||||
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
CREATE TABLE DM_DEVICE_TYPE (
|
||||
ID INT identity NOT NULL,
|
||||
ID INT IDENTITY NOT NULL,
|
||||
NAME VARCHAR(300) DEFAULT NULL,
|
||||
PRIMARY KEY (ID)
|
||||
);
|
||||
@ -404,3 +404,4 @@ CREATE TABLE DM_NOTIFICATION (
|
||||
-- TO:DO - Remove this INSERT sql statement.
|
||||
Insert into DM_DEVICE_TYPE (ID,NAME) VALUES (1, 'android');
|
||||
Insert into DM_DEVICE_TYPE (ID,NAME) VALUES (2, 'ios');
|
||||
|
||||
|
||||
@ -399,3 +399,4 @@ CREATE TABLE IF NOT EXISTS DM_NOTIFICATION (
|
||||
-- TO:DO - Remove this INSERT sql statement.
|
||||
Insert into DM_DEVICE_TYPE (ID,NAME) VALUES (1, 'android');
|
||||
Insert into DM_DEVICE_TYPE (ID,NAME) VALUES (2, 'ios');
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
CREATE TABLE DM_DEVICE_TYPE (
|
||||
ID NUMBER(10) NOT NULL,
|
||||
ID NUMBER(10) NOT NULL,
|
||||
NAME VARCHAR2(300) DEFAULT NULL,
|
||||
PRIMARY KEY (ID)
|
||||
);
|
||||
@ -630,3 +630,4 @@ END;
|
||||
-- TO:DO - Remove this INSERT sql statement.
|
||||
Insert into DM_DEVICE_TYPE (ID,NAME) VALUES (1, 'android');
|
||||
Insert into DM_DEVICE_TYPE (ID,NAME) VALUES (2, 'ios');
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user