Class: AlfrescoAPI::PreferencesApi
- Inherits:
-
Object
- Object
- AlfrescoAPI::PreferencesApi
- Defined in:
- lib/alfresco_api/api/preferences_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_preference(person_id, preference_name, opts = {}) ⇒ PreferenceEntry
Get a preference Gets a specific preference for person personId.
-
#get_preference_with_http_info(person_id, preference_name, opts = {}) ⇒ Array<(PreferenceEntry, Fixnum, Hash)>
Get a preference Gets a specific preference for person personId.
-
#initialize(api_client = ApiClient.default) ⇒ PreferencesApi
constructor
A new instance of PreferencesApi.
-
#list_preferences(person_id, opts = {}) ⇒ PreferencePaging
List preferences Gets a list of preferences for person personId.
-
#list_preferences_with_http_info(person_id, opts = {}) ⇒ Array<(PreferencePaging, Fixnum, Hash)>
List preferences Gets a list of preferences for person personId.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ PreferencesApi
Returns a new instance of PreferencesApi.
19 20 21 |
# File 'lib/alfresco_api/api/preferences_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/alfresco_api/api/preferences_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#get_preference(person_id, preference_name, opts = {}) ⇒ PreferenceEntry
Get a preference Gets a specific preference for person personId. You can use the ‘-me-` string in place of `<personId>` to specify the currently authenticated user.
30 31 32 33 |
# File 'lib/alfresco_api/api/preferences_api.rb', line 30 def get_preference(person_id, preference_name, opts = {}) data, _status_code, _headers = get_preference_with_http_info(person_id, preference_name, opts) return data end |
#get_preference_with_http_info(person_id, preference_name, opts = {}) ⇒ Array<(PreferenceEntry, Fixnum, Hash)>
Get a preference Gets a specific preference for person personId. You can use the `-me-` string in place of `<personId>` to specify the currently authenticated user.
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/alfresco_api/api/preferences_api.rb', line 42 def get_preference_with_http_info(person_id, preference_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: PreferencesApi.get_preference ..." end # verify the required parameter 'person_id' is set if @api_client.config.client_side_validation && person_id.nil? fail ArgumentError, "Missing the required parameter 'person_id' when calling PreferencesApi.get_preference" end # verify the required parameter 'preference_name' is set if @api_client.config.client_side_validation && preference_name.nil? fail ArgumentError, "Missing the required parameter 'preference_name' when calling PreferencesApi.get_preference" end # resource path local_var_path = "/people/{personId}/preferences/{preferenceName}".sub('{' + 'personId' + '}', person_id.to_s).sub('{' + 'preferenceName' + '}', preference_name.to_s) # query parameters query_params = {} query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :csv) if !opts[:'fields'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'PreferenceEntry') if @api_client.config.debugging @api_client.config.logger.debug "API called: PreferencesApi#get_preference\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_preferences(person_id, opts = {}) ⇒ PreferencePaging
List preferences Gets a list of preferences for person personId. You can use the ‘-me-` string in place of `<personId>` to specify the currently authenticated user. Note that each preference consists of an id and a value. The value can be of any JSON type.
95 96 97 98 |
# File 'lib/alfresco_api/api/preferences_api.rb', line 95 def list_preferences(person_id, opts = {}) data, _status_code, _headers = list_preferences_with_http_info(person_id, opts) return data end |
#list_preferences_with_http_info(person_id, opts = {}) ⇒ Array<(PreferencePaging, Fixnum, Hash)>
List preferences Gets a list of preferences for person personId. You can use the `-me-` string in place of `<personId>` to specify the currently authenticated user. Note that each preference consists of an id and a value. The value can be of any JSON type.
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/alfresco_api/api/preferences_api.rb', line 108 def list_preferences_with_http_info(person_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: PreferencesApi.list_preferences ..." end # verify the required parameter 'person_id' is set if @api_client.config.client_side_validation && person_id.nil? fail ArgumentError, "Missing the required parameter 'person_id' when calling PreferencesApi.list_preferences" end if @api_client.config.client_side_validation && !opts[:'skip_count'].nil? && opts[:'skip_count'] < 0 fail ArgumentError, 'invalid value for "opts[:"skip_count"]" when calling PreferencesApi.list_preferences, must be greater than or equal to 0.' end if @api_client.config.client_side_validation && !opts[:'max_items'].nil? && opts[:'max_items'] < 1 fail ArgumentError, 'invalid value for "opts[:"max_items"]" when calling PreferencesApi.list_preferences, must be greater than or equal to 1.' end # resource path local_var_path = "/people/{personId}/preferences".sub('{' + 'personId' + '}', person_id.to_s) # query parameters query_params = {} query_params[:'skipCount'] = opts[:'skip_count'] if !opts[:'skip_count'].nil? query_params[:'maxItems'] = opts[:'max_items'] if !opts[:'max_items'].nil? query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :csv) if !opts[:'fields'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'PreferencePaging') if @api_client.config.debugging @api_client.config.logger.debug "API called: PreferencesApi#list_preferences\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |