throw new InvalidGlacierConfigurationException(uri);
}
}
private CredentialsParser doParse() {
GroupRegex regex = new GroupRegex(LEGAL_URI_REGEX, uri.toString());
id = regex.getValue(1);
secret = regex.getValue(2);
endpoint = regex.getValue(3);
bucket = regex.getValue(4);
vault = regex.getValue(5);
return this;
}