Procházet zdrojové kódy

allow connCheck and requestCheck to be updated

tags/v0.15.4
Jonathan Cobb před 4 roky
rodič
revize
1ccad8fe97
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      bubble-server/src/main/java/bubble/model/app/AppMatcher.java

+ 2
- 2
bubble-server/src/main/java/bubble/model/app/AppMatcher.java Zobrazit soubor

@@ -44,8 +44,8 @@ import static org.cobbzilla.wizard.model.crypto.EncryptedTypes.ENC_PAD;
})
public class AppMatcher extends IdentifiableBase implements AppTemplateEntity, HasPriority {

public static final String[] VALUE_FIELDS = {"fqdn", "urlRegex", "template", "enabled", "priority"};
public static final String[] CREATE_FIELDS = ArrayUtil.append(VALUE_FIELDS, "name", "site", "rule", "connCheck", "requestCheck");
public static final String[] VALUE_FIELDS = {"fqdn", "urlRegex", "template", "enabled", "priority", "connCheck", "requestCheck"};
public static final String[] CREATE_FIELDS = ArrayUtil.append(VALUE_FIELDS, "name", "site", "rule");

public static final Pattern DEFAULT_CONTENT_TYPE_PATTERN = Pattern.compile("^text/html.*", Pattern.CASE_INSENSITIVE);
public static final String WILDCARD_FQDN = "*";


Načítá se…
Zrušit
Uložit