Uses of Class
org.wso2.carbon.device.mgt.mobile.dao.MobileDeviceManagementDAOException

Packages that use MobileDeviceManagementDAOException
org.wso2.carbon.device.mgt.mobile.dao   
org.wso2.carbon.device.mgt.mobile.dao.impl   
 

Uses of MobileDeviceManagementDAOException in org.wso2.carbon.device.mgt.mobile.dao
 

Methods in org.wso2.carbon.device.mgt.mobile.dao that throw MobileDeviceManagementDAOException
 boolean MobileDeviceDAO.addMobileDevice(MobileDevice mobileDevice)
           
 boolean MobileDeviceOperationMappingDAO.addMobileDeviceOperationMapping(MobileDeviceOperationMapping deviceOperation)
          Add a new mobile device operation mapping to the table.
 boolean MobileFeatureDAO.addMobileFeature(MobileFeature mobileFeature)
          Add a new feature to feature table.
 boolean MobileFeaturePropertyDAO.addMobileFeatureProperty(MobileFeatureProperty mobileFeatureProperty)
          Add a new feature property to feature property table.
 int MobileOperationDAO.addMobileOperation(MobileOperation operation)
          Add a new Mobile operation to plugin operation table.
 boolean MobileOperationPropertyDAO.addMobileOperationProperty(MobileOperationProperty operationProperty)
          Add a new mapping to plugin operation property table.
 boolean MobileDeviceDAO.deleteMobileDevice(String deviceId)
           
 boolean MobileDeviceOperationMappingDAO.deleteMobileDeviceOperationMapping(String deviceId, int operationId)
          Delete a given mobile device operation mapping from table.
 boolean MobileFeatureDAO.deleteMobileFeatureByCode(String featureCode)
          Delete a feature from feature table when the feature code is given.
 boolean MobileFeatureDAO.deleteMobileFeatureById(int featureId)
          Delete a feature from feature table when the feature id is given.
 boolean MobileFeaturePropertyDAO.deleteMobileFeatureProperty(String property)
          Delete a given feature property from feature property table.
 boolean MobileOperationDAO.deleteMobileOperation(int operationId)
          Delete a given Mobile operation from plugin database.
 boolean MobileOperationPropertyDAO.deleteMobileOperationProperties(int operationId)
          Deletes mobile operation properties of a given operation id from the plugin database.
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAO.getAllMobileDeviceOperationNappingsOfDevice(String deviceId)
          Retrieves all the of mobile device operation mappings relavent to the given mobile device.
 List<MobileDevice> MobileDeviceDAO.getAllMobileDevices()
           
 List<MobileFeature> MobileFeatureDAO.getAllMobileFeatures()
           
 List<MobileOperationProperty> MobileOperationPropertyDAO.getAllMobileOperationPropertiesOfOperation(int operationId)
          Retrieve all the mobile operation properties related to the a operation id.
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAO.getAllPendingOperationMappingsOfMobileDevice(String deviceId)
          Retrieves all the pending device operation mappings of a mobiel device.
 List<MobileFeatureProperty> MobileFeaturePropertyDAO.getFeaturePropertyOfFeature(Integer featureId)
          Retrieve a list of feature property corresponds to a feature id .
 MobileDevice MobileDeviceDAO.getMobileDevice(String deviceId)
           
 MobileDeviceOperationMapping MobileDeviceOperationMappingDAO.getMobileDeviceOperationMapping(String deviceId, int operationId)
          Retrieves a given mobile device operation from the plugin database.
 MobileFeature MobileFeatureDAO.getMobileFeatureByCode(String featureCode)
          Retrieve a given feature from feature table when the feature code is given.
 List<MobileFeature> MobileFeatureDAO.getMobileFeatureByDeviceType(String deviceType)
          Retrieve all the features from plugin specific database for a Device Type.
 MobileFeature MobileFeatureDAO.getMobileFeatureById(int featureId)
          Retrieve a given feature from feature table when the feature id is given.
 MobileFeatureProperty MobileFeaturePropertyDAO.getMobileFeatureProperty(String property)
          Retrieve a given feature property from feature property table.
 MobileOperation MobileOperationDAO.getMobileOperation(int operationId)
          Retrieve a given Mobile operation from plugin database.
 MobileOperationProperty MobileOperationPropertyDAO.getMobileOperationProperty(int operationId, String property)
          Retrieve a given mobile operation property from plugin database.
 boolean MobileDeviceDAO.updateMobileDevice(MobileDevice mobileDevice)
           
 boolean MobileDeviceOperationMappingDAO.updateMobileDeviceOperationMapping(MobileDeviceOperationMapping deviceOperation)
          Updates a mobile device operation mapping.
 boolean MobileDeviceOperationMappingDAO.updateMobileDeviceOperationMappingToCompleted(String deviceId, int operationId)
          Updates a mobile device operation mapping to completed state.
 boolean MobileDeviceOperationMappingDAO.updateMobileDeviceOperationMappingToInProgress(String deviceId, int operationId)
          Updates a mobile device operation mapping to In-Progress state.
 boolean MobileFeatureDAO.updateMobileFeature(MobileFeature mobileFeature)
          Update a feature in the feature table.
 boolean MobileFeaturePropertyDAO.updateMobileFeatureProperty(MobileFeatureProperty mobileFeatureProperty)
          Update a feature property in the feature property table.
 boolean MobileOperationDAO.updateMobileOperation(MobileOperation operation)
          Update a Mobile operation in the operation table.
 boolean MobileOperationPropertyDAO.updateMobileOperationProperty(MobileOperationProperty operationProperty)
          Update a feature in the feature table.
 

Uses of MobileDeviceManagementDAOException in org.wso2.carbon.device.mgt.mobile.dao.impl
 

Methods in org.wso2.carbon.device.mgt.mobile.dao.impl that throw MobileDeviceManagementDAOException
 boolean MobileDeviceDAOImpl.addMobileDevice(MobileDevice mobileDevice)
           
 boolean MobileDeviceOperationMappingDAOImpl.addMobileDeviceOperationMapping(MobileDeviceOperationMapping deviceOperation)
           
 boolean MobileFeatureDAOImpl.addMobileFeature(MobileFeature mobileFeature)
           
 boolean MobileFeaturePropertyDAOImpl.addMobileFeatureProperty(MobileFeatureProperty mobileFeatureProperty)
           
 int MobileOperationDAOImpl.addMobileOperation(MobileOperation operation)
           
 boolean MobileOperationPropertyDAOImpl.addMobileOperationProperty(MobileOperationProperty operationProperty)
           
 boolean MobileDeviceDAOImpl.deleteMobileDevice(String deviceId)
           
 boolean MobileDeviceOperationMappingDAOImpl.deleteMobileDeviceOperationMapping(String deviceId, int operationId)
           
 boolean MobileFeatureDAOImpl.deleteMobileFeatureByCode(String featureCode)
           
 boolean MobileFeatureDAOImpl.deleteMobileFeatureById(int featureId)
           
 boolean MobileFeaturePropertyDAOImpl.deleteMobileFeatureProperty(String property)
           
 boolean MobileOperationDAOImpl.deleteMobileOperation(int operationId)
           
 boolean MobileOperationPropertyDAOImpl.deleteMobileOperationProperties(int operationId)
           
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAOImpl.getAllMobileDeviceOperationNappingsOfDevice(String deviceId)
           
 List<MobileDevice> MobileDeviceDAOImpl.getAllMobileDevices()
           
 List<MobileFeature> MobileFeatureDAOImpl.getAllMobileFeatures()
           
 List<MobileOperationProperty> MobileOperationPropertyDAOImpl.getAllMobileOperationPropertiesOfOperation(int operationId)
           
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAOImpl.getAllPendingOperationMappingsOfMobileDevice(String deviceId)
           
 List<MobileFeatureProperty> MobileFeaturePropertyDAOImpl.getFeaturePropertyOfFeature(Integer featureId)
           
 MobileDevice MobileDeviceDAOImpl.getMobileDevice(String deviceId)
           
 MobileDeviceOperationMapping MobileDeviceOperationMappingDAOImpl.getMobileDeviceOperationMapping(String deviceId, int operationId)
           
 MobileFeature MobileFeatureDAOImpl.getMobileFeatureByCode(String featureCode)
           
 List<MobileFeature> MobileFeatureDAOImpl.getMobileFeatureByDeviceType(String deviceType)
           
 MobileFeature MobileFeatureDAOImpl.getMobileFeatureById(int featureID)
           
 MobileFeatureProperty MobileFeaturePropertyDAOImpl.getMobileFeatureProperty(String property)
           
 MobileOperation MobileOperationDAOImpl.getMobileOperation(int operationId)
           
 MobileOperationProperty MobileOperationPropertyDAOImpl.getMobileOperationProperty(int operationId, String property)
           
 boolean MobileDeviceDAOImpl.updateMobileDevice(MobileDevice mobileDevice)
           
 boolean MobileDeviceOperationMappingDAOImpl.updateMobileDeviceOperationMapping(MobileDeviceOperationMapping deviceOperation)
           
 boolean MobileDeviceOperationMappingDAOImpl.updateMobileDeviceOperationMappingToCompleted(String deviceId, int operationId)
           
 boolean MobileDeviceOperationMappingDAOImpl.updateMobileDeviceOperationMappingToInProgress(String deviceId, int operationId)
           
 boolean MobileFeatureDAOImpl.updateMobileFeature(MobileFeature mobileFeature)
           
 boolean MobileFeaturePropertyDAOImpl.updateMobileFeatureProperty(MobileFeatureProperty mobileFeatureProperty)
           
 boolean MobileOperationDAOImpl.updateMobileOperation(MobileOperation operation)
           
 boolean MobileOperationPropertyDAOImpl.updateMobileOperationProperty(MobileOperationProperty operationProperty)
           
 



Copyright © 2015 WSO2. All rights reserved.