LinkRewriteConfig.java
588 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.rewriter.linkchecker;
public class LinkRewriteConfig {
private final boolean remove;
private final String prefix;
private final String suffix;
public LinkRewriteConfig(boolean remove, String prefix, String suffix) {
this.remove = remove;
this.prefix = prefix;
this.suffix = suffix;
}
public boolean remove() {
return this.remove;
}
public String getPrefix() {
return this.prefix;
}
public String getSuffix() {
return this.suffix;
}
}