> +
> +import org.jclouds.predicates.Validator;
> +
> +import com.google.common.base.CharMatcher;
> +import com.google.inject.Singleton;
> +
> +/**
> + * Validates Vault names according to Amazon Vault conventions.
> + *
> + * @author Roman Coedo
> + */
> +@Singleton
> +public class VaultNameValidator extends Validator<String> {
> +
> +   private static int MIN_LENGTH = 1;
> +   private static int MAX_LENGTH = 255;

Same here. Make these final.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r12843354

Reply via email to