Examples of GroupRegex


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

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

        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
Copyright © 2018 www.massapi.com. 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.