> +/**
> + * Constants used in Swift implementations.
> + *
> + * @author Jeremy Daggett
> + */
> +public interface SwiftConstants {
> +
> + /**
> + * The maximum number of objects that can be returned per request.
> + */
> + int MAX_OBJECTS = 10000;
> +
> + /**
> + * The maximum length of a container name is 256 (bytes).
> + */
> + int MAX_LENGTH_CONTAINER_NAME = 256;
"length of name" sounds like number of characters to me. If this is a _memory
size_ limit, perhaps call it `MAX_CONTAINER_NAME_SIZE_BYTES`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6383726