All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ioc.commons.japtsy.shared.model.domain.DebugOptions Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
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