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

com.github.debugthug.xo.Fault Maven / Gradle / Ivy

Go to download

Simple library having an App to test the XML requests and responses of TruJet.

The newest version!
package com.github.debugthug.xo;

import com.thoughtworks.xstream.annotations.XStreamAlias;

@XStreamAlias("soap:Fault")
public class Fault {

	@XStreamAlias("soap:Code")
	private Code code;
	
	@XStreamAlias("")
	private Reason reason;
	
	@XStreamAlias("soap:Detail")
	private Detail detail;
	
	@XStreamAlias("faultcode")
	private String faultcode;
	
	@XStreamAlias("faultstring")
	private String faultstring;
	
	@XStreamAlias("detail")
	private String detail1;
	
	public String getFaultcode() {
		return faultcode;
	}

	public void setFaultcode(String faultcode) {
		this.faultcode = faultcode;
	}

	public String getFaultstring() {
		return faultstring;
	}

	public void setFaultstring(String faultstring) {
		this.faultstring = faultstring;
	}

	public String getDetail1() {
		return detail1;
	}

	public void setDetail1(String detail1) {
		this.detail1 = detail1;
	}

	public Detail getDetail() {
		return detail;
	}

	public void setDetail(Detail detail) {
		this.detail = detail;
	}

	public Reason getReason() {
		return reason;
	}

	public void setReason(Reason reason) {
		this.reason = reason;
	}

	public Code getCode() {
		return code;
	}

	public void setCode(Code code) {
		this.code = code;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy