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

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

package com.github.debugthug.xo;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;

@XStreamAlias("Error")
public class Errorr {

	@XStreamAsAttribute
	@XStreamAlias("Code")
	private String code;
	
	@XStreamAsAttribute
	@XStreamAlias("Description")
	private String description;
	
	@XStreamAsAttribute
	@XStreamAlias("Desc")
	private String desc;

	public String getDesc() {
		return desc;
	}

	public void setDesc(String desc) {
		this.desc = desc;
	}

	public String getCode() {
		return code;
	}

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

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy