mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt
This commit is contained in:
commit
9288e3846d
@ -52,6 +52,10 @@
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-scr-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
|
||||
@ -26,11 +26,13 @@ import org.wso2.carbon.apimgt.impl.APIManagerConfigurationService;
|
||||
import org.wso2.carbon.apimgt.webapp.publisher.APIPublisherService;
|
||||
import org.wso2.carbon.apimgt.webapp.publisher.APIPublisherServiceImpl;
|
||||
|
||||
/**
|
||||
* @scr.component name="org.wso2.carbon.apimgt.webapp.publisher" immediate="true"
|
||||
*/
|
||||
public class APIPublisherServiceComponent {
|
||||
|
||||
private static Log log = LogFactory.getLog(APIPublisherServiceComponent.class);
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
protected void activate(ComponentContext componentContext) {
|
||||
try {
|
||||
if (log.isDebugEnabled()) {
|
||||
@ -48,7 +50,6 @@ public class APIPublisherServiceComponent {
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
protected void deactivate(ComponentContext componentContext) {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
@ -77,14 +77,13 @@ public class MonitoringTask implements Task {
|
||||
try {
|
||||
|
||||
|
||||
|
||||
DeviceManagementProviderService deviceManagementProviderService =
|
||||
PolicyManagementDataHolder.getInstance().getDeviceManagementService();
|
||||
|
||||
for (DeviceType deviceType : deviceTypes) {
|
||||
|
||||
if(log.isDebugEnabled()){
|
||||
log.debug("Running task for device type : " + deviceType.getName() );
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Running task for device type : " + deviceType.getName());
|
||||
}
|
||||
|
||||
PolicyMonitoringService monitoringService =
|
||||
@ -100,15 +99,21 @@ public class MonitoringTask implements Task {
|
||||
deviceType.getName());
|
||||
}
|
||||
for (Device device : devices) {
|
||||
if (device.getEnrolmentInfo().getStatus().equals(EnrolmentInfo.Status.INACTIVE) ||
|
||||
device.getEnrolmentInfo().getStatus().equals(EnrolmentInfo.Status.BLOCKED)) {
|
||||
EnrolmentInfo.Status status = device.getEnrolmentInfo().getStatus();
|
||||
if (status.equals(EnrolmentInfo.Status.INACTIVE) ||
|
||||
status.equals(EnrolmentInfo.Status.BLOCKED) ||
|
||||
status.equals(EnrolmentInfo.Status.REMOVED) ||
|
||||
status.equals(EnrolmentInfo.Status.UNCLAIMED) ||
|
||||
status.equals(EnrolmentInfo.Status.DISENROLLMENT_REQUESTED) ||
|
||||
status.equals(EnrolmentInfo.Status.SUSPENDED)) {
|
||||
continue;
|
||||
} else {
|
||||
notifiableDevices.add(device);
|
||||
}
|
||||
}
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Following devices selected to send the notification for " + deviceType.getName());
|
||||
log.debug("Following devices selected to send the notification for " +
|
||||
deviceType.getName());
|
||||
for (Device device : notifiableDevices) {
|
||||
log.debug(device.getDeviceIdentifier());
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user