Examples of allowCharacters()


Examples of org.platformlayer.ops.firewall.Sanitizer.allowCharacters()

    sb.append("# Created / managed by PlatformLayer. Do not edit.\n");
    sb.append("# __PLATFORMLAYER__METADATA__BEGIN__\n");
    Sanitizer sanitizer = new Sanitizer(Decision.Throw, '_');
    sanitizer.allowAlphanumeric();
    sanitizer.allowCharacters("!@$%^&*()[]{}_-+|<>,.");
    sanitizer.setDecision("#= ", Decision.Throw);
    for (Entry<String, String> entry : metadata.entrySet()) {
      String key = sanitizer.clean(entry.getKey());
      String value = sanitizer.clean(entry.getValue());
      sb.append("# " + key + "=" + value + "\n");
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.