Package com.splunk.shuttl.archiver.util

Examples of com.splunk.shuttl.archiver.util.GroupRegex


  public BucketName(String name) {
    this.name = name;
    String regex = LEGAL_NAME_REGEX;
    if (getUnderscoresInName() == 4)
      regex += GUID_ADDITION;
    this.groupRegex = new GroupRegex(regex, name);
  }
View Full Code Here


        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;
    }
View Full Code Here

TOP

Related Classes of com.splunk.shuttl.archiver.util.GroupRegex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.