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)
          Adds a new MobileDevice to the MDM database.
 boolean MobileDeviceOperationMappingDAO.addMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperationMapping)
          Adds a new mobile device operation mapping to the table.
 int MobileFeatureDAO.addMobileFeature(MobileFeature mobileFeature)
          Adds a new MobileFeature to Mobile-Feature table.
 boolean MobileFeaturePropertyDAO.addMobileFeatureProperty(MobileFeatureProperty mblFeatureProperty)
          Add a new MobileFeatureProperty to MobileFeatureProperty table.
 int MobileOperationDAO.addMobileOperation(MobileOperation mblOperation)
          Adds a new Mobile operation to the MobileOperation table.
 boolean MobileOperationPropertyDAO.addMobileOperationProperty(MobileOperationProperty mblOperationProperty)
          Add a new MobileOperationProperty to MobileOperationProperty table.
 boolean MobileDeviceDAO.deleteMobileDevice(String mblDeviceId)
          Deletes a given MobileDevice from MDM database.
 boolean MobileDeviceOperationMappingDAO.deleteMobileDeviceOperationMapping(String mblDeviceId, int operationId)
          Delete a given MobileDeviceOperationMapping from MobileDeviceOperationMapping table.
 boolean MobileFeatureDAO.deleteMobileFeatureByCode(String mblFeatureCode)
          Deletes a MobileFeature from Mobile-Feature table when the feature code is given.
 boolean MobileFeatureDAO.deleteMobileFeatureById(int mblFeatureId)
          Deletes a MobileFeature from Mobile-Feature table when the feature id is given.
 boolean MobileFeaturePropertyDAO.deleteMobileFeaturePropertiesOfFeature(Integer mblFeatureId)
          Deletes MobileFeatureProperties of a given feature from MobileFeatureProperty table.
 boolean MobileFeaturePropertyDAO.deleteMobileFeatureProperty(String property)
          Deletes a given MobileFeatureProperty from MobileFeatureProperty table.
 boolean MobileOperationDAO.deleteMobileOperation(int mblOperationId)
          Deletes a given MobileOperation from MobileOperation table.
 boolean MobileOperationPropertyDAO.deleteMobileOperationProperties(int mblOperationId)
          Deletes MobileOperationProperties of a given operation id from the MobileOperationProperty table.
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAO.getAllMobileDeviceOperationMappingsOfDevice(String mblDeviceId)
          Retrieves all the of MobileDeviceOperationMappings relevant to a given mobile device.
 List<MobileDevice> MobileDeviceDAO.getAllMobileDevices()
          Fetches all MobileDevices from MDM database.
 List<MobileFeature> MobileFeatureDAO.getAllMobileFeatures()
          Retrieve all the MobileFeatures from Mobile-Feature table.
 List<MobileOperationProperty> MobileOperationPropertyDAO.getAllMobileOperationPropertiesOfOperation(int mblOperationId)
          Retrieve all the MobileOperationProperties related to the a operation id from MobileOperationProperty table.
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAO.getAllPendingOperationMappingsOfMobileDevice(String mblDeviceId)
          Retrieves all the pending MobileDeviceOperationMappings of a mobile device.
 List<MobileFeatureProperty> MobileFeaturePropertyDAO.getFeaturePropertiesOfFeature(Integer mblFeatureId)
          Retrieves a list of MobileFeatureProperties corresponds to a given feature id from MobileFeatureProperty table.
 MobileDevice MobileDeviceDAO.getMobileDevice(String mblDeviceId)
          Fetches a MobileDevice from MDM database.
 MobileDeviceOperationMapping MobileDeviceOperationMappingDAO.getMobileDeviceOperationMapping(String mblDeviceId, int operationId)
          Retrieves a given MobileDeviceOperationMapping object from the MobileDeviceOperationMapping table.
 MobileFeature MobileFeatureDAO.getMobileFeatureByCode(String mblFeatureCode)
          Retrieves a given MobileFeature from Mobile-Feature table when the feature code is given.
 List<MobileFeature> MobileFeatureDAO.getMobileFeatureByDeviceType(String deviceType)
          Retrieves all MobileFeatures of a MobileDevice type from Mobile-Feature table.
 MobileFeature MobileFeatureDAO.getMobileFeatureById(int mblFeatureId)
          Retrieves a given MobileFeature from Mobile-Feature table when the feature id is given.
 MobileFeatureProperty MobileFeaturePropertyDAO.getMobileFeatureProperty(String property)
          Retrieves a given MobileFeatureProperty from MobileFeatureProperty table.
 MobileOperation MobileOperationDAO.getMobileOperation(int mblOperationId)
          Retrieve a MobileOperation from MobileOperation table.
 MobileOperationProperty MobileOperationPropertyDAO.getMobileOperationProperty(int mblOperationId, String property)
          Retrieve a given MobileOperationProperty from MobileOperationProperty table.
 boolean MobileDeviceDAO.updateMobileDevice(MobileDevice mobileDevice)
          Updates MobileDevice information in MDM database.
 boolean MobileDeviceOperationMappingDAO.updateMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperation)
          Updates a MobileDeviceOperationMapping in MobileDeviceOperationMapping table.
 boolean MobileDeviceOperationMappingDAO.updateMobileDeviceOperationMappingToCompleted(String mblDeviceId, int operationId)
          Updates a MobileDeviceOperationMapping to completed state in MobileDeviceOperationMapping table.
 boolean MobileDeviceOperationMappingDAO.updateMobileDeviceOperationMappingToInProgress(String mblDeviceId, int operationId)
          Updates a MobileDeviceOperationMapping to In-Progress state in MobileDeviceOperationMapping table.
 boolean MobileFeatureDAO.updateMobileFeature(MobileFeature mobileFeature)
          Updates a MobileFeature in Mobile-Feature table.
 boolean MobileFeaturePropertyDAO.updateMobileFeatureProperty(MobileFeatureProperty mblFeatureProperty)
          Updates a MobileFeatureProperty in the MobileFeatureProperty table.
 boolean MobileOperationDAO.updateMobileOperation(MobileOperation mblOperation)
          Updates a Mobile operation in the MobileOperation table.
 boolean MobileOperationPropertyDAO.updateMobileOperationProperty(MobileOperationProperty mblOperationProperty)
          Update a MobileOperationProperty in the MobileOperationProperty 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 mblDeviceOperationMapping)
           
 int MobileFeatureDAOImpl.addMobileFeature(MobileFeature mobileFeature)
           
 boolean MobileFeaturePropertyDAOImpl.addMobileFeatureProperty(MobileFeatureProperty mblFeatureProperty)
           
 int MobileOperationDAOImpl.addMobileOperation(MobileOperation mblOperation)
           
 boolean MobileOperationPropertyDAOImpl.addMobileOperationProperty(MobileOperationProperty mblOperationProperty)
           
 boolean MobileDeviceDAOImpl.deleteMobileDevice(String mblDeviceId)
           
 boolean MobileDeviceOperationMappingDAOImpl.deleteMobileDeviceOperationMapping(String mblDeviceId, int operationId)
           
 boolean MobileFeatureDAOImpl.deleteMobileFeatureByCode(String mblFeatureCode)
           
 boolean MobileFeatureDAOImpl.deleteMobileFeatureById(int mblFeatureId)
           
 boolean MobileFeaturePropertyDAOImpl.deleteMobileFeaturePropertiesOfFeature(Integer mblFeatureId)
           
 boolean MobileFeaturePropertyDAOImpl.deleteMobileFeatureProperty(String property)
           
 boolean MobileOperationDAOImpl.deleteMobileOperation(int mblOperationId)
           
 boolean MobileOperationPropertyDAOImpl.deleteMobileOperationProperties(int mblOperationId)
           
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAOImpl.getAllMobileDeviceOperationMappingsOfDevice(String mblDeviceId)
           
 List<MobileDevice> MobileDeviceDAOImpl.getAllMobileDevices()
           
 List<MobileFeature> MobileFeatureDAOImpl.getAllMobileFeatures()
           
 List<MobileOperationProperty> MobileOperationPropertyDAOImpl.getAllMobileOperationPropertiesOfOperation(int mblOperationId)
           
 List<MobileDeviceOperationMapping> MobileDeviceOperationMappingDAOImpl.getAllPendingOperationMappingsOfMobileDevice(String mblDeviceId)
           
 List<MobileFeatureProperty> MobileFeaturePropertyDAOImpl.getFeaturePropertiesOfFeature(Integer mblFeatureId)
           
 MobileDevice MobileDeviceDAOImpl.getMobileDevice(String mblDeviceId)
           
 MobileDeviceOperationMapping MobileDeviceOperationMappingDAOImpl.getMobileDeviceOperationMapping(String mblDeviceId, int operationId)
           
 MobileFeature MobileFeatureDAOImpl.getMobileFeatureByCode(String mblFeatureCode)
           
 List<MobileFeature> MobileFeatureDAOImpl.getMobileFeatureByDeviceType(String deviceType)
           
 MobileFeature MobileFeatureDAOImpl.getMobileFeatureById(int mblFeatureId)
           
 MobileFeatureProperty MobileFeaturePropertyDAOImpl.getMobileFeatureProperty(String property)
           
 MobileOperation MobileOperationDAOImpl.getMobileOperation(int mblOperationId)
           
 MobileOperationProperty MobileOperationPropertyDAOImpl.getMobileOperationProperty(int mblOperationId, String property)
           
 boolean MobileDeviceDAOImpl.updateMobileDevice(MobileDevice mobileDevice)
           
 boolean MobileDeviceOperationMappingDAOImpl.updateMobileDeviceOperationMapping(MobileDeviceOperationMapping mblDeviceOperation)
           
 boolean MobileDeviceOperationMappingDAOImpl.updateMobileDeviceOperationMappingToCompleted(String mblDeviceId, int operationId)
           
 boolean MobileDeviceOperationMappingDAOImpl.updateMobileDeviceOperationMappingToInProgress(String mblDeviceId, int operationId)
           
 boolean MobileFeatureDAOImpl.updateMobileFeature(MobileFeature mobileFeature)
           
 boolean MobileFeaturePropertyDAOImpl.updateMobileFeatureProperty(MobileFeatureProperty mblFeatureProperty)
           
 boolean MobileOperationDAOImpl.updateMobileOperation(MobileOperation mblOperation)
           
 boolean MobileOperationPropertyDAOImpl.updateMobileOperationProperty(MobileOperationProperty mblOperationProperty)
           
 



Copyright © 2015 WSO2. All rights reserved.