.compile(capabilitySyntax);
public static void checkSyntax(String containerName) {
if (containerName == null)
throw new NullArgumentException("containerName == null");
if (containerName.length() > 255)
throw new VOMSSyntaxException("containerName.length() > 255");
if (!containerPattern.matcher(containerName).matches())