|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface MobileFeatureDAO
This class represents the key operations associated with persisting mobile feature related information.
| Method Summary | |
|---|---|
boolean |
addMobileFeature(MobileFeature mobileFeature)
Add a new feature to feature table. |
boolean |
deleteMobileFeatureByCode(String featureCode)
Delete a feature from feature table when the feature code is given. |
boolean |
deleteMobileFeatureById(int featureId)
Delete a feature from feature table when the feature id is given. |
List<MobileFeature> |
getAllMobileFeatures()
|
MobileFeature |
getMobileFeatureByCode(String featureCode)
Retrieve a given feature from feature table when the feature code is given. |
List<MobileFeature> |
getMobileFeatureByDeviceType(String deviceType)
Retrieve all the features from plugin specific database for a Device Type. |
MobileFeature |
getMobileFeatureById(int featureId)
Retrieve a given feature from feature table when the feature id is given. |
boolean |
updateMobileFeature(MobileFeature mobileFeature)
Update a feature in the feature table. |
| Method Detail |
|---|
boolean addMobileFeature(MobileFeature mobileFeature)
throws MobileDeviceManagementDAOException
mobileFeature - Feature object that holds data related to the feature to be inserted.
MobileDeviceManagementDAOException
boolean updateMobileFeature(MobileFeature mobileFeature)
throws MobileDeviceManagementDAOException
mobileFeature - Feature object that holds data has to be updated.
MobileDeviceManagementDAOException
boolean deleteMobileFeatureById(int featureId)
throws MobileDeviceManagementDAOException
featureId - Feature id of the feature to be deleted.
MobileDeviceManagementDAOException
boolean deleteMobileFeatureByCode(String featureCode)
throws MobileDeviceManagementDAOException
featureCode - Feature code of the feature to be deleted.
MobileDeviceManagementDAOException
MobileFeature getMobileFeatureById(int featureId)
throws MobileDeviceManagementDAOException
featureId - Feature id of the feature to be retrieved.
MobileDeviceManagementDAOException
MobileFeature getMobileFeatureByCode(String featureCode)
throws MobileDeviceManagementDAOException
featureCode - Feature code of the feature to be retrieved.
MobileDeviceManagementDAOException
List<MobileFeature> getMobileFeatureByDeviceType(String deviceType)
throws MobileDeviceManagementDAOException
deviceType - - Device type.
MobileDeviceManagementDAOException
List<MobileFeature> getAllMobileFeatures()
throws MobileDeviceManagementDAOException
MobileDeviceManagementDAOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||