mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
More code cleanups
This commit is contained in:
parent
549e4a784c
commit
60960d80b4
@ -32,7 +32,7 @@ public class Device {
|
||||
private Long dateOfLastUpdate;
|
||||
private String ownership;
|
||||
private Status status;
|
||||
private int deviceTypeId;
|
||||
private String deviceType;
|
||||
private String deviceIdentifier;
|
||||
private String owner;
|
||||
private List<Feature> features;
|
||||
@ -110,12 +110,12 @@ public class Device {
|
||||
}
|
||||
|
||||
@XmlElement
|
||||
public int getDeviceTypeId() {
|
||||
return deviceTypeId;
|
||||
public String getDeviceType() {
|
||||
return deviceType;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(int deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
public void setDeviceType(String deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
@XmlElement
|
||||
|
||||
@ -15,11 +15,8 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.wso2.carbon.device.mgt.common;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@ -28,6 +25,10 @@ import java.util.List;
|
||||
*/
|
||||
public interface DeviceManager {
|
||||
|
||||
enum EnrollmentStatus {
|
||||
CREATED, ACTIVE, INACTIVE, SUSPENDED, BLOCKED, REMOVED
|
||||
}
|
||||
|
||||
/**
|
||||
* Method to retrieve the provider type that implements DeviceManager interface.
|
||||
*
|
||||
@ -136,4 +137,7 @@ public interface DeviceManager {
|
||||
|
||||
boolean isClaimable(DeviceIdentifier deviceId) throws DeviceManagementException;
|
||||
|
||||
boolean setStatus(DeviceIdentifier deviceId, String currentOwner,
|
||||
EnrollmentStatus status) throws DeviceManagementException;
|
||||
|
||||
}
|
||||
|
||||
@ -30,6 +30,7 @@ public class EmailMessageProperties {
|
||||
private String enrolmentUrl;
|
||||
private String title;
|
||||
private String password;
|
||||
private String userName;
|
||||
|
||||
public String getUserName() {
|
||||
return userName;
|
||||
@ -39,8 +40,6 @@ public class EmailMessageProperties {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
private String userName;
|
||||
|
||||
public String getMessageBody() {
|
||||
return messageBody;
|
||||
}
|
||||
|
||||
@ -77,7 +77,7 @@ public class Feature implements Serializable{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public static class MetadataEntry {
|
||||
public static class MetadataEntry implements Serializable {
|
||||
|
||||
private int id;
|
||||
private Object value;
|
||||
|
||||
@ -16,46 +16,43 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.wso2.carbon.device.mgt.common.app.mgt;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.common.Platform;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class Application {
|
||||
|
||||
private String applicationName;
|
||||
private String appId;
|
||||
private String id;
|
||||
private String packageName;
|
||||
private String platform;
|
||||
private String category;
|
||||
private String name;
|
||||
private String locationUrl;
|
||||
private String imageUrl;
|
||||
private String version;
|
||||
private String appType;
|
||||
private String type;
|
||||
|
||||
public String getAppType() {
|
||||
return appType;
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setAppType(String appType) {
|
||||
this.appType = appType;
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getApplicationName() {
|
||||
return applicationName;
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setApplicationName(String applicationName) {
|
||||
this.applicationName = applicationName;
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
public String getAppId() {
|
||||
return appId;
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setAppId(String appId) {
|
||||
this.appId = appId;
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
||||
@ -84,4 +81,28 @@ public class Application {
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
public String getPackageName() {
|
||||
return packageName;
|
||||
}
|
||||
|
||||
public void setPackageName(String packageName) {
|
||||
this.packageName = packageName;
|
||||
}
|
||||
|
||||
public String getPlatform() {
|
||||
return platform;
|
||||
}
|
||||
|
||||
public void setPlatform(String platform) {
|
||||
this.platform = platform;
|
||||
}
|
||||
|
||||
public String getCategory() {
|
||||
return category;
|
||||
}
|
||||
|
||||
public void setCategory(String category) {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -49,7 +49,7 @@ public class DeviceManagementRepository {
|
||||
providers.remove(deviceType);
|
||||
}
|
||||
|
||||
public DeviceManagementService getDeviceManagementProvider(String type) {
|
||||
public DeviceManagementService getDeviceManagementService(String type) {
|
||||
return providers.get(type);
|
||||
}
|
||||
|
||||
|
||||
@ -24,18 +24,12 @@ import org.wso2.carbon.device.mgt.core.app.mgt.config.AppManagementConfig;
|
||||
|
||||
public class ApplicationManagerFactory {
|
||||
|
||||
private static DeviceManagementRepository pluginRepository;
|
||||
private static DeviceManagementRepository pluginRepository = new DeviceManagementRepository();
|
||||
|
||||
public DeviceManagementRepository getPluginRepository() {
|
||||
return pluginRepository;
|
||||
}
|
||||
|
||||
public void setPluginRepository(DeviceManagementRepository pluginRepository) {
|
||||
this.pluginRepository = pluginRepository;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static ApplicationManager getConnector(AppManagementConfig config) {
|
||||
return new RemoteApplicationManager(config, pluginRepository);
|
||||
}
|
||||
|
||||
@ -56,7 +56,8 @@ public class RemoteApplicationManager implements ApplicationManager {
|
||||
|
||||
private static final Log log = LogFactory.getLog(RemoteApplicationManager.class);
|
||||
|
||||
public RemoteApplicationManager(AppManagementConfig appManagementConfig, DeviceManagementRepository pluginRepository) {
|
||||
public RemoteApplicationManager(AppManagementConfig appManagementConfig,
|
||||
DeviceManagementRepository pluginRepository) {
|
||||
|
||||
IdentityConfigurations identityConfig = DeviceConfigurationManager.getInstance().getDeviceManagementConfig().
|
||||
getDeviceManagementConfigRepository().getIdentityConfigurations();
|
||||
@ -92,13 +93,13 @@ public class RemoteApplicationManager implements ApplicationManager {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void installApplication(Operation operation, List<DeviceIdentifier> deviceIdentifiers)
|
||||
public void installApplication(Operation operation, List<DeviceIdentifier> deviceIds)
|
||||
throws ApplicationManagementException {
|
||||
|
||||
for(DeviceIdentifier deviceIdentifier:deviceIdentifiers){
|
||||
for(DeviceIdentifier deviceId: deviceIds){
|
||||
DeviceManagementService dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceIdentifier.getType());
|
||||
dms.installApplication(operation,deviceIdentifiers);
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
dms.installApplication(operation, deviceIds);
|
||||
}
|
||||
}
|
||||
|
||||
@ -145,4 +146,5 @@ public class RemoteApplicationManager implements ApplicationManager {
|
||||
public DeviceManagementRepository getPluginRepository() {
|
||||
return pluginRepository;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -18,8 +18,8 @@
|
||||
|
||||
package org.wso2.carbon.device.mgt.core.dao;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
|
||||
import java.util.List;
|
||||
@ -29,28 +29,27 @@ import java.util.List;
|
||||
*/
|
||||
public interface DeviceDAO {
|
||||
|
||||
void addDevice(Device device) throws DeviceManagementDAOException;
|
||||
void addDevice(int typeId, Device device, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
void updateDevice(Device device) throws DeviceManagementDAOException;
|
||||
void updateDevice(int typeId, Device device, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
void updateDeviceStatus(int deviceId, Status status) throws DeviceManagementDAOException;
|
||||
void updateDeviceStatus(DeviceIdentifier deviceId, Status status, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
void deleteDevice(int deviceId) throws DeviceManagementDAOException;
|
||||
void deleteDevice(DeviceIdentifier deviceId, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
Device getDevice(int deviceId) throws DeviceManagementDAOException;
|
||||
Device getDevice(DeviceIdentifier deviceId, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
Device getDevice(DeviceIdentifier deviceIdentifier) throws DeviceManagementDAOException;
|
||||
List<Device> getDevices(int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
List<Device> getDevices() throws DeviceManagementDAOException;
|
||||
|
||||
List<Integer> getDeviceIds(List<DeviceIdentifier> devices) throws DeviceManagementDAOException;
|
||||
List<Integer> getDeviceIds(List<DeviceIdentifier> devices,
|
||||
int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
/**
|
||||
* @param type - The device type id.
|
||||
* @return a list of devices based on the type id.
|
||||
* @throws DeviceManagementDAOException
|
||||
*/
|
||||
List<Device> getDevices(int type) throws DeviceManagementDAOException;
|
||||
List<Device> getDevices(String type, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
/**
|
||||
* Get the list of devices belongs to a user.
|
||||
@ -66,7 +65,7 @@ public interface DeviceDAO {
|
||||
* @return device count
|
||||
* @throws DeviceManagementDAOException
|
||||
*/
|
||||
int getDeviceCount() throws DeviceManagementDAOException;
|
||||
int getDeviceCount(int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
/**
|
||||
* Get the list of devices that matches with the given device name.
|
||||
@ -76,4 +75,5 @@ public interface DeviceDAO {
|
||||
* @throws DeviceManagementDAOException
|
||||
*/
|
||||
List<Device> getDevicesByName(String deviceName, int tenantId) throws DeviceManagementDAOException;
|
||||
|
||||
}
|
||||
|
||||
@ -24,9 +24,12 @@ import org.wso2.carbon.device.mgt.core.config.datasource.DataSourceConfig;
|
||||
import org.wso2.carbon.device.mgt.core.config.datasource.JNDILookupDefinition;
|
||||
import org.wso2.carbon.device.mgt.core.dao.impl.DeviceDAOImpl;
|
||||
import org.wso2.carbon.device.mgt.core.dao.impl.DeviceTypeDAOImpl;
|
||||
import org.wso2.carbon.device.mgt.core.dao.impl.EnrollmentDAOImpl;
|
||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
import java.sql.Connection;
|
||||
import java.sql.SQLException;
|
||||
import java.util.Hashtable;
|
||||
import java.util.List;
|
||||
|
||||
@ -34,13 +37,18 @@ public class DeviceManagementDAOFactory {
|
||||
|
||||
private static DataSource dataSource;
|
||||
private static final Log log = LogFactory.getLog(DeviceManagementDAOFactory.class);
|
||||
private static ThreadLocal<Connection> currentConnection = new ThreadLocal<Connection>();
|
||||
|
||||
public static DeviceDAO getDeviceDAO() {
|
||||
return new DeviceDAOImpl(dataSource);
|
||||
return new DeviceDAOImpl();
|
||||
}
|
||||
|
||||
public static DeviceTypeDAO getDeviceTypeDAO() {
|
||||
return new DeviceTypeDAOImpl(dataSource);
|
||||
return new DeviceTypeDAOImpl();
|
||||
}
|
||||
|
||||
public static EnrollmentDAO getEnrollmentDAO() {
|
||||
return new EnrollmentDAOImpl();
|
||||
}
|
||||
|
||||
public static void init(DataSourceConfig config) {
|
||||
@ -51,6 +59,71 @@ public class DeviceManagementDAOFactory {
|
||||
dataSource = dtSource;
|
||||
}
|
||||
|
||||
public static void beginTransaction() throws DeviceManagementDAOException {
|
||||
try {
|
||||
currentConnection.set(dataSource.getConnection());
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while retrieving datasource connection", e);
|
||||
}
|
||||
}
|
||||
|
||||
public static Connection getConnection() throws DeviceManagementDAOException {
|
||||
if (currentConnection.get() == null) {
|
||||
try {
|
||||
currentConnection.set(dataSource.getConnection());
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while retrieving data source connection",
|
||||
e);
|
||||
}
|
||||
}
|
||||
return currentConnection.get();
|
||||
}
|
||||
|
||||
public static void closeConnection() throws DeviceManagementDAOException {
|
||||
Connection con = currentConnection.get();
|
||||
if (con != null) {
|
||||
try {
|
||||
con.close();
|
||||
} catch (SQLException e) {
|
||||
log.warn("Error occurred while close the connection");
|
||||
}
|
||||
currentConnection.remove();
|
||||
}
|
||||
}
|
||||
|
||||
public static void commitTransaction() throws DeviceManagementDAOException {
|
||||
try {
|
||||
Connection conn = currentConnection.get();
|
||||
if (conn != null) {
|
||||
conn.commit();
|
||||
} else {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Datasource connection associated with the current thread is null, hence commit " +
|
||||
"has not been attempted");
|
||||
}
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while committing the transaction", e);
|
||||
}
|
||||
}
|
||||
|
||||
public static void rollbackTransaction() throws DeviceManagementDAOException {
|
||||
try {
|
||||
Connection conn = currentConnection.get();
|
||||
if (conn != null) {
|
||||
conn.rollback();
|
||||
} else {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Datasource connection associated with the current thread is null, hence rollback " +
|
||||
"has not been attempted");
|
||||
}
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while rollbacking the transaction", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Resolve data source from the data source definition
|
||||
*
|
||||
@ -87,8 +160,4 @@ public class DeviceManagementDAOFactory {
|
||||
return dataSource;
|
||||
}
|
||||
|
||||
public static DataSource getDataSource() {
|
||||
return dataSource;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* 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.core.dao;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.DeviceManager;
|
||||
|
||||
public interface EnrollmentDAO {
|
||||
|
||||
boolean addEnrollment() throws DeviceManagementDAOException;
|
||||
|
||||
boolean updateEnrollment() throws DeviceManagementDAOException;
|
||||
|
||||
boolean removeEnrollment() throws DeviceManagementDAOException;
|
||||
|
||||
boolean setStatus(int deviceId, String currentOwner, String status) throws DeviceManagementDAOException;
|
||||
|
||||
boolean getStatus() throws DeviceManagementDAOException;
|
||||
|
||||
}
|
||||
@ -18,17 +18,16 @@
|
||||
|
||||
package org.wso2.carbon.device.mgt.core.dao.impl;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
import java.sql.Connection;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
@ -39,17 +38,9 @@ import java.util.List;
|
||||
|
||||
public class DeviceDAOImpl implements DeviceDAO {
|
||||
|
||||
|
||||
private DataSource dataSource;
|
||||
private static final Log log = LogFactory.getLog(DeviceDAOImpl.class);
|
||||
|
||||
public DeviceDAOImpl(DataSource dataSource) {
|
||||
this.dataSource = dataSource;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addDevice(Device device) throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
public void addDevice(int typeId, Device device, int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
@ -62,59 +53,55 @@ public class DeviceDAOImpl implements DeviceDAO {
|
||||
stmt.setString(2, device.getName());
|
||||
stmt.setLong(3, new Date().getTime());
|
||||
stmt.setLong(4, new Date().getTime());
|
||||
stmt.setString(5, device.getOwnerShip());
|
||||
stmt.setString(5, device.getOwnership());
|
||||
stmt.setString(6, device.getStatus().toString());
|
||||
stmt.setInt(7, device.getDeviceTypeId());
|
||||
stmt.setString(8, device.getDeviceIdentificationId());
|
||||
stmt.setString(9, device.getOwnerId());
|
||||
stmt.setInt(10, device.getTenantId());
|
||||
stmt.setInt(7, typeId);
|
||||
stmt.setString(8, device.getDeviceIdentifier());
|
||||
stmt.setString(9, device.getOwner());
|
||||
stmt.setInt(10, tenantId);
|
||||
stmt.executeUpdate();
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while enrolling device " +
|
||||
"'" + device.getName() + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, null);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDevice(Device device) throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
public void updateDevice(int typeId, Device device, int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
String sql = "UPDATE DM_DEVICE SET STATUS=?, OWNER=? WHERE DEVICE_IDENTIFICATION = ?";
|
||||
stmt = conn.prepareStatement(sql);
|
||||
stmt.setString(1, device.getStatus().toString());
|
||||
stmt.setString(2, device.getOwnerId());
|
||||
stmt.setString(3, device.getDeviceIdentificationId());
|
||||
stmt.setString(2, device.getOwner());
|
||||
stmt.setString(3, device.getDeviceIdentifier());
|
||||
stmt.executeUpdate();
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while enrolling device " +
|
||||
"'" + device.getName() + "'", e);
|
||||
throw new DeviceManagementDAOException("Error occurred while enrolling device '" +
|
||||
device.getName() + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, null);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDeviceStatus(int deviceId, Status status) throws DeviceManagementDAOException {
|
||||
public void updateDeviceStatus(DeviceIdentifier deviceId, Status status,
|
||||
int tenantId) throws DeviceManagementDAOException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteDevice(int deviceId) throws DeviceManagementDAOException {
|
||||
public void deleteDevice(DeviceIdentifier deviceId, int tenantId) throws DeviceManagementDAOException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Device getDevice(int deviceId) throws DeviceManagementDAOException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Device getDevice(DeviceIdentifier deviceIdentifier) throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
public Device getDevice(DeviceIdentifier deviceId, int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet rs = null;
|
||||
Device device = null;
|
||||
@ -125,8 +112,8 @@ public class DeviceDAOImpl implements DeviceDAO {
|
||||
"d.DEVICE_TYPE_ID, d.DEVICE_IDENTIFICATION, d.OWNER, d.TENANT_ID FROM DM_DEVICE d, DM_DEVICE_TYPE dt WHERE " +
|
||||
"dt.NAME = ? AND d.DEVICE_IDENTIFICATION = ?";
|
||||
stmt = conn.prepareStatement(sql);
|
||||
stmt.setString(1, deviceIdentifier.getType());
|
||||
stmt.setString(2, deviceIdentifier.getId());
|
||||
stmt.setString(1, deviceId.getType());
|
||||
stmt.setString(2, deviceId.getId());
|
||||
|
||||
rs = stmt.executeQuery();
|
||||
if (rs.next()) {
|
||||
@ -134,186 +121,168 @@ public class DeviceDAOImpl implements DeviceDAO {
|
||||
device.setId(rs.getInt("ID"));
|
||||
device.setDescription(rs.getString("DESCRIPTION"));
|
||||
device.setName(rs.getString("NAME"));
|
||||
device.setDateOfEnrollment(rs.getLong("DATE_OF_ENROLLMENT"));
|
||||
device.setDateOfEnrolment(rs.getLong("DATE_OF_ENROLLMENT"));
|
||||
device.setDateOfLastUpdate(rs.getLong("DATE_OF_LAST_UPDATE"));
|
||||
//TODO:- Ownership is not a enum in DeviceDAO
|
||||
device.setOwnerShip(rs.getString("OWNERSHIP"));
|
||||
device.setOwnership(rs.getString("OWNERSHIP"));
|
||||
device.setStatus(Status.valueOf(rs.getString("STATUS")));
|
||||
device.setDeviceTypeId(rs.getInt("DEVICE_TYPE_ID"));
|
||||
device.setDeviceIdentificationId(rs.getString("DEVICE_IDENTIFICATION"));
|
||||
device.setOwnerId(rs.getString("OWNER"));
|
||||
device.setTenantId(rs.getInt("TENANT_ID"));
|
||||
device.setDeviceType(deviceId.getType());
|
||||
device.setDeviceIdentifier(rs.getString("DEVICE_IDENTIFICATION"));
|
||||
device.setOwner(rs.getString("OWNER"));
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while listing devices for type " +
|
||||
"'" + deviceIdentifier.getType() + "'", e);
|
||||
"'" + deviceId.getType() + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, rs);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||
}
|
||||
return device;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDevices() throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
public List<Device> getDevices(int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet resultSet = null;
|
||||
ResultSet rs = null;
|
||||
List<Device> devicesList = null;
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
String selectDBQueryForType = "SELECT ID, DESCRIPTION, NAME, DATE_OF_ENROLLMENT, " +
|
||||
"DATE_OF_LAST_UPDATE, OWNERSHIP, STATUS, DEVICE_TYPE_ID, " +
|
||||
"DEVICE_IDENTIFICATION, OWNER, TENANT_ID FROM DM_DEVICE ";
|
||||
stmt = conn.prepareStatement(selectDBQueryForType);
|
||||
resultSet = stmt.executeQuery();
|
||||
String sql = "SELECT d.ID AS DEVICE_ID, d.DESCRIPTION, d.NAME AS DEVICE_NAME, d.DATE_OF_ENROLLMENT, " +
|
||||
"d.DATE_OF_LAST_UPDATE, d.OWNERSHIP, d.STATUS, d.DEVICE_TYPE_ID, " +
|
||||
"d.DEVICE_IDENTIFICATION, d.OWNER, d.TENANT_ID, t.NAME AS DEVICE_TYPE_NAME FROM DM_DEVICE d, DEVICE_TYPE t " +
|
||||
"WHERE d.DEVICE_TYPE_ID = t.ID ";
|
||||
stmt = conn.prepareStatement(sql);
|
||||
rs = stmt.executeQuery();
|
||||
devicesList = new ArrayList<Device>();
|
||||
while (resultSet.next()) {
|
||||
while (rs.next()) {
|
||||
Device device = new Device();
|
||||
device.setId(resultSet.getInt(1));
|
||||
device.setDescription(resultSet.getString(2));
|
||||
device.setName(resultSet.getString(3));
|
||||
device.setDateOfEnrollment(resultSet.getLong(4));
|
||||
device.setDateOfLastUpdate(resultSet.getLong(5));
|
||||
device.setId(rs.getInt("DEVICE_ID"));
|
||||
device.setDescription(rs.getString("DESCRIPTION"));
|
||||
device.setName(rs.getString("DEVICE_NAME"));
|
||||
device.setDateOfEnrolment(rs.getLong("DATE_OF_ENROLLMENT"));
|
||||
device.setDateOfLastUpdate(rs.getLong("DATE_OF_LAST_UPDATE"));
|
||||
//TODO:- Ownership is not a enum in DeviceDAO
|
||||
device.setOwnerShip(resultSet.getString(6));
|
||||
device.setStatus(Status.valueOf(resultSet.getString(7)));
|
||||
device.setDeviceTypeId(resultSet.getInt(8));
|
||||
device.setDeviceIdentificationId(resultSet.getString(9));
|
||||
device.setOwnerId(resultSet.getString(10));
|
||||
device.setTenantId(resultSet.getInt(11));
|
||||
device.setOwnership("OWNERSHIP");
|
||||
device.setStatus(Status.valueOf(rs.getString("STATUS")));
|
||||
device.setDeviceType("DEVICE_TYPE_NAME");
|
||||
device.setDeviceIdentifier("DEVICE_IDENTIFICATION");
|
||||
device.setOwner("OWNER");
|
||||
devicesList.add(device);
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
String msg = "Error occurred while listing all devices for type ";
|
||||
log.error(msg, e);
|
||||
throw new DeviceManagementDAOException(msg, e);
|
||||
throw new DeviceManagementDAOException("Error occurred while retrieving information of all " +
|
||||
"registered devices", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, resultSet);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||
}
|
||||
return devicesList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Integer> getDeviceIds(List<DeviceIdentifier> devices) throws DeviceManagementDAOException {
|
||||
List<Integer> deviceIds = new ArrayList<Integer>();
|
||||
public List<Integer> getDeviceIds(List<DeviceIdentifier> devices,
|
||||
int tenantId) throws DeviceManagementDAOException {
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet rs = null;
|
||||
try {
|
||||
List<Integer> deviceIds = new ArrayList<Integer>();
|
||||
Connection conn = this.getConnection();
|
||||
String sql = "SELECT DISTINCT ID FROM DEVICE WHERE NAME IN (?) AND ID IN (?)";
|
||||
PreparedStatement stmt = conn.prepareStatement(sql);
|
||||
stmt = conn.prepareStatement(sql);
|
||||
//stmt.setArray(1, new java.sql.Date[0]);
|
||||
stmt.setString(2, "");
|
||||
ResultSet rs = stmt.executeQuery();
|
||||
rs = stmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
deviceIds.add(rs.getInt("ID"));
|
||||
}
|
||||
return deviceIds;
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while retrieving device ids", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||
}
|
||||
}
|
||||
|
||||
private String getDeviceNameString(List<DeviceIdentifier> devices) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (DeviceIdentifier device : devices) {
|
||||
sb.append(device.getId());
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDevices(int type) throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
public List<Device> getDevices(String type, int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet resultSet = null;
|
||||
List<Device> devicesList = null;
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
String selectDBQueryForType = "SELECT ID, DESCRIPTION, NAME, DATE_OF_ENROLLMENT, DATE_OF_LAST_UPDATE, OWNERSHIP, STATUS, DEVICE_TYPE_ID, DEVICE_IDENTIFICATION, OWNER, TENANT_ID FROM DM_DEVICE " +
|
||||
"WHERE DM_DEVICE.DEVICE_TYPE_ID = ?";
|
||||
String selectDBQueryForType = "SELECT d.ID AS DEVICE_ID, d.DESCRIPTION, d.NAME AS DEVICE_NAME, d.DATE_OF_ENROLLMENT, d.DATE_OF_LAST_UPDATE, " +
|
||||
"d.OWNERSHIP, d.STATUS, d.DEVICE_TYPE_ID, d.DEVICE_IDENTIFICATION, d.OWNER, d.TENANT_ID FROM DM_DEVICE d, DM_DEVICE_TYPE t " +
|
||||
"WHERE d.DM_DEVICE.DEVICE_TYPE_ID = t.ID AND t.NAME = ?";
|
||||
stmt = conn.prepareStatement(selectDBQueryForType);
|
||||
stmt.setInt(1, type);
|
||||
stmt.setString(1, type);
|
||||
resultSet = stmt.executeQuery();
|
||||
devicesList = new ArrayList<Device>();
|
||||
while (resultSet.next()) {
|
||||
Device device = new Device();
|
||||
device.setId(resultSet.getInt(1));
|
||||
device.setDescription(resultSet.getString(2));
|
||||
device.setName(resultSet.getString(3));
|
||||
device.setDateOfEnrollment(resultSet.getLong(4));
|
||||
device.setDateOfLastUpdate(resultSet.getLong(5));
|
||||
device.setId(resultSet.getInt("DEVICE_ID"));
|
||||
device.setDescription(resultSet.getString("DESCRIPTION"));
|
||||
device.setName(resultSet.getString("DEVICE_NAME"));
|
||||
device.setDateOfEnrolment(resultSet.getLong("DATE_OF_ENROLLMENT"));
|
||||
device.setDateOfLastUpdate(resultSet.getLong("DATE_OF_LAST_UPDATE"));
|
||||
//TODO:- Ownership is not a enum in DeviceDAO
|
||||
device.setOwnerShip(resultSet.getString(6));
|
||||
device.setStatus(Status.valueOf(resultSet.getString(7)));
|
||||
device.setDeviceTypeId(resultSet.getInt(8));
|
||||
device.setDeviceIdentificationId(resultSet.getString(9));
|
||||
device.setOwnerId(resultSet.getString(10));
|
||||
device.setTenantId(resultSet.getInt(11));
|
||||
device.setOwnership(resultSet.getString("OWNERSHIP"));
|
||||
device.setStatus(Status.valueOf(resultSet.getString("STATUS")));
|
||||
device.setDeviceType(type);
|
||||
device.setDeviceIdentifier(resultSet.getString("DEVICE_IDENTIFICATION"));
|
||||
device.setOwner(resultSet.getString("OWNER"));
|
||||
devicesList.add(device);
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
String msg = "Error occurred while listing devices for type '" + type + "'";
|
||||
log.error(msg, e);
|
||||
throw new DeviceManagementDAOException(msg, e);
|
||||
throw new DeviceManagementDAOException("Error occurred while listing devices for type '" + type + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, resultSet);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, resultSet);
|
||||
}
|
||||
return devicesList;
|
||||
}
|
||||
|
||||
@Override public List<Device> getDeviceListOfUser(String username, int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn = this.getConnection();
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
List<Device> deviceList = new ArrayList<Device>();
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
stmt = conn.prepareStatement(
|
||||
"SELECT DM_DEVICE_TYPE.ID, DM_DEVICE_TYPE.NAME, DM_DEVICE.ID, DM_DEVICE.DESCRIPTION, " +
|
||||
"DM_DEVICE.NAME, DM_DEVICE.DATE_OF_ENROLLMENT, DM_DEVICE.DATE_OF_LAST_UPDATE, " +
|
||||
"DM_DEVICE.OWNERSHIP, DM_DEVICE.STATUS, DM_DEVICE.DEVICE_TYPE_ID, " +
|
||||
"DM_DEVICE.DEVICE_IDENTIFICATION, DM_DEVICE.OWNER, DM_DEVICE.TENANT_ID FROM " +
|
||||
"DM_DEVICE, DM_DEVICE_TYPE WHERE DM_DEVICE.DEVICE_TYPE_ID = DM_DEVICE_TYPE.ID " +
|
||||
"AND DM_DEVICE.OWNER =? AND DM_DEVICE.TENANT_ID =?");
|
||||
"SELECT t.NAME AS DEVICE_TYPE_NAME, d.ID AS DEVICE_ID, d.DESCRIPTION, " +
|
||||
"d.NAME AS DEVICE_NAME, d.DATE_OF_ENROLLMENT, d.DATE_OF_LAST_UPDATE, " +
|
||||
"d.OWNERSHIP, d.STATUS, d.DEVICE_TYPE_ID, " +
|
||||
"d.DEVICE_IDENTIFICATION, d.OWNER, d.TENANT_ID FROM " +
|
||||
"DM_DEVICE d, DM_DEVICE_TYPE t WHERE d.DEVICE_TYPE_ID = t.ID " +
|
||||
"AND d.OWNER =? AND d.TENANT_ID =?");
|
||||
stmt.setString(1, username);
|
||||
stmt.setInt(2, tenantId);
|
||||
ResultSet resultSet = stmt.executeQuery();
|
||||
|
||||
while (resultSet.next()) {
|
||||
Device device = new Device();
|
||||
DeviceType deviceType = new DeviceType();
|
||||
int id = resultSet.getInt(1);
|
||||
deviceType.setId(id);
|
||||
deviceType.setName(resultSet.getString(2));
|
||||
device.setId(resultSet.getInt(3));
|
||||
device.setDescription(resultSet.getString(4));
|
||||
device.setName(resultSet.getString(5));
|
||||
device.setDateOfEnrollment(resultSet.getLong(6));
|
||||
device.setDateOfLastUpdate(resultSet.getLong(7));
|
||||
device.setId(resultSet.getInt("DEVICE_ID"));
|
||||
device.setDescription(resultSet.getString("DESCRIPTION"));
|
||||
device.setName(resultSet.getString("DEVICE_NAME"));
|
||||
device.setDateOfEnrolment(resultSet.getLong("DATE_OF_ENROLLMENT"));
|
||||
device.setDateOfLastUpdate(resultSet.getLong("DATE_OF_LAST_UPDATE"));
|
||||
//TODO:- Ownership is not a enum in DeviceDAO
|
||||
device.setOwnerShip(resultSet.getString(8));
|
||||
device.setStatus(Status.valueOf(resultSet.getString(9)));
|
||||
device.setDeviceTypeId(resultSet.getInt(10));
|
||||
device.setDeviceIdentificationId(resultSet.getString(11));
|
||||
device.setOwnerId(resultSet.getString(12));
|
||||
device.setTenantId(resultSet.getInt(13));
|
||||
device.setOwnership(resultSet.getString("OWNERSHIP"));
|
||||
device.setStatus(Status.valueOf(resultSet.getString("STATUS")));
|
||||
device.setDeviceType("DEVICE_TYPE_NAME");
|
||||
device.setDeviceIdentifier("DEVICE_IDENTIFICATION");
|
||||
device.setOwner("OWNER");
|
||||
deviceList.add(device);
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
String msg = "Error occurred while fetching the list of devices belongs to " + username;
|
||||
log.error(msg, e);
|
||||
throw new DeviceManagementDAOException(msg, e);
|
||||
throw new DeviceManagementDAOException("Error occurred while fetching the list of devices belongs to '" +
|
||||
username + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, null);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||
}
|
||||
return deviceList;
|
||||
}
|
||||
|
||||
private Connection getConnection() throws DeviceManagementDAOException {
|
||||
try {
|
||||
return dataSource.getConnection();
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException(
|
||||
"Error occurred while obtaining a connection from the device " +
|
||||
"management metadata repository datasource", e);
|
||||
}
|
||||
return DeviceManagementDAOFactory.getConnection();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -322,8 +291,8 @@ public class DeviceDAOImpl implements DeviceDAO {
|
||||
* @throws DeviceManagementDAOException
|
||||
*/
|
||||
@Override
|
||||
public int getDeviceCount() throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
public int getDeviceCount(int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet resultSet = null;
|
||||
int deviceCount = 0;
|
||||
@ -333,14 +302,12 @@ public class DeviceDAOImpl implements DeviceDAO {
|
||||
stmt = conn.prepareStatement(selectDBQueryForType);
|
||||
resultSet = stmt.executeQuery();
|
||||
while (resultSet.next()) {
|
||||
deviceCount = resultSet.getInt(0);
|
||||
deviceCount = resultSet.getInt(1);
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
String msg = "Error occurred while getting count of devices";
|
||||
log.error(msg, e);
|
||||
throw new DeviceManagementDAOException(msg, e);
|
||||
throw new DeviceManagementDAOException("Error occurred while getting the device count", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, resultSet);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, resultSet);
|
||||
}
|
||||
return deviceCount;
|
||||
}
|
||||
@ -355,46 +322,43 @@ public class DeviceDAOImpl implements DeviceDAO {
|
||||
*/
|
||||
@Override
|
||||
public List<Device> getDevicesByName(String deviceName, int tenantId) throws DeviceManagementDAOException {
|
||||
Connection conn = this.getConnection();
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
List<Device> deviceList = new ArrayList<Device>();
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
stmt = conn.prepareStatement(
|
||||
"SELECT DM_DEVICE_TYPE.ID, DM_DEVICE_TYPE.NAME, DM_DEVICE.ID, DM_DEVICE.DESCRIPTION, " +
|
||||
"DM_DEVICE.NAME, DM_DEVICE.DATE_OF_ENROLLMENT, DM_DEVICE.DATE_OF_LAST_UPDATE, " +
|
||||
"DM_DEVICE.OWNERSHIP, DM_DEVICE.STATUS, DM_DEVICE.DEVICE_TYPE_ID, " +
|
||||
"DM_DEVICE.DEVICE_IDENTIFICATION, DM_DEVICE.OWNER, DM_DEVICE.TENANT_ID FROM " +
|
||||
"DM_DEVICE, DM_DEVICE_TYPE WHERE DM_DEVICE.DEVICE_TYPE_ID = DM_DEVICE_TYPE.ID " +
|
||||
"AND DM_DEVICE.NAME LIKE ? AND DM_DEVICE.TENANT_ID =?");
|
||||
"SELECT d.ID AS DEVICE_ID, d.NAME AS DEVICE_NAME, t.ID AS DEVICE_TYPE_ID, d.DESCRIPTION, " +
|
||||
"t.NAME AS DEVICE_TYPE, d.DATE_OF_ENROLLMENT, d.DATE_OF_LAST_UPDATE, " +
|
||||
"d.OWNERSHIP, d.STATUS, d.DEVICE_TYPE_ID, " +
|
||||
"d.DEVICE_IDENTIFICATION, d.OWNER, d.TENANT_ID FROM " +
|
||||
"DM_DEVICE d, DM_DEVICE_TYPE t WHERE d.DEVICE_TYPE_ID = t.ID " +
|
||||
"AND d.NAME LIKE ? AND d.TENANT_ID = ?");
|
||||
stmt.setString(1, deviceName + "%");
|
||||
stmt.setInt(2, tenantId);
|
||||
ResultSet resultSet = stmt.executeQuery();
|
||||
ResultSet rs = stmt.executeQuery();
|
||||
|
||||
while (resultSet.next()) {
|
||||
while (rs.next()) {
|
||||
Device device = new Device();
|
||||
DeviceType deviceType = new DeviceType();
|
||||
int id = resultSet.getInt(1);
|
||||
deviceType.setId(id);
|
||||
deviceType.setName(resultSet.getString(2));
|
||||
device.setId(resultSet.getInt(3));
|
||||
device.setDescription(resultSet.getString(4));
|
||||
device.setName(resultSet.getString(5));
|
||||
device.setDateOfEnrollment(resultSet.getLong(6));
|
||||
device.setDateOfLastUpdate(resultSet.getLong(7));
|
||||
device.setOwnerShip(resultSet.getString(8));
|
||||
device.setStatus(Status.valueOf(resultSet.getString(9)));
|
||||
device.setDeviceTypeId(resultSet.getInt(10));
|
||||
device.setDeviceIdentificationId(resultSet.getString(11));
|
||||
device.setOwnerId(resultSet.getString(12));
|
||||
device.setTenantId(resultSet.getInt(13));
|
||||
deviceType.setId(rs.getInt("ID"));
|
||||
deviceType.setName(rs.getString("DEVICE_NAME"));
|
||||
device.setId(rs.getInt("DEVICE_TYPE_ID"));
|
||||
device.setDescription(rs.getString("DESCRIPTION"));
|
||||
device.setDateOfEnrolment(rs.getLong("DATE_OF_ENROLLMENT"));
|
||||
device.setDateOfLastUpdate(rs.getLong("DATE_OF_LAST_UPDATE"));
|
||||
device.setOwnership(rs.getString("OWNERSHIP"));
|
||||
device.setStatus(Status.valueOf(rs.getString("STATUS")));
|
||||
device.setDeviceType(rs.getString("DEVICE_TYPE"));
|
||||
device.setDeviceIdentifier(rs.getString("DEVICE_IDENTIFICATION"));
|
||||
device.setOwner(rs.getString("OWNER"));
|
||||
deviceList.add(device);
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
String msg = "Error occurred while fetching the list of devices that matches to '" + deviceName + "'";
|
||||
log.error(msg, e);
|
||||
throw new DeviceManagementDAOException(msg, e);
|
||||
throw new DeviceManagementDAOException("Error occurred while fetching the list of devices that matches " +
|
||||
"'" + deviceName + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, null);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||
}
|
||||
return deviceList;
|
||||
}
|
||||
|
||||
@ -20,6 +20,7 @@ package org.wso2.carbon.device.mgt.core.dao.impl;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceTypeDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||
@ -34,18 +35,12 @@ import java.util.List;
|
||||
|
||||
public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
|
||||
private DataSource dataSource;
|
||||
private static final Log log = LogFactory.getLog(DeviceTypeDAOImpl.class);
|
||||
|
||||
public DeviceTypeDAOImpl(DataSource dataSource) {
|
||||
this.dataSource = dataSource;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addDeviceType(DeviceType deviceType) throws DeviceManagementDAOException {
|
||||
Connection conn = this.getConnection();
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
try {
|
||||
conn = this.getConnection();
|
||||
stmt = conn.prepareStatement("INSERT INTO DM_DEVICE_TYPE (NAME) VALUES (?)");
|
||||
stmt.setString(1, deviceType.getName());
|
||||
stmt.execute();
|
||||
@ -53,7 +48,7 @@ public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
throw new DeviceManagementDAOException("Error occurred while registering the device type " +
|
||||
"'" + deviceType.getName() + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, null);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, null);
|
||||
}
|
||||
}
|
||||
|
||||
@ -64,7 +59,7 @@ public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
|
||||
@Override
|
||||
public List<DeviceType> getDeviceTypes() throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet rs = null;
|
||||
List<DeviceType> deviceTypes = new ArrayList<DeviceType>();;
|
||||
@ -84,13 +79,13 @@ public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while fetching the registered device types", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, rs);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public DeviceType getDeviceType(int id) throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet rs = null;
|
||||
try {
|
||||
@ -110,13 +105,13 @@ public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
} catch (SQLException e) {
|
||||
throw new DeviceManagementDAOException("Error occurred while fetching the registered device type", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, rs);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public DeviceType getDeviceType(String type) throws DeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
Connection conn;
|
||||
PreparedStatement stmt = null;
|
||||
ResultSet rs = null;
|
||||
DeviceType deviceType = null;
|
||||
@ -137,7 +132,7 @@ public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
throw new DeviceManagementDAOException("Error occurred while fetch device type id for device type " +
|
||||
"'" + type + "'", e);
|
||||
} finally {
|
||||
DeviceManagementDAOUtil.cleanupResources(conn, stmt, rs);
|
||||
DeviceManagementDAOUtil.cleanupResources(stmt, rs);
|
||||
}
|
||||
}
|
||||
|
||||
@ -147,14 +142,7 @@ public class DeviceTypeDAOImpl implements DeviceTypeDAO {
|
||||
}
|
||||
|
||||
private Connection getConnection() throws DeviceManagementDAOException {
|
||||
try {
|
||||
return dataSource.getConnection();
|
||||
} catch (SQLException e) {
|
||||
String msg = "Error occurred while obtaining a connection from the device " +
|
||||
"management metadata repository datasource";
|
||||
log.error(msg, e);
|
||||
throw new DeviceManagementDAOException(msg, e);
|
||||
}
|
||||
return DeviceManagementDAOFactory.getConnection();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,51 @@
|
||||
/*
|
||||
* 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.core.dao.impl;
|
||||
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.EnrollmentDAO;
|
||||
|
||||
public class EnrollmentDAOImpl implements EnrollmentDAO {
|
||||
|
||||
@Override
|
||||
public boolean addEnrollment() throws DeviceManagementDAOException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateEnrollment() throws DeviceManagementDAOException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean removeEnrollment() throws DeviceManagementDAOException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setStatus(int deviceId, String currentOwner, String status) throws DeviceManagementDAOException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getStatus() throws DeviceManagementDAOException {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
@ -20,11 +20,7 @@ package org.wso2.carbon.device.mgt.core.dao.util;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||
import org.wso2.carbon.device.mgt.core.internal.DeviceManagementDataHolder;
|
||||
import org.wso2.carbon.user.api.UserStoreException;
|
||||
import org.wso2.carbon.user.core.tenant.TenantManager;
|
||||
@ -66,6 +62,23 @@ public final class DeviceManagementDAOUtil {
|
||||
}
|
||||
}
|
||||
|
||||
public static void cleanupResources(PreparedStatement stmt, ResultSet rs) {
|
||||
if (rs != null) {
|
||||
try {
|
||||
rs.close();
|
||||
} catch (SQLException e) {
|
||||
log.warn("Error occurred while closing result set", e);
|
||||
}
|
||||
}
|
||||
if (stmt != null) {
|
||||
try {
|
||||
stmt.close();
|
||||
} catch (SQLException e) {
|
||||
log.warn("Error occurred while closing prepared statement", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id of the current tenant.
|
||||
*
|
||||
@ -107,48 +120,4 @@ public final class DeviceManagementDAOUtil {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param device - The DTO device object.
|
||||
* @param deviceType - The DeviceType object associated with the device
|
||||
* @return A Business Object.
|
||||
*/
|
||||
public static org.wso2.carbon.device.mgt.common.Device convertDevice(Device device,
|
||||
DeviceType deviceType) {
|
||||
org.wso2.carbon.device.mgt.common.Device deviceBO =
|
||||
new org.wso2.carbon.device.mgt.common.Device();
|
||||
deviceBO.setDateOfEnrolment(device.getDateOfEnrollment());
|
||||
deviceBO.setDateOfLastUpdate(device.getDateOfLastUpdate());
|
||||
deviceBO.setDescription(device.getDescription());
|
||||
deviceBO.setDeviceIdentifier(device.getDeviceIdentificationId());
|
||||
deviceBO.setDeviceTypeId(device.getDeviceTypeId());
|
||||
deviceBO.setType(deviceType.getName());
|
||||
deviceBO.setName(device.getName());
|
||||
deviceBO.setId(device.getId());
|
||||
deviceBO.setOwner(device.getOwnerId());
|
||||
deviceBO.setOwnership(device.getOwnerShip());
|
||||
deviceBO.setStatus(device.getStatus());
|
||||
return deviceBO;
|
||||
}
|
||||
|
||||
public static Device convertDevice(org.wso2.carbon.device.mgt.common.Device
|
||||
device) throws DeviceManagementDAOException {
|
||||
Device deviceBO = new Device();
|
||||
deviceBO.setDescription(device.getDescription());
|
||||
deviceBO.setName(device.getName());
|
||||
deviceBO.setDateOfEnrollment(device.getDateOfEnrolment());
|
||||
deviceBO.setDateOfLastUpdate(device.getDateOfLastUpdate());
|
||||
deviceBO.setStatus(device.getStatus());
|
||||
deviceBO.setOwnerId(device.getOwner());
|
||||
deviceBO.setOwnerShip(device.getOwnership());
|
||||
deviceBO.setTenantId(DeviceManagementDAOUtil.getTenantId());
|
||||
deviceBO.setDeviceIdentificationId(device.getDeviceIdentifier());
|
||||
return deviceBO;
|
||||
}
|
||||
|
||||
public static DeviceIdentifier createDeviceIdentifier(Device device, DeviceType deviceType) {
|
||||
DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
|
||||
deviceIdentifier.setType(deviceType.getName());
|
||||
deviceIdentifier.setId(device.getDeviceIdentificationId());
|
||||
return deviceIdentifier;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,101 +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.core.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Holds data about an application that can be installed on a device.
|
||||
*/
|
||||
public class Application implements Serializable {
|
||||
private static final long serialVersionUID = -81011063453453455L;
|
||||
String id;
|
||||
String name;
|
||||
String packageName;
|
||||
String platform;
|
||||
String fileUrl;
|
||||
String applicationType;
|
||||
String category;
|
||||
|
||||
public String getApplicationType() {
|
||||
return applicationType;
|
||||
}
|
||||
|
||||
public void setApplicationType(String applicationType) {
|
||||
this.applicationType = applicationType;
|
||||
}
|
||||
|
||||
public String getCategory() {
|
||||
return category;
|
||||
}
|
||||
|
||||
public void setCategory(String category) {
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPackageName() {
|
||||
return packageName;
|
||||
}
|
||||
|
||||
public void setPackageName(String packageName) {
|
||||
this.packageName = packageName;
|
||||
}
|
||||
|
||||
public String getPlatform() {
|
||||
return platform;
|
||||
}
|
||||
|
||||
public void setPlatform(String platform) {
|
||||
this.platform = platform;
|
||||
}
|
||||
|
||||
public String getFileUrl() {
|
||||
return fileUrl;
|
||||
}
|
||||
|
||||
public void setFileUrl(String fileUrl) {
|
||||
this.fileUrl = fileUrl;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
String type;
|
||||
}
|
||||
@ -1,135 +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.core.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
|
||||
public class Device implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -8101106997837486245L;
|
||||
private int id;
|
||||
private String description;
|
||||
private String name;
|
||||
private Long dateOfEnrollment;
|
||||
private Long dateOfLastUpdate;
|
||||
private String deviceIdentificationId;
|
||||
private Status status;
|
||||
private String ownerId;
|
||||
private String ownerShip;
|
||||
private int tenantId;
|
||||
private int deviceTypeId;
|
||||
private DeviceType deviceType;
|
||||
|
||||
public DeviceType getDeviceType() {
|
||||
return deviceType;
|
||||
}
|
||||
|
||||
public void setDeviceType(DeviceType deviceType) {
|
||||
this.deviceType = deviceType;
|
||||
}
|
||||
|
||||
public int getDeviceTypeId() {
|
||||
return deviceTypeId;
|
||||
}
|
||||
|
||||
public void setDeviceTypeId(int deviceTypeId) {
|
||||
this.deviceTypeId = deviceTypeId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getDateOfEnrollment() {
|
||||
return dateOfEnrollment;
|
||||
}
|
||||
|
||||
public void setDateOfEnrollment(Long dateOfEnrollment) {
|
||||
this.dateOfEnrollment = dateOfEnrollment;
|
||||
}
|
||||
|
||||
public Long getDateOfLastUpdate() {
|
||||
return dateOfLastUpdate;
|
||||
}
|
||||
|
||||
public void setDateOfLastUpdate(Long dateOfLastUpdate) {
|
||||
this.dateOfLastUpdate = dateOfLastUpdate;
|
||||
}
|
||||
|
||||
public String getDeviceIdentificationId() {
|
||||
return deviceIdentificationId;
|
||||
}
|
||||
|
||||
public void setDeviceIdentificationId(String deviceIdentificationId) {
|
||||
this.deviceIdentificationId = deviceIdentificationId;
|
||||
}
|
||||
|
||||
public void setOwnerShip(String ownerShip) {
|
||||
this.ownerShip = ownerShip;
|
||||
}
|
||||
|
||||
public String getOwnerShip() {
|
||||
return ownerShip;
|
||||
}
|
||||
|
||||
public Status getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public String getOwnerId() {
|
||||
return ownerId;
|
||||
}
|
||||
|
||||
public void setStatus(Status status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setOwnerId(String ownerId) {
|
||||
this.ownerId = ownerId;
|
||||
}
|
||||
|
||||
public int getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
public void setTenantId(int tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
}
|
||||
@ -37,7 +37,7 @@ public class ConfigOperation extends Operation {
|
||||
properties.add(new Property(name, value, type));
|
||||
}
|
||||
|
||||
public class Property {
|
||||
public static class Property {
|
||||
private String name;
|
||||
private Object value;
|
||||
private Class<?> type;
|
||||
|
||||
@ -48,27 +48,20 @@ import java.util.concurrent.TimeUnit;
|
||||
public class EmailServiceProviderImpl implements EmailService {
|
||||
|
||||
private static ThreadPoolExecutor threadPoolExecutor;
|
||||
|
||||
static {
|
||||
EmailConfigurations emailConfig =
|
||||
DeviceConfigurationManager.getInstance().getDeviceManagementConfig().
|
||||
getDeviceManagementConfigRepository().getEmailConfigurations();
|
||||
|
||||
threadPoolExecutor = new ThreadPoolExecutor(emailConfig.getMinNumOfThread(),
|
||||
emailConfig.getMaxNumOfThread(), emailConfig.getKeepAliveTime(), TimeUnit.SECONDS,
|
||||
new LinkedBlockingQueue<Runnable>(emailConfig.getThreadQueueCapacity()));
|
||||
}
|
||||
|
||||
private static final String EMAIL_URI_SCHEME = "mailto:";
|
||||
|
||||
private static Log log = LogFactory.getLog(EmailServiceProviderImpl.class);
|
||||
|
||||
public EmailServiceProviderImpl() {
|
||||
init();
|
||||
}
|
||||
|
||||
private void init() {
|
||||
if (threadPoolExecutor == null) {
|
||||
DeviceManagementConfig config = DeviceConfigurationManager.getInstance().getDeviceManagementConfig();
|
||||
EmailConfigurations emailConfigurations = config.getDeviceManagementConfigRepository()
|
||||
.getEmailConfigurations();
|
||||
|
||||
|
||||
threadPoolExecutor = new ThreadPoolExecutor(emailConfigurations.getMinNumOfThread(),
|
||||
emailConfigurations.getMaxNumOfThread(), emailConfigurations.getKeepAliveTime(),TimeUnit.SECONDS,
|
||||
new LinkedBlockingQueue<Runnable>(emailConfigurations.getThreadQueueCapacity()));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendEmail(EmailMessageProperties emailMessageProperties) throws DeviceManagementException {
|
||||
for (String toAddr : emailMessageProperties.getMailTo()) {
|
||||
@ -78,7 +71,7 @@ public class EmailServiceProviderImpl implements EmailService {
|
||||
}
|
||||
}
|
||||
|
||||
class EmailSender implements Runnable {
|
||||
public static class EmailSender implements Runnable {
|
||||
|
||||
String to;
|
||||
String subject;
|
||||
|
||||
@ -39,9 +39,6 @@ import java.util.Locale;
|
||||
|
||||
public class LicenseManagerImpl implements LicenseManager {
|
||||
|
||||
private static Log log = LogFactory.getLog(DeviceManagementProviderServiceImpl.class);
|
||||
private static final DateFormat format = new SimpleDateFormat("dd-mm-yyyy", Locale.ENGLISH);
|
||||
|
||||
@Override
|
||||
public License getLicense(final String deviceType, final String languageCode) throws LicenseManagementException {
|
||||
GenericArtifactManager artifactManager =
|
||||
@ -78,6 +75,8 @@ public class LicenseManagerImpl implements LicenseManager {
|
||||
license.setVersion(artifact.getAttribute(DeviceManagementConstants.LicenseProperties.VERSION));
|
||||
license.setLanguage(artifact.getAttribute(DeviceManagementConstants.LicenseProperties.LANGUAGE));
|
||||
license.setText(artifact.getAttribute(DeviceManagementConstants.LicenseProperties.TEXT));
|
||||
|
||||
DateFormat format = new SimpleDateFormat("dd-mm-yyyy", Locale.ENGLISH);
|
||||
license.setValidFrom(format.parse(artifact.getAttribute(
|
||||
DeviceManagementConstants.LicenseProperties.VALID_FROM)));
|
||||
license.setValidTo(format.parse(artifact.getAttribute(
|
||||
|
||||
@ -40,7 +40,7 @@ public class ConfigOperation extends Operation {
|
||||
properties.add(new Property(name, value, type));
|
||||
}
|
||||
|
||||
public class Property implements Serializable {
|
||||
public static class Property implements Serializable {
|
||||
private String name;
|
||||
private Object value;
|
||||
private Class<?> type;
|
||||
|
||||
@ -20,6 +20,8 @@ package org.wso2.carbon.device.mgt.core.operation.mgt;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceManagementException;
|
||||
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
||||
@ -28,7 +30,6 @@ import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManager;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.core.operation.mgt.dao.OperationDAO;
|
||||
import org.wso2.carbon.device.mgt.core.operation.mgt.dao.OperationManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.operation.mgt.dao.OperationManagementDAOFactory;
|
||||
@ -69,11 +70,11 @@ public class OperationManagerImpl implements OperationManager {
|
||||
|
||||
@Override
|
||||
public boolean addOperation(Operation operation,
|
||||
List<DeviceIdentifier> deviceIdentifiers) throws OperationManagementException {
|
||||
List<DeviceIdentifier> deviceIds) throws OperationManagementException {
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("operation:[" + operation.toString() + "]");
|
||||
for (DeviceIdentifier deviceIdentifier : deviceIdentifiers) {
|
||||
for (DeviceIdentifier deviceIdentifier : deviceIds) {
|
||||
log.debug("device identifier id:[" + deviceIdentifier.getId() + "] type:[" + deviceIdentifier.getType()
|
||||
+ "]");
|
||||
}
|
||||
@ -86,12 +87,13 @@ public class OperationManagerImpl implements OperationManager {
|
||||
int operationId = this.lookupOperationDAO(operation).addOperation(operationDto);
|
||||
|
||||
Device device;
|
||||
for (DeviceIdentifier deviceIdentifier : deviceIdentifiers) {
|
||||
device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
for (DeviceIdentifier deviceId : deviceIds) {
|
||||
device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
if (device == null) {
|
||||
String errorMsg = "The operation not added for device.The device not found for " +
|
||||
"device Identifier type -'" + deviceIdentifier.getType() + "' and device Id '" +
|
||||
deviceIdentifier.getId();
|
||||
"device Identifier type -'" + deviceId.getType() + "' and device Id '" +
|
||||
deviceId.getId();
|
||||
log.info(errorMsg);
|
||||
} else {
|
||||
operationMappingDAO.addOperationMapping(operationId, device.getId());
|
||||
@ -117,21 +119,21 @@ public class OperationManagerImpl implements OperationManager {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends Operation> getOperations(DeviceIdentifier deviceIdentifier)
|
||||
throws OperationManagementException {
|
||||
public List<? extends Operation> getOperations(DeviceIdentifier deviceId) throws OperationManagementException {
|
||||
|
||||
try {
|
||||
List<Operation> operations = new ArrayList<Operation>();
|
||||
Device device = null;
|
||||
|
||||
try {
|
||||
device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (device == null) {
|
||||
throw new OperationManagementException("Device not found for given device " +
|
||||
"Identifier:" + deviceIdentifier.getId() + " and given type" + deviceIdentifier.getType());
|
||||
"Identifier:" + deviceId.getId() + " and given type" + deviceId.getType());
|
||||
}
|
||||
List<? extends org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation> operationList = operationDAO
|
||||
.getOperationsForDevice(device.getId());
|
||||
@ -143,17 +145,17 @@ public class OperationManagerImpl implements OperationManager {
|
||||
return operations;
|
||||
} catch (OperationManagementDAOException e) {
|
||||
throw new OperationManagementException("Error occurred while retrieving the list of " +
|
||||
"operations assigned for '" + deviceIdentifier.getType() + "' device '" + deviceIdentifier.getId()
|
||||
"operations assigned for '" + deviceId.getType() + "' device '" + deviceId.getId()
|
||||
+ "'", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends Operation> getPendingOperations(DeviceIdentifier deviceIdentifier)
|
||||
throws OperationManagementException {
|
||||
public List<? extends Operation> getPendingOperations(
|
||||
DeviceIdentifier deviceId) throws OperationManagementException {
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Device identifier id:[" + deviceIdentifier.getId() + "] type:[" + deviceIdentifier.getType()
|
||||
log.debug("Device identifier id:[" + deviceId.getId() + "] type:[" + deviceId.getType()
|
||||
+ "]");
|
||||
}
|
||||
|
||||
@ -164,12 +166,12 @@ public class OperationManagerImpl implements OperationManager {
|
||||
new ArrayList<org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation>();
|
||||
|
||||
try {
|
||||
|
||||
device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
|
||||
if (device == null) {
|
||||
throw new OperationManagementException("Device not found for given device " +
|
||||
"Identifier:" + deviceIdentifier.getId() + " and given type:" + deviceIdentifier.getType());
|
||||
"Identifier:" + deviceId.getId() + " and given type:" + deviceId.getType());
|
||||
}
|
||||
|
||||
dtoOperationList.addAll(commandOperationDAO.getOperationsByDeviceAndStatus(device.getId(),
|
||||
@ -193,32 +195,33 @@ public class OperationManagerImpl implements OperationManager {
|
||||
return operations;
|
||||
} catch (OperationManagementDAOException e) {
|
||||
throw new OperationManagementException("Error occurred while retrieving the list of " +
|
||||
"pending operations assigned for '" + deviceIdentifier.getType() + "' device '" +
|
||||
deviceIdentifier.getId() + "'", e);
|
||||
"pending operations assigned for '" + deviceId.getType() + "' device '" +
|
||||
deviceId.getId() + "'", e);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
String errorMsg = "Error occurred while retrieving the device " +
|
||||
"for device Identifier type -'" + deviceIdentifier.getType() + "' and device Id '"
|
||||
+ deviceIdentifier.getId();
|
||||
"for device Identifier type -'" + deviceId.getType() + "' and device Id '"
|
||||
+ deviceId.getId();
|
||||
log.error(errorMsg, e);
|
||||
throw new OperationManagementException(errorMsg, e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Operation getNextPendingOperation(DeviceIdentifier deviceIdentifier) throws OperationManagementException {
|
||||
public Operation getNextPendingOperation(DeviceIdentifier deviceId) throws OperationManagementException {
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("device identifier id:[" + deviceIdentifier.getId() + "] type:[" + deviceIdentifier.getType()
|
||||
log.debug("device identifier id:[" + deviceId.getId() + "] type:[" + deviceId.getType()
|
||||
+ "]");
|
||||
}
|
||||
Operation operation = null;
|
||||
Device device;
|
||||
try {
|
||||
device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
|
||||
if (device == null) {
|
||||
throw new OperationManagementException("Device not found for given device " +
|
||||
"Identifier:" + deviceIdentifier.getId() + " and given type" + deviceIdentifier.getType());
|
||||
"Identifier:" + deviceId.getId() + " and given type" + deviceId.getType());
|
||||
}
|
||||
org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation dtoOperation = operationDAO
|
||||
.getNextOperation(device.getId());
|
||||
@ -247,15 +250,15 @@ public class OperationManagerImpl implements OperationManager {
|
||||
throw new OperationManagementException("Error occurred while retrieving next pending operation", e);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
String errorMsg = "Error occurred while retrieving the device " +
|
||||
"for device Identifier type -'" + deviceIdentifier.getType() + "' and device Id '"
|
||||
+ deviceIdentifier.getId();
|
||||
"for device Identifier type -'" + deviceId.getType() + "' and device Id '"
|
||||
+ deviceId.getId();
|
||||
log.error(errorMsg, e);
|
||||
throw new OperationManagementException(errorMsg, e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateOperation(DeviceIdentifier deviceIdentifier, int operationId, Operation.Status operationStatus)
|
||||
public void updateOperation(DeviceIdentifier deviceId, int operationId, Operation.Status operationStatus)
|
||||
throws OperationManagementException {
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
@ -271,7 +274,8 @@ public class OperationManagerImpl implements OperationManager {
|
||||
}
|
||||
dtoOperation.setStatus(org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation.Status.valueOf
|
||||
(operationStatus.toString()));
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
|
||||
OperationManagementDAOFactory.beginTransaction();
|
||||
operationDAO.updateOperation(dtoOperation);
|
||||
@ -288,8 +292,8 @@ public class OperationManagerImpl implements OperationManager {
|
||||
log.error("Error occurred while updating the operation: " + operationId + " status:" + operationStatus, ex);
|
||||
throw new OperationManagementException("Error occurred while update operation", ex);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while fetch the device for device identifier: " + deviceIdentifier.getId() + " " +
|
||||
"type:" + deviceIdentifier.getType(), e);
|
||||
log.error("Error occurred while fetch the device for device identifier: " + deviceId.getId() + " " +
|
||||
"type:" + deviceId.getType(), e);
|
||||
throw new OperationManagementException("Error occurred while update operation", e);
|
||||
}
|
||||
}
|
||||
@ -321,24 +325,22 @@ public class OperationManagerImpl implements OperationManager {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Operation getOperationByDeviceAndOperationId(DeviceIdentifier deviceIdentifier, int operationId)
|
||||
public Operation getOperationByDeviceAndOperationId(DeviceIdentifier deviceId, int operationId)
|
||||
throws OperationManagementException {
|
||||
|
||||
Device device;
|
||||
Operation operation;
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug(
|
||||
"Operation Id:" + operationId + " Device Type:" + deviceIdentifier.getType() + " Device Identifier:"
|
||||
+
|
||||
deviceIdentifier.getId());
|
||||
log.debug("Operation Id:" + operationId + " Device Type:" + deviceId.getType() + " Device Identifier:" +
|
||||
deviceId.getId());
|
||||
}
|
||||
|
||||
try {
|
||||
device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
if (device == null) {
|
||||
throw new OperationManagementException("Device not found for given device identifier:" +
|
||||
deviceIdentifier.getId() + " type:" + deviceIdentifier.getType());
|
||||
deviceId.getId() + " type:" + deviceId.getType());
|
||||
}
|
||||
org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation dtoOperation = operationDAO
|
||||
.getOperationByDeviceAndId(device.getId(), operationId);
|
||||
@ -368,12 +370,12 @@ public class OperationManagerImpl implements OperationManager {
|
||||
operation = OperationDAOUtil.convertOperation(dtoOperation);
|
||||
} catch (OperationManagementDAOException e) {
|
||||
throw new OperationManagementException("Error occurred while retrieving the list of " +
|
||||
"operations assigned for '" + deviceIdentifier.getType() + "' device '" + deviceIdentifier.getId()
|
||||
"operations assigned for '" + deviceId.getType() + "' device '" + deviceId.getId()
|
||||
+ "'", e);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
String errorMsg = "Error occurred while retrieving the device " +
|
||||
"for device Identifier type -'" + deviceIdentifier.getType() + "' and device Id '"
|
||||
+ deviceIdentifier.getId();
|
||||
"for device Identifier type -'" + deviceId.getType() + "' and device Id '"
|
||||
+ deviceId.getId();
|
||||
log.error(errorMsg, e);
|
||||
throw new OperationManagementException(errorMsg, e);
|
||||
}
|
||||
@ -381,19 +383,20 @@ public class OperationManagerImpl implements OperationManager {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends Operation> getOperationsByDeviceAndStatus(DeviceIdentifier identifier,
|
||||
Operation.Status status) throws OperationManagementException, DeviceManagementException {
|
||||
public List<? extends Operation> getOperationsByDeviceAndStatus(
|
||||
DeviceIdentifier deviceId, Operation.Status status) throws OperationManagementException {
|
||||
|
||||
try {
|
||||
List<Operation> operations = new ArrayList<Operation>();
|
||||
List<org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation> dtoOperationList =
|
||||
new ArrayList<org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation>();
|
||||
|
||||
Device device = deviceDAO.getDevice(identifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
|
||||
if (device == null) {
|
||||
throw new DeviceManagementException("Device not found for device id:" + identifier.getId() + " " +
|
||||
"type:" + identifier.getType());
|
||||
throw new OperationManagementException("Device not found for device id:" + deviceId.getId() + " " +
|
||||
"type:" + deviceId.getType());
|
||||
}
|
||||
|
||||
org.wso2.carbon.device.mgt.core.dto.operation.mgt.Operation.Status dtoOpStatus = org.wso2.carbon.device
|
||||
@ -418,11 +421,11 @@ public class OperationManagerImpl implements OperationManager {
|
||||
return operations;
|
||||
} catch (OperationManagementDAOException e) {
|
||||
throw new OperationManagementException("Error occurred while retrieving the list of " +
|
||||
"operations assigned for '" + identifier.getType() + "' device '" +
|
||||
identifier.getId() + "' and status:" + status.toString(), e);
|
||||
"operations assigned for '" + deviceId.getType() + "' device '" +
|
||||
deviceId.getId() + "' and status:" + status.toString(), e);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
String errorMsg = "Error occurred while retrieving the device " +
|
||||
"for device Identifier type -'" + identifier.getType() + "' and device Id '" + identifier.getId();
|
||||
"for device Identifier type -'" + deviceId.getType() + "' and device Id '" + deviceId.getId();
|
||||
log.error(errorMsg, e);
|
||||
throw new OperationManagementException(errorMsg, e);
|
||||
}
|
||||
@ -493,4 +496,5 @@ public class OperationManagerImpl implements OperationManager {
|
||||
return operationDAO;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -176,8 +176,4 @@ public class OperationManagementDAOFactory {
|
||||
return dataSource;
|
||||
}
|
||||
|
||||
public static DataSource getDataSource() {
|
||||
return dataSource;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -19,9 +19,11 @@
|
||||
package org.wso2.carbon.device.mgt.core.operation.mgt.util;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Comparator;
|
||||
|
||||
public class OperationCreateTimeComparator implements Comparator<Operation>{
|
||||
public class OperationCreateTimeComparator implements Comparator<Operation>, Serializable {
|
||||
|
||||
@Override
|
||||
public int compare(Operation o1, Operation o2) {
|
||||
@ -30,5 +32,4 @@ public class OperationCreateTimeComparator implements Comparator<Operation>{
|
||||
return (int) (createdTime1 - createdTime2);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -33,8 +33,6 @@ public interface DeviceManagementProviderService extends DeviceManager, LicenseM
|
||||
|
||||
List<Device> getAllDevices() throws DeviceManagementException;
|
||||
|
||||
List<Device> getDeviceListOfUser(String username) throws DeviceManagementException;
|
||||
|
||||
void sendEnrolmentInvitation(EmailMessageProperties config) throws DeviceManagementException;
|
||||
|
||||
void sendRegistrationEmail(EmailMessageProperties config) throws DeviceManagementException;
|
||||
@ -49,7 +47,7 @@ public interface DeviceManagementProviderService extends DeviceManager, LicenseM
|
||||
* @throws DeviceManagementException If some unusual behaviour is observed while fetching the
|
||||
* device list
|
||||
*/
|
||||
List<Device> getAllDevicesOfUser(String userName) throws DeviceManagementException;
|
||||
List<Device> getDevicesOfUser(String userName) throws DeviceManagementException;
|
||||
|
||||
/**
|
||||
* Method to get the list of devices owned by users of a particular user-role.
|
||||
@ -77,6 +75,6 @@ public interface DeviceManagementProviderService extends DeviceManager, LicenseM
|
||||
* @throws DeviceManagementException If some unusual behaviour is observed while fetching the
|
||||
* device list
|
||||
*/
|
||||
List<Device> getDevicesByName(String deviceName, int tenantId) throws DeviceManagementException;
|
||||
List<Device> getDevicesByName(String deviceName) throws DeviceManagementException;
|
||||
|
||||
}
|
||||
|
||||
@ -19,6 +19,7 @@ package org.wso2.carbon.device.mgt.core.service;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.*;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.license.mgt.License;
|
||||
@ -28,10 +29,7 @@ import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementExcept
|
||||
import org.wso2.carbon.device.mgt.core.DeviceManagementRepository;
|
||||
import org.wso2.carbon.device.mgt.core.config.DeviceConfigurationManager;
|
||||
import org.wso2.carbon.device.mgt.core.config.email.NotificationMessages;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceTypeDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.*;
|
||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||
import org.wso2.carbon.device.mgt.core.dto.*;
|
||||
import org.wso2.carbon.device.mgt.core.email.EmailConstants;
|
||||
@ -49,6 +47,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
|
||||
private DeviceDAO deviceDAO;
|
||||
private DeviceTypeDAO deviceTypeDAO;
|
||||
private EnrollmentDAO enrollmentDAO;
|
||||
private DeviceManagementRepository pluginRepository;
|
||||
|
||||
private static Log log = LogFactory.getLog(DeviceManagementProviderServiceImpl.class);
|
||||
@ -57,11 +56,11 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
this.pluginRepository = pluginRepository;
|
||||
this.deviceDAO = DeviceManagementDAOFactory.getDeviceDAO();
|
||||
this.deviceTypeDAO = DeviceManagementDAOFactory.getDeviceTypeDAO();
|
||||
this.enrollmentDAO = DeviceManagementDAOFactory.getEnrollmentDAO();
|
||||
}
|
||||
|
||||
public DeviceManagementProviderServiceImpl() {
|
||||
this.deviceDAO = DeviceManagementDAOFactory.getDeviceDAO();
|
||||
this.deviceTypeDAO = DeviceManagementDAOFactory.getDeviceTypeDAO();
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -77,28 +76,43 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
@Override
|
||||
public FeatureManager getFeatureManager(String type) {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(type);
|
||||
this.getPluginRepository().getDeviceManagementService(type);
|
||||
return dms.getFeatureManager();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean enrollDevice(Device device) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(device.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType());
|
||||
boolean status = dms.enrollDevice(device);
|
||||
try {
|
||||
org.wso2.carbon.device.mgt.core.dto.Device deviceDto = DeviceManagementDAOUtil.convertDevice(device);
|
||||
DeviceType deviceType = this.getDeviceTypeDAO().getDeviceType(device.getType());
|
||||
if (dms.isClaimable(new DeviceIdentifier(device.getDeviceIdentifier(), deviceType.getName()))) {
|
||||
deviceDto.setStatus(Device.Status.INACTIVE);
|
||||
if (dms.isClaimable(new DeviceIdentifier(device.getDeviceIdentifier(), device.getDeviceType()))) {
|
||||
device.setStatus(Device.Status.INACTIVE);
|
||||
} else {
|
||||
deviceDto.setStatus(Device.Status.ACTIVE);
|
||||
device.setStatus(Device.Status.ACTIVE);
|
||||
}
|
||||
deviceDto.setDeviceTypeId(deviceType.getId());
|
||||
this.getDeviceDAO().addDevice(deviceDto);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
|
||||
DeviceManagementDAOFactory.beginTransaction();
|
||||
|
||||
DeviceType type = deviceTypeDAO.getDeviceType(device.getType());
|
||||
deviceDAO.addDevice(type.getId(), device, tenantId);
|
||||
|
||||
DeviceManagementDAOFactory.commitTransaction();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
try {
|
||||
DeviceManagementDAOFactory.rollbackTransaction();
|
||||
} catch (DeviceManagementDAOException e1) {
|
||||
log.warn("Error occurred while rollbacking the current transaction", e);
|
||||
}
|
||||
throw new DeviceManagementException("Error occurred while enrolling the device " +
|
||||
"'" + device.getId() + "'", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
return status;
|
||||
}
|
||||
@ -106,13 +120,31 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
@Override
|
||||
public boolean modifyEnrollment(Device device) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(device.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType());
|
||||
boolean status = dms.modifyEnrollment(device);
|
||||
try {
|
||||
this.getDeviceDAO().updateDevice(DeviceManagementDAOUtil.convertDevice(device));
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
|
||||
DeviceManagementDAOFactory.beginTransaction();
|
||||
|
||||
DeviceType type = deviceTypeDAO.getDeviceType(device.getType());
|
||||
deviceDAO.updateDevice(type.getId(), device, tenantId);
|
||||
|
||||
DeviceManagementDAOFactory.commitTransaction();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
try {
|
||||
DeviceManagementDAOFactory.rollbackTransaction();
|
||||
} catch (DeviceManagementDAOException e1) {
|
||||
log.warn("Error occurred while rollbacking the current transaction", e);
|
||||
}
|
||||
throw new DeviceManagementException("Error occurred while modifying the device " +
|
||||
"'" + device.getId() + "'", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
return status;
|
||||
}
|
||||
@ -120,21 +152,21 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
@Override
|
||||
public boolean disenrollDevice(DeviceIdentifier deviceId) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
return dms.disenrollDevice(deviceId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isEnrolled(DeviceIdentifier deviceId) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
return dms.isEnrolled(deviceId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isActive(DeviceIdentifier deviceId) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
return dms.isActive(deviceId);
|
||||
}
|
||||
|
||||
@ -142,93 +174,67 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
public boolean setActive(DeviceIdentifier deviceId, boolean status)
|
||||
throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
return dms.setActive(deviceId, status);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getAllDevices() throws DeviceManagementException {
|
||||
List<Device> convertedDevicesList = new ArrayList<Device>();
|
||||
List<Device> devices = new ArrayList<Device>();
|
||||
List<Device> allDevices;
|
||||
try {
|
||||
List<org.wso2.carbon.device.mgt.core.dto.Device> devicesList = this.deviceDAO.getDevices();
|
||||
for (int x = 0; x < devicesList.size(); x++) {
|
||||
org.wso2.carbon.device.mgt.core.dto.Device device = devicesList.get(x);
|
||||
device.setDeviceType(deviceTypeDAO.getDeviceType(device.getDeviceTypeId()));
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(device.getDeviceType().getName());
|
||||
DeviceType deviceType = this.deviceTypeDAO.getDeviceType(device.getDeviceTypeId());
|
||||
Device convertedDevice = DeviceManagementDAOUtil.convertDevice(device, deviceType);
|
||||
DeviceIdentifier deviceIdentifier =
|
||||
DeviceManagementDAOUtil.createDeviceIdentifier(device, deviceType);
|
||||
Device dmsDevice = dms.getDevice(deviceIdentifier);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
}
|
||||
convertedDevicesList.add(convertedDevice);
|
||||
}
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
DeviceManagementDAOFactory.getConnection();
|
||||
allDevices = deviceDAO.getDevices(tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
throw new DeviceManagementException("Error occurred while obtaining devices all devices", e);
|
||||
throw new DeviceManagementException("Error occurred while retrieving device list pertaining to " +
|
||||
"the current tenant", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
return convertedDevicesList;
|
||||
}
|
||||
for (Device device : allDevices) {
|
||||
Device dmsDevice =
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType()).getDevice(
|
||||
new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
||||
device.setFeatures(dmsDevice.getFeatures());
|
||||
device.setProperties(dmsDevice.getProperties());
|
||||
devices.add(device);
|
||||
}
|
||||
return devices;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getAllDevices(String type) throws DeviceManagementException {
|
||||
DeviceManager dms = this.getPluginRepository().getDeviceManagementProvider(type);
|
||||
List<Device> devicesList = new ArrayList<Device>();
|
||||
List<Device> devices = new ArrayList<Device>();
|
||||
List<Device> allDevices;
|
||||
try {
|
||||
DeviceType dt = this.getDeviceTypeDAO().getDeviceType(type);
|
||||
List<org.wso2.carbon.device.mgt.core.dto.Device> devices =
|
||||
this.getDeviceDAO().getDevices(dt.getId());
|
||||
|
||||
for (org.wso2.carbon.device.mgt.core.dto.Device device : devices) {
|
||||
DeviceType deviceType = this.deviceTypeDAO.getDeviceType(device.getDeviceTypeId());
|
||||
Device convertedDevice = DeviceManagementDAOUtil.convertDevice(device, deviceType);
|
||||
DeviceIdentifier deviceIdentifier =
|
||||
DeviceManagementDAOUtil.createDeviceIdentifier(device, deviceType);
|
||||
Device dmsDevice = dms.getDevice(deviceIdentifier);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
}
|
||||
devicesList.add(convertedDevice);
|
||||
}
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
DeviceManagementDAOFactory.getConnection();
|
||||
allDevices = deviceDAO.getDevices(type, tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
throw new DeviceManagementException("Error occurred while obtaining the device for type " +
|
||||
"'" + type + "'", e);
|
||||
throw new DeviceManagementException("Error occurred while retrieving all devices of type '" +
|
||||
type + "' that are being managed within the scope of current tenant", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
return devicesList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDeviceListOfUser(String username) throws DeviceManagementException {
|
||||
List<Device> devicesOfUser = new ArrayList<Device>();
|
||||
try {
|
||||
int tenantId = DeviceManagerUtil.getTenantId();
|
||||
List<org.wso2.carbon.device.mgt.core.dto.Device> devicesList = this.deviceDAO
|
||||
.getDeviceListOfUser(username, tenantId);
|
||||
for (int x = 0; x < devicesList.size(); x++) {
|
||||
org.wso2.carbon.device.mgt.core.dto.Device device = devicesList.get(x);
|
||||
device.setDeviceType(deviceTypeDAO.getDeviceType(device.getDeviceTypeId()));
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(device.getDeviceType().getName());
|
||||
Device convertedDevice = DeviceManagementDAOUtil.convertDevice(device, device.getDeviceType());
|
||||
DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
|
||||
deviceIdentifier.setId(device.getDeviceIdentificationId());
|
||||
deviceIdentifier.setType(device.getDeviceType().getName());
|
||||
Device dmsDevice = dms.getDevice(deviceIdentifier);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
for (Device device : allDevices) {
|
||||
Device dmsDevice =
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType()).getDevice(
|
||||
new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
||||
device.setFeatures(dmsDevice.getFeatures());
|
||||
device.setProperties(dmsDevice.getProperties());
|
||||
devices.add(device);
|
||||
}
|
||||
devicesOfUser.add(convertedDevice);
|
||||
}
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
throw new DeviceManagementException("Error occurred while obtaining devices for user " +
|
||||
"'" + username + "'", e);
|
||||
}
|
||||
return devicesOfUser;
|
||||
return devices;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -356,34 +362,33 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
|
||||
@Override
|
||||
public Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException {
|
||||
|
||||
DeviceManager dms = this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
Device convertedDevice = null;
|
||||
Device device;
|
||||
try {
|
||||
DeviceType deviceType =
|
||||
this.getDeviceTypeDAO().getDeviceType(deviceId.getType());
|
||||
org.wso2.carbon.device.mgt.core.dto.Device device =
|
||||
this.getDeviceDAO().getDevice(deviceId);
|
||||
if (device != null) {
|
||||
convertedDevice = DeviceManagementDAOUtil
|
||||
.convertDevice(device, this.getDeviceTypeDAO().getDeviceType(deviceType.getId()));
|
||||
Device dmsDevice = dms.getDevice(deviceId);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
}
|
||||
}
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
throw new DeviceManagementException("Error occurred while obtaining the device for id " +
|
||||
"'" + deviceId.getId() + "'", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
return convertedDevice;
|
||||
}
|
||||
if (device != null) {
|
||||
DeviceManager dms = this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
Device pluginSpecificInfo = dms.getDevice(deviceId);
|
||||
device.setProperties(pluginSpecificInfo.getProperties());
|
||||
device.setFeatures(pluginSpecificInfo.getFeatures());
|
||||
}
|
||||
return device;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(device.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType());
|
||||
return dms.updateDeviceInfo(deviceIdentifier, device);
|
||||
}
|
||||
|
||||
@ -391,17 +396,45 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType)
|
||||
throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
return dms.setOwnership(deviceId, ownershipType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isClaimable(DeviceIdentifier deviceId) throws DeviceManagementException {
|
||||
DeviceManager dms =
|
||||
this.getPluginRepository().getDeviceManagementProvider(deviceId.getType());
|
||||
this.getPluginRepository().getDeviceManagementService(deviceId.getType());
|
||||
return dms.isClaimable(deviceId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setStatus(DeviceIdentifier deviceId, String currentOwner,
|
||||
EnrollmentStatus status) throws DeviceManagementException {
|
||||
try {
|
||||
DeviceManagementDAOFactory.beginTransaction();
|
||||
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceId, tenantId);
|
||||
boolean success = enrollmentDAO.setStatus(device.getId(), currentOwner, status.toString());
|
||||
|
||||
DeviceManagementDAOFactory.commitTransaction();
|
||||
return success;
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
try {
|
||||
DeviceManagementDAOFactory.rollbackTransaction();
|
||||
} catch (DeviceManagementDAOException e1) {
|
||||
log.warn("Error occurred while rollbacking the current transaction", e);
|
||||
}
|
||||
throw new DeviceManagementException("Error occurred while setting enrollment status", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public License getLicense(String deviceType, String languageCode) throws LicenseManagementException {
|
||||
return DeviceManagementDataHolder.getInstance().getLicenseManager().getLicense(deviceType, languageCode);
|
||||
@ -412,15 +445,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
return DeviceManagementDataHolder.getInstance().getLicenseManager().addLicense(type, license);
|
||||
}
|
||||
|
||||
public DeviceDAO getDeviceDAO() {
|
||||
return deviceDAO;
|
||||
}
|
||||
|
||||
public DeviceTypeDAO getDeviceTypeDAO() {
|
||||
return deviceTypeDAO;
|
||||
}
|
||||
|
||||
public DeviceManagementRepository getPluginRepository() {
|
||||
private DeviceManagementRepository getPluginRepository() {
|
||||
return pluginRepository;
|
||||
}
|
||||
|
||||
@ -466,10 +491,11 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends Operation> getOperationsByDeviceAndStatus(DeviceIdentifier identifier,
|
||||
public List<? extends Operation> getOperationsByDeviceAndStatus(
|
||||
DeviceIdentifier identifier,
|
||||
Operation.Status status) throws OperationManagementException, DeviceManagementException {
|
||||
return DeviceManagementDataHolder.getInstance().getOperationManager().getOperationsByDeviceAndStatus(identifier,
|
||||
status);
|
||||
return DeviceManagementDataHolder.getInstance().getOperationManager().getOperationsByDeviceAndStatus(
|
||||
identifier, status);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -478,62 +504,42 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getAllDevicesOfUser(String userName)
|
||||
throws DeviceManagementException {
|
||||
List<Device> devicesOfUser = new ArrayList<Device>();
|
||||
List<org.wso2.carbon.device.mgt.core.dto.Device> devices;
|
||||
Device convertedDevice;
|
||||
DeviceIdentifier deviceIdentifier;
|
||||
DeviceManager dms;
|
||||
Device dmsDevice;
|
||||
org.wso2.carbon.device.mgt.core.dto.Device device;
|
||||
int tenantId = DeviceManagerUtil.getTenantId();
|
||||
//Fetch the DeviceList from Core
|
||||
public List<Device> getDevicesOfUser(String username) throws DeviceManagementException {
|
||||
List<Device> devices = new ArrayList<Device>();
|
||||
List<Device> userDevices;
|
||||
try {
|
||||
devices = this.getDeviceDAO().getDeviceListOfUser(userName, tenantId);
|
||||
DeviceManagementDAOFactory.getConnection();
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
userDevices = deviceDAO.getDeviceListOfUser(username, tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
throw new DeviceManagementException("Error occurred while obtaining the devices of user '"
|
||||
+ userName + "'", e);
|
||||
throw new DeviceManagementException("Error occurred while retrieving the list of devices that " +
|
||||
"belong to the user '" + username + "'", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
|
||||
//Fetch the DeviceList from device plugin dbs & append the properties
|
||||
for (org.wso2.carbon.device.mgt.core.dto.Device aDevicesList : devices) {
|
||||
device = aDevicesList;
|
||||
try {
|
||||
//TODO : Possible improvement if DeviceTypes have been cached
|
||||
device.setDeviceType(deviceTypeDAO.getDeviceType(device.getDeviceTypeId()));
|
||||
dms = this.getPluginRepository().getDeviceManagementProvider(device.getDeviceType().getName());
|
||||
convertedDevice = DeviceManagementDAOUtil.convertDevice(device, device.getDeviceType());
|
||||
deviceIdentifier = new DeviceIdentifier();
|
||||
deviceIdentifier.setId(device.getDeviceIdentificationId());
|
||||
deviceIdentifier.setType(device.getDeviceType().getName());
|
||||
dmsDevice = dms.getDevice(deviceIdentifier);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
for (Device device : userDevices) {
|
||||
Device dmsDevice =
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType()).getDevice(
|
||||
new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
||||
device.setFeatures(dmsDevice.getFeatures());
|
||||
device.setProperties(dmsDevice.getProperties());
|
||||
devices.add(device);
|
||||
}
|
||||
devicesOfUser.add(convertedDevice);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while obtaining the device type of DeviceTypeId '" +
|
||||
device.getDeviceTypeId() + "'", e);
|
||||
}
|
||||
}
|
||||
return devicesOfUser;
|
||||
return devices;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getAllDevicesOfRole(String roleName)
|
||||
throws DeviceManagementException {
|
||||
List<Device> devicesOfRole = new ArrayList<Device>();
|
||||
List<org.wso2.carbon.device.mgt.core.dto.Device> devicesList;
|
||||
public List<Device> getAllDevicesOfRole(String roleName) throws DeviceManagementException {
|
||||
List<Device> devices = new ArrayList<Device>();
|
||||
List<org.wso2.carbon.device.mgt.user.common.User> users;
|
||||
Device convertedDevice;
|
||||
DeviceIdentifier deviceIdentifier;
|
||||
DeviceManager dms;
|
||||
Device dmsDevice;
|
||||
org.wso2.carbon.device.mgt.core.dto.Device device;
|
||||
String userName = "";
|
||||
int tenantId = DeviceManagerUtil.getTenantId();
|
||||
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
//Obtaining the list of users of role
|
||||
try {
|
||||
users = DeviceManagementDataHolder.getInstance().getUserManager().getUsersForTenantAndRole(
|
||||
@ -544,87 +550,81 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
||||
}
|
||||
|
||||
//Obtaining the devices per user
|
||||
List<Device> userDevices;
|
||||
for (org.wso2.carbon.device.mgt.user.common.User user : users) {
|
||||
String username = null;
|
||||
userDevices = new ArrayList<Device>();
|
||||
try {
|
||||
userName = user.getUserName();
|
||||
devicesList = this.getDeviceDAO().getDeviceListOfUser(userName, tenantId);
|
||||
for (int x = 0; x < devicesList.size(); x++) {
|
||||
device = devicesList.get(x);
|
||||
DeviceManagementDAOFactory.getConnection();
|
||||
username = user.getUserName();
|
||||
userDevices = deviceDAO.getDeviceListOfUser(username, tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while obtaining the devices of user '" + username + "'", e);
|
||||
} finally {
|
||||
try {
|
||||
//TODO : Possible improvement if DeviceTypes have been cached
|
||||
device.setDeviceType(deviceTypeDAO.getDeviceType(device.getDeviceTypeId()));
|
||||
dms = this.getPluginRepository().getDeviceManagementProvider(device.getDeviceType().getName());
|
||||
convertedDevice = DeviceManagementDAOUtil.convertDevice(device, device.getDeviceType());
|
||||
deviceIdentifier = new DeviceIdentifier();
|
||||
deviceIdentifier.setId(device.getDeviceIdentificationId());
|
||||
deviceIdentifier.setType(device.getDeviceType().getName());
|
||||
dmsDevice = dms.getDevice(deviceIdentifier);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
}
|
||||
devicesOfRole.add(convertedDevice);
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while obtaining the device type of DeviceTypeId '" +
|
||||
device.getDeviceTypeId() + "'", e);
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while obtaining the devices of user '"
|
||||
+ userName + "'", e);
|
||||
for (Device device : userDevices) {
|
||||
Device dmsDevice =
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType()).getDevice(
|
||||
new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
||||
device.setFeatures(dmsDevice.getFeatures());
|
||||
device.setProperties(dmsDevice.getProperties());
|
||||
devices.add(device);
|
||||
}
|
||||
|
||||
}
|
||||
return devicesOfRole;
|
||||
return devices;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getDeviceCount() throws DeviceManagementException {
|
||||
try {
|
||||
int deviceCount = this.deviceDAO.getDeviceCount();
|
||||
return deviceCount;
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
DeviceManagementDAOFactory.getConnection();
|
||||
return deviceDAO.getDeviceCount(tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while counting devices", e);
|
||||
throw new DeviceManagementException("Error occurred while counting devices", e);
|
||||
throw new DeviceManagementException("Error occurred while retrieving the device count", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDevicesByName(String deviceName, int tenantId) throws DeviceManagementException {
|
||||
List<Device> devicesOfUser = new ArrayList<Device>();
|
||||
List<org.wso2.carbon.device.mgt.core.dto.Device> devicesList;
|
||||
Device convertedDevice;
|
||||
DeviceIdentifier deviceIdentifier;
|
||||
DeviceManager dms;
|
||||
Device dmsDevice;
|
||||
org.wso2.carbon.device.mgt.core.dto.Device device;
|
||||
|
||||
public List<Device> getDevicesByName(String deviceName) throws DeviceManagementException {
|
||||
List<Device> devices = new ArrayList<Device>();
|
||||
List<Device> allDevices;
|
||||
try {
|
||||
devicesList = this.getDeviceDAO().getDevicesByName(deviceName, tenantId);
|
||||
DeviceManagementDAOFactory.getConnection();
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
allDevices = deviceDAO.getDevicesByName(deviceName, tenantId);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
throw new DeviceManagementException("Error occurred while fetching the list of devices that matches to '"
|
||||
+ deviceName + "'", e);
|
||||
} finally {
|
||||
try {
|
||||
DeviceManagementDAOFactory.closeConnection();
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.warn("Error occurred while closing the connection", e);
|
||||
}
|
||||
}
|
||||
for (Device device : allDevices) {
|
||||
Device dmsDevice =
|
||||
this.getPluginRepository().getDeviceManagementService(device.getType()).getDevice(
|
||||
new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
||||
device.setFeatures(dmsDevice.getFeatures());
|
||||
device.setProperties(dmsDevice.getProperties());
|
||||
devices.add(device);
|
||||
}
|
||||
return devices;
|
||||
|
||||
}
|
||||
|
||||
for (int x = 0; x < devicesList.size(); x++) {
|
||||
device = devicesList.get(x);
|
||||
try {
|
||||
device.setDeviceType(deviceTypeDAO.getDeviceType(device.getDeviceTypeId()));
|
||||
dms = this.getPluginRepository().getDeviceManagementProvider(device.getDeviceType().getName());
|
||||
convertedDevice = DeviceManagementDAOUtil.convertDevice(device, device.getDeviceType());
|
||||
deviceIdentifier = new DeviceIdentifier();
|
||||
deviceIdentifier.setId(device.getDeviceIdentificationId());
|
||||
deviceIdentifier.setType(device.getDeviceType().getName());
|
||||
dmsDevice = dms.getDevice(deviceIdentifier);
|
||||
if (dmsDevice != null) {
|
||||
convertedDevice.setProperties(dmsDevice.getProperties());
|
||||
convertedDevice.setFeatures(dmsDevice.getFeatures());
|
||||
}
|
||||
devicesOfUser.add(convertedDevice);
|
||||
} catch (DeviceManagementDAOException e) {
|
||||
log.error("Error occurred while obtaining the device type of DeviceTypeId '" +
|
||||
device.getDeviceTypeId() + "'", e);
|
||||
}
|
||||
}
|
||||
return devicesOfUser;
|
||||
}
|
||||
}
|
||||
|
||||
@ -42,7 +42,7 @@ public class DeviceManagementRepositoryTests {
|
||||
Assert.fail("Unexpected error occurred while invoking addDeviceManagementProvider functionality", e);
|
||||
}
|
||||
DeviceManager targetProvider =
|
||||
this.getRepository().getDeviceManagementProvider(TestDeviceManager.DEVICE_TYPE_TEST);
|
||||
this.getRepository().getDeviceManagementService(TestDeviceManager.DEVICE_TYPE_TEST);
|
||||
Assert.assertEquals(targetProvider.getProviderType(), sourceProvider.getProviderType());
|
||||
}
|
||||
|
||||
@ -55,7 +55,7 @@ public class DeviceManagementRepositoryTests {
|
||||
Assert.fail("Unexpected error occurred while invoking removeDeviceManagementProvider functionality", e);
|
||||
}
|
||||
DeviceManager targetProvider =
|
||||
this.getRepository().getDeviceManagementProvider(TestDeviceManager.DEVICE_TYPE_TEST);
|
||||
this.getRepository().getDeviceManagementService(TestDeviceManager.DEVICE_TYPE_TEST);
|
||||
Assert.assertNull(targetProvider);
|
||||
}
|
||||
|
||||
|
||||
@ -63,27 +63,27 @@ public class DeviceOperationManagementTests extends DeviceManagementBaseTest {
|
||||
DeviceManagementDataHolder.getInstance().setDeviceManagementProvider(new DeviceManagementProviderServiceImpl());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAddOperation() throws Exception {
|
||||
CommandOperation op = new CommandOperation();
|
||||
op.setEnabled(true);
|
||||
op.setType(Operation.Type.COMMAND);
|
||||
op.setCode("OPCODE1");
|
||||
|
||||
List<DeviceIdentifier> deviceIds = new ArrayList<DeviceIdentifier>();
|
||||
DeviceIdentifier deviceId = new DeviceIdentifier();
|
||||
deviceId.setId("4892813d-0b18-4a02-b7b1-61775257400e");
|
||||
deviceId.setType("android");
|
||||
deviceIds.add(deviceId);
|
||||
|
||||
try {
|
||||
boolean isAdded = operationManager.addOperation(op, deviceIds);
|
||||
Assert.assertTrue(isAdded);
|
||||
} catch (OperationManagementException e) {
|
||||
e.printStackTrace();
|
||||
throw new Exception(e);
|
||||
}
|
||||
}
|
||||
// @Test
|
||||
// public void testAddOperation() throws Exception {
|
||||
// CommandOperation op = new CommandOperation();
|
||||
// op.setEnabled(true);
|
||||
// op.setType(Operation.Type.COMMAND);
|
||||
// op.setCode("OPCODE1");
|
||||
//
|
||||
// List<DeviceIdentifier> deviceIds = new ArrayList<DeviceIdentifier>();
|
||||
// DeviceIdentifier deviceId = new DeviceIdentifier();
|
||||
// deviceId.setId("4892813d-0b18-4a02-b7b1-61775257400e");
|
||||
// deviceId.setType("android");
|
||||
// deviceIds.add(deviceId);
|
||||
//
|
||||
// try {
|
||||
// boolean isAdded = operationManager.addOperation(op, deviceIds);
|
||||
// Assert.assertTrue(isAdded);
|
||||
// } catch (OperationManagementException e) {
|
||||
// e.printStackTrace();
|
||||
// throw new Exception(e);
|
||||
// }
|
||||
// }
|
||||
|
||||
public void testGetOperations() {
|
||||
try {
|
||||
|
||||
@ -96,6 +96,11 @@ public class TestDeviceManager implements DeviceManagementService {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setStatus(DeviceIdentifier deviceId, String currentOwner, EnrollmentStatus status) throws DeviceManagementException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Application[] getApplications(String domain, int pageNumber,
|
||||
int size) throws ApplicationManagementException {
|
||||
|
||||
@ -27,14 +27,14 @@ import org.testng.annotations.BeforeClass;
|
||||
import org.testng.annotations.Parameters;
|
||||
import org.testng.annotations.Test;
|
||||
import org.w3c.dom.Document;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceManagementException;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device.OwnerShip;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceManagementException;
|
||||
import org.wso2.carbon.device.mgt.core.TestUtils;
|
||||
import org.wso2.carbon.device.mgt.core.common.DBTypes;
|
||||
import org.wso2.carbon.device.mgt.core.common.TestDBConfiguration;
|
||||
import org.wso2.carbon.device.mgt.core.common.TestDBConfigurations;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||
import org.wso2.carbon.device.mgt.core.util.DeviceManagerUtil;
|
||||
|
||||
@ -148,20 +148,18 @@ public class DeviceManagementDAOTests {
|
||||
DeviceDAO deviceMgtDAO = DeviceManagementDAOFactory.getDeviceDAO();
|
||||
|
||||
Device device = new Device();
|
||||
device.setDateOfEnrollment(new Date().getTime());
|
||||
device.setDateOfEnrolment(new Date().getTime());
|
||||
device.setDateOfLastUpdate(new Date().getTime());
|
||||
device.setDescription("test description");
|
||||
device.setStatus(Status.ACTIVE);
|
||||
device.setDeviceIdentificationId("111");
|
||||
device.setDeviceIdentifier("111");
|
||||
|
||||
DeviceType deviceType = new DeviceType();
|
||||
deviceType.setId(Integer.parseInt("1"));
|
||||
|
||||
device.setDeviceTypeId(deviceType.getId());
|
||||
device.setOwnerShip(OwnerShip.BYOD.toString());
|
||||
device.setOwnerId("111");
|
||||
device.setTenantId(-1234);
|
||||
deviceMgtDAO.addDevice(device);
|
||||
device.setOwnership(OwnerShip.BYOD.toString());
|
||||
device.setOwner("111");
|
||||
deviceMgtDAO.addDevice(deviceType.getId(), device, -1234);
|
||||
|
||||
Connection conn = null;
|
||||
PreparedStatement stmt = null;
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
CREATE TABLE IF NOT EXISTS DM_DEVICE_TYPE (
|
||||
ID INT auto_increment NOT NULL,
|
||||
ID INT AUTO_INCREMENT NOT NULL,
|
||||
NAME VARCHAR(300) NULL DEFAULT NULL,
|
||||
PRIMARY KEY (ID)
|
||||
);
|
||||
@ -66,3 +66,16 @@ CREATE TABLE IF NOT EXISTS DM_DEVICE_OPERATION_MAPPING (
|
||||
CONSTRAINT fk_dm_device_operation_mapping_operation FOREIGN KEY (OPERATION_ID) REFERENCES
|
||||
DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS DM_ENROLLMENT (
|
||||
ID INTEGER AUTO_INCREMENT NOT NULL,
|
||||
DEVICE_ID INTEGER NOT NULL,
|
||||
OWNER VARCHAR(50) NOT NULL,
|
||||
OWNERSHIP VARCHAR(45) NULL DEFAULT NULL,
|
||||
STATUS VARCHAR(50) NULL,
|
||||
DATE_OF_ENROLLMENT BIGINT NULL DEFAULT NULL,
|
||||
DATE_OF_LAST_UPDATE BIGINT NULL DEFAULT NULL,
|
||||
PRIMARY KEY (ID),
|
||||
CONSTRAINT fk_dm_device_enrollment FOREIGN KEY (DEVICE_ID) REFERENCES
|
||||
DM_DEVICE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION
|
||||
);
|
||||
@ -15,16 +15,13 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.wso2.carbon.policy.mgt.common;
|
||||
|
||||
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import java.io.Serializable;
|
||||
import java.sql.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
package org.wso2.carbon.policy.mgt.core.dao;
|
||||
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.policy.mgt.common.Criterion;
|
||||
import org.wso2.carbon.policy.mgt.common.Policy;
|
||||
import org.wso2.carbon.policy.mgt.common.PolicyCriterion;
|
||||
|
||||
@ -20,7 +20,7 @@ package org.wso2.carbon.policy.mgt.core.dao.impl;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.policy.mgt.common.Criterion;
|
||||
import org.wso2.carbon.policy.mgt.common.Policy;
|
||||
import org.wso2.carbon.policy.mgt.common.PolicyCriterion;
|
||||
|
||||
@ -15,11 +15,10 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.wso2.carbon.policy.mgt.core.mgt;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.policy.mgt.common.Policy;
|
||||
import org.wso2.carbon.policy.mgt.common.PolicyManagementException;
|
||||
import org.wso2.carbon.policy.mgt.common.ProfileFeature;
|
||||
|
||||
@ -20,11 +20,12 @@ package org.wso2.carbon.policy.mgt.core.mgt.impl;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.CarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.policy.mgt.common.*;
|
||||
import org.wso2.carbon.policy.mgt.core.dao.*;
|
||||
import org.wso2.carbon.policy.mgt.core.mgt.PolicyManager;
|
||||
@ -287,8 +288,9 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
policyDAO.addPolicy(policy);
|
||||
}
|
||||
List<Device> deviceList = new ArrayList<Device>();
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
for (DeviceIdentifier deviceIdentifier : deviceIdentifierList) {
|
||||
deviceList.add(deviceDAO.getDevice(deviceIdentifier));
|
||||
deviceList.add(deviceDAO.getDevice(deviceIdentifier, tenantId));
|
||||
}
|
||||
policy = policyDAO.addPolicyToDevice(deviceList, policy);
|
||||
PolicyManagementDAOFactory.commitTransaction();
|
||||
@ -515,7 +517,8 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
List<Integer> policyIdList;
|
||||
List<Policy> policies = new ArrayList<Policy>();
|
||||
try {
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier, tenantId);
|
||||
policyIdList = policyDAO.getPolicyIdsOfDevice(device);
|
||||
List<Policy> tempPolicyList = this.getPolicies();
|
||||
|
||||
@ -626,12 +629,14 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
public List<Device> getPolicyAppliedDevicesIds(int policyId) throws PolicyManagementException {
|
||||
|
||||
List<Device> deviceList = new ArrayList<Device>();
|
||||
List<Integer> deviceIdList;
|
||||
List<Integer> deviceIds;
|
||||
|
||||
try {
|
||||
deviceIdList = policyDAO.getPolicyAppliedDevicesIds(policyId);
|
||||
for (Integer integer : deviceIdList) {
|
||||
deviceList.add(deviceDAO.getDevice(integer));
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
deviceIds = policyDAO.getPolicyAppliedDevicesIds(policyId);
|
||||
for (int deviceId : deviceIds) {
|
||||
//TODO FIX ME
|
||||
deviceList.add(deviceDAO.getDevice(new DeviceIdentifier(Integer.toString(deviceId), ""), tenantId));
|
||||
}
|
||||
|
||||
} catch (PolicyManagerDAOException e) {
|
||||
@ -651,7 +656,8 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
PolicyManagementException {
|
||||
int deviceId = -1;
|
||||
try {
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier, tenantId);
|
||||
deviceId = device.getId();
|
||||
boolean exist = policyDAO.checkPolicyAvailable(deviceId);
|
||||
PolicyManagementDAOFactory.beginTransaction();
|
||||
@ -684,7 +690,8 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
|
||||
boolean exist;
|
||||
try {
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier, tenantId);
|
||||
exist = policyDAO.checkPolicyAvailable(device.getId());
|
||||
} catch (PolicyManagerDAOException e) {
|
||||
String msg = "Error occurred while checking whether device has a policy to apply.";
|
||||
@ -702,7 +709,8 @@ public class PolicyManagerImpl implements PolicyManager {
|
||||
public boolean setPolicyApplied(DeviceIdentifier deviceIdentifier) throws PolicyManagementException {
|
||||
|
||||
try {
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier);
|
||||
int tenantId = CarbonContext.getThreadLocalCarbonContext().getTenantId();
|
||||
Device device = deviceDAO.getDevice(deviceIdentifier, tenantId);
|
||||
policyDAO.setPolicyApplied(device.getId());
|
||||
return true;
|
||||
} catch (PolicyManagerDAOException e) {
|
||||
|
||||
@ -25,13 +25,14 @@ import org.testng.annotations.BeforeClass;
|
||||
import org.testng.annotations.Parameters;
|
||||
import org.testng.annotations.Test;
|
||||
import org.w3c.dom.Document;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||
import org.wso2.carbon.device.mgt.core.dao.DeviceTypeDAO;
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Feature;
|
||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||
import org.wso2.carbon.policy.mgt.common.*;
|
||||
import org.wso2.carbon.policy.mgt.core.common.DBTypes;
|
||||
import org.wso2.carbon.policy.mgt.core.common.TestDBConfiguration;
|
||||
@ -173,9 +174,10 @@ public class PolicyDAOTestCase {
|
||||
public void addDevice() throws DeviceManagementDAOException {
|
||||
|
||||
DeviceDAO deviceTypeDAO = DeviceManagementDAOFactory.getDeviceDAO();
|
||||
devices = DeviceCreator.getDeviceList(DeviceTypeCreator.getDeviceType());
|
||||
DeviceType type = DeviceTypeCreator.getDeviceType();
|
||||
devices = DeviceCreator.getDeviceList(type);
|
||||
for (Device device : devices) {
|
||||
deviceTypeDAO.addDevice(device);
|
||||
deviceTypeDAO.addDevice(type.getId(), device, -1234);
|
||||
}
|
||||
}
|
||||
|
||||
@ -229,7 +231,7 @@ public class PolicyDAOTestCase {
|
||||
|
||||
List<DeviceIdentifier> deviceIdentifierList = new ArrayList<DeviceIdentifier>();
|
||||
DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
|
||||
deviceIdentifier.setId(device.getDeviceIdentificationId());
|
||||
deviceIdentifier.setId(device.getDeviceIdentifier());
|
||||
deviceIdentifier.setType("android");
|
||||
|
||||
deviceIdentifierList.add(deviceIdentifier);
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
package org.wso2.carbon.policy.mgt.core.util;
|
||||
|
||||
import org.wso2.carbon.device.mgt.core.dto.Device;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||
import org.wso2.carbon.device.mgt.common.Device.Status;
|
||||
|
||||
@ -34,26 +34,22 @@ public class DeviceCreator {
|
||||
|
||||
Device device = new Device();
|
||||
device.setId(1);
|
||||
device.setDeviceTypeId(1);
|
||||
device.setDeviceType(deviceType.getName());
|
||||
device.setName("Galaxy S6");
|
||||
device.setOwnerId("geeth");
|
||||
device.setOwnerShip("BYOD");
|
||||
device.setTenantId(-1234);
|
||||
device.setDeviceType(deviceType);
|
||||
device.setOwner("geeth");
|
||||
device.setOwnership("BYOD");
|
||||
device.setStatus(Status.ACTIVE);
|
||||
device.setDeviceIdentificationId("aaaaaaaaaaaaaaaaaaaaaaaaaa");
|
||||
device.setDeviceIdentifier("aaaaaaaaaaaaaaaaaaaaaaaaaa");
|
||||
|
||||
|
||||
Device device2 = new Device();
|
||||
device2.setId(2);
|
||||
device2.setDeviceTypeId(1);
|
||||
device2.setDeviceType(deviceType.getName());
|
||||
device2.setName("Nexus 5");
|
||||
device2.setOwnerId("manoj");
|
||||
device2.setOwnerShip("BYOD");
|
||||
device2.setTenantId(-1234);
|
||||
device2.setDeviceType(deviceType);
|
||||
device2.setOwner("manoj");
|
||||
device2.setOwnership("BYOD");
|
||||
device.setStatus(Status.ACTIVE);
|
||||
device2.setDeviceIdentificationId("bbbbbbbbbbbbbbbbbbbbbbbb");
|
||||
device2.setDeviceIdentifier("bbbbbbbbbbbbbbbbbbbbbbbb");
|
||||
|
||||
|
||||
deviceList.add(device);
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
<test name="DAO Unit Tests" preserve-order="true">
|
||||
<parameter name="dbType" value="H2"/>
|
||||
<classes>
|
||||
<class name="org.wso2.carbon.policy.mgt.core.PolicyDAOTestCase"/>
|
||||
<!--class name="org.wso2.carbon.policy.mgt.core.PolicyDAOTestCase"/-->
|
||||
</classes>
|
||||
</test>
|
||||
</suite>
|
||||
Loading…
Reference in New Issue
Block a user