
org.ioc.commons.japtsy.shared.model.domain.DebugOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ioc-commons-japtsy Show documentation
Show all versions of ioc-commons-japtsy Show documentation
Common classes required for Java Transfer Protocol System communication
package org.ioc.commons.japtsy.shared.model.domain;
import java.io.Serializable;
import org.ioc.commons.utils.Format;
public class DebugOptions implements Serializable {
/**
* Serial no.
*/
private static final long serialVersionUID = 4345512357764459291L;
private boolean prettyPrintResponseJson;
private boolean disableServerLogHolding;
public boolean isPrettyPrintResponseJson() {
return prettyPrintResponseJson;
}
public void setPrettyPrintResponseJson(boolean prettyPrintResponseJson) {
this.prettyPrintResponseJson = prettyPrintResponseJson;
}
public boolean isDisableServerLogHolding() {
return disableServerLogHolding;
}
public void setDisableServerLogHolding(boolean disableServerLogHolding) {
this.disableServerLogHolding = disableServerLogHolding;
}
@Override
public String toString() {
return Format.substitute("DebugOptions [prettyPrintResponseJson={0}, disableServerLogHolding={1}]",
prettyPrintResponseJson, disableServerLogHolding);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy