> +/**
> + * Enumerates supported SessionPersistence types.
> + */
> +public enum SessionPersistenceType {
> +   /**
> +    * All connections that originate from the same source IP address are 
> handled by the same member of the pool.
> +    */
> +   SOURCE_IP,
> +   /**
> +    * The load balancing function creates a cookie on the first request from 
> a client. Subsequent requests that
> +    * contain the same cookie value are handled by the same member of the 
> pool.
> +    */
> +   HTTP_COOKIE,
> +   /**
> +    * The load balancing function relies on a cookie established by the 
> back-end application. All requests with the
> +    * same cookie value are handled by the same member of the pool.

I added the fromValue method

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r17914125

Reply via email to