Uses of Class
com.softlayer.api.service.user.Preference
-
Packages that use Preference Package Description com.softlayer.api.service.user -
-
Uses of Preference in com.softlayer.api.service.user
Fields in com.softlayer.api.service.user with type parameters of type Preference Modifier and Type Field Description protected List<Preference>
Customer. preferences
Data type contains a single user preference to a specific preference type.Methods in com.softlayer.api.service.user that return Preference Modifier and Type Method Description Preference
Customer.Service. getPreference(String preferenceTypeKeyName)
Select a type of preference you would like to get using [[SoftLayer_User_Customer::getPreferenceTypes|getPreferenceTypes]] and invoke this method using that preference type key name.Methods in com.softlayer.api.service.user that return types with arguments of type Preference Modifier and Type Method Description List<Preference>
Customer.Service. changePreference(String preferenceTypeKeyName, String value)
Select a type of preference you would like to modify using [[SoftLayer_User_Customer::getPreferenceTypes|getPreferenceTypes]] and invoke this method using that preference type key name.Future<List<Preference>>
Customer.ServiceAsync. changePreference(String preferenceTypeKeyName, String value)
Future<Preference>
Customer.ServiceAsync. getPreference(String preferenceTypeKeyName)
Async version ofCustomer.Service.getPreference(java.lang.String)
List<Preference>
Customer. getPreferences()
List<Preference>
Customer.Service. getPreferences()
Data type contains a single user preference to a specific preference type.Future<List<Preference>>
Customer.ServiceAsync. getPreferences()
Async version ofCustomer.Service.getPreferences()
Method parameters in com.softlayer.api.service.user with type arguments of type Preference Modifier and Type Method Description Future<?>
Customer.ServiceAsync. changePreference(String preferenceTypeKeyName, String value, ResponseHandler<List<Preference>> callback)
Future<?>
Customer.ServiceAsync. getPreference(String preferenceTypeKeyName, ResponseHandler<Preference> callback)
Future<?>
Customer.ServiceAsync. getPreferences(ResponseHandler<List<Preference>> callback)
Async callback version ofCustomer.Service.getPreferences()
-