Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: CAMEL-7014

...

Wiki Markup
|| Name || Default Value || Description ||
| {{headerFilterStrategy=#}}{_}refName_ | An instance of {{RestletHeaderFilterStrategy}} | Use the {{\#}} notation ({{headerFilterStrategy=#}}{_}refName_) to reference a header filter strategy in the Camel Registry.  The strategy will be plugged into the restlet binding if it is {{HeaderFilterStrategyAware}}. |
| {{restletBinding=#}}{_}refName_ | An instance of {{DefaultRestletBinding}} | The bean ID of a {{RestletBinding}} object in the Camel Registry. |
| {{restletMethod}} | {{GET}} | On a producer endpoint, specifies the request method to use.  On a consumer endpoint, specifies that the endpoint consumes only {{restletMethod}} requests.  The string value is converted to [org.restlet.data.Method|http://www.restlet.org/documentation/1.1/api/org/restlet/data/Method.html] by the {{Method.valueOf(String)}} method. |
| {{restletMethods}} | _None_ | *Consumer only* Specify one or more methods separated by commas (e.g. {{restletMethods=post,put}}) to be serviced by a restlet consumer endpoint.  If both {{restletMethod}} and {{restletMethods}} options are specified, the {{restletMethod}} setting is ignored. |
| {{restletRealm=#}}{_}refName_ | {{null}} | The bean ID of the Realm Map in the Camel Registry. |
| {{restletUriPatterns=#}}{_}refName_ | _None_ | *Consumer only* Specify one ore more URI templates to be serviced by a restlet consumer endpoint, using the {{\#}} notation to reference a {{List<String>}} in the Camel Registry.  If a URI pattern has been defined in the endpoint URI, both the URI pattern defined in the endpoint and the {{restletUriPatterns}} option will be honored. |
| {{throwExceptionOnFailure}} (*2.6 or later*)| true | *Producer only * Throws exception on a producer failure. |
| {{connectionTimeout}}| 300000 | *Since Camel 2.12.3* *Producer only* The Client will give up connection if the connection is timeout, 0 for unlimited wait.|
| {{socketTimeout}} | 300000 | *Since Camel 2.12.3* *Producer only* The Client socket receive timeout, 0 for unlimited wait.|

Component Options

The Restlet component can be configured with the following options. Notice these are component options and cannot be configured on the endpoint, see further below for an example.

...