> + int MAX_OBJECTS = 10000; > + > + /** > + * The maximum length of a container name is 256 (bytes). > + */ > + int MAX_LENGTH_CONTAINER_NAME = 256; > + > + /** > + * The maximum length of an object name is 1024 (bytes). > + */ > + int MAX_LENGTH_OBJECT_NAME = 1024; > + > + /** > + * The maximum length of HTTP requests is 5 (gigabytes). > + */ > + int MAX_LENGTH_HTTP_REQUEST = 5;
Perhaps add the unit to the constant name, to avoid this kind of potential confusion? E.g. `MAX_HTTP_REQUEST_SIZE_GB`? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6383756
