Skip to content

Commit

Permalink
fix build failure due to unimplemented license method
Browse files Browse the repository at this point in the history
  • Loading branch information
Rasika Perera authored and Rasika Perera committed Aug 7, 2015
1 parent 5e75729 commit 30d3b00
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
import org.apache.commons.logging.LogFactory;
import org.wso2.carbon.device.mgt.common.*;
import org.wso2.carbon.device.mgt.common.configuration.mgt.TenantConfiguration;
import org.wso2.carbon.device.mgt.common.license.mgt.License;
import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManagementException;
import org.wso2.carbon.device.mgt.iot.firealarm.impl.dao.FireAlarmDAO;
import org.wso2.carbon.device.mgt.iot.common.util.iotdevice.dao.IotDeviceManagementDAOException;
import org.wso2.carbon.device.mgt.iot.common.util.iotdevice.dao.IotDeviceManagementDAOFactory;
Expand Down Expand Up @@ -207,6 +209,16 @@ public boolean setStatus(DeviceIdentifier deviceId, String currentOwner,
return false;
}

@Override
public License getLicense(String s) throws LicenseManagementException {
return null;
}

@Override
public void addLicense(License license) throws LicenseManagementException {

}

@Override
public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException {
boolean status;
Expand Down

0 comments on commit 30d3b00

Please sign in to comment.