mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Synching with master
This commit is contained in:
parent
33d8829540
commit
5f90587564
@ -181,6 +181,11 @@
|
|||||||
<groupId>org.wso2.carbon.registry</groupId>
|
<groupId>org.wso2.carbon.registry</groupId>
|
||||||
<artifactId>org.wso2.carbon.registry.indexing</artifactId>
|
<artifactId>org.wso2.carbon.registry.indexing</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-simple</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
||||||
|
|||||||
@ -25,6 +25,7 @@ import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
|||||||
import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException;
|
import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException;
|
||||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -208,6 +209,8 @@ public interface DeviceManagementProviderService {
|
|||||||
|
|
||||||
Device getDevice(DeviceIdentifier deviceId, Date since) throws DeviceManagementException;
|
Device getDevice(DeviceIdentifier deviceId, Date since) throws DeviceManagementException;
|
||||||
|
|
||||||
|
HashMap<Integer, Device> getTenantedDevice(DeviceIdentifier deviceIdentifier) throws DeviceManagementException;
|
||||||
|
|
||||||
Device getDevice(DeviceIdentifier deviceId, EnrolmentInfo.Status status) throws DeviceManagementException;
|
Device getDevice(DeviceIdentifier deviceId, EnrolmentInfo.Status status) throws DeviceManagementException;
|
||||||
|
|
||||||
List<String> getAvailableDeviceTypes() throws DeviceManagementException;
|
List<String> getAvailableDeviceTypes() throws DeviceManagementException;
|
||||||
|
|||||||
8
pom.xml
8
pom.xml
@ -1520,6 +1520,11 @@
|
|||||||
<artifactId>javax.servlet.jsp-api</artifactId>
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
||||||
<version>${servelet.jsp.version}</version>
|
<version>${servelet.jsp.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-simple</artifactId>
|
||||||
|
<version>${slf4j.simple.version}</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
@ -1898,6 +1903,9 @@
|
|||||||
<orbit.version.pdfbox>1.8.10.wso2v2</orbit.version.pdfbox>
|
<orbit.version.pdfbox>1.8.10.wso2v2</orbit.version.pdfbox>
|
||||||
<carbon.throttle.module.version>4.2.1</carbon.throttle.module.version>
|
<carbon.throttle.module.version>4.2.1</carbon.throttle.module.version>
|
||||||
<javax.xml.soap.imp.pkg.version>[1.0.0, 1.1.0)</javax.xml.soap.imp.pkg.version>
|
<javax.xml.soap.imp.pkg.version>[1.0.0, 1.1.0)</javax.xml.soap.imp.pkg.version>
|
||||||
|
|
||||||
|
<!-- apache pdfbox version -->
|
||||||
|
<slf4j.simple.version>1.6.1</slf4j.simple.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user