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

com.github.kaisle.data.ReplayResponse Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.kaisle.data;

/**
 * Created by Anders Borum on 03-06-2015.
 */
public class ReplayResponse {

    private String replaySalt;
    private boolean available;
    private String cluster; 
    private String match_id; 

    public ReplayResponse(String replaySalt, boolean available) {
        this.replaySalt = replaySalt;
        this.available = available;
    }
    
    

    public ReplayResponse(String replaySalt, boolean available, String cluster,
			String match_id) {
		super();
		this.replaySalt = replaySalt;
		this.available = available;
		this.cluster = cluster;
		this.match_id = match_id;
	}
    
    


	public String getCluster() {
		return cluster;
	}



	public void setCluster(String cluster) {
		this.cluster = cluster;
	}



	public String getMatch_id() {
		return match_id;
	}



	public void setMatch_id(String match_id) {
		this.match_id = match_id;
	}



	public String getReplaySalt() {
        return replaySalt;
    }

    public void setReplaySalt(String replaySalt) {
        this.replaySalt = replaySalt;
    }

    public boolean isAvailable() {
        return available;
    }

    public void setAvailable(boolean available) {
        this.available = available;
    }

    @Override
    public String toString() {
        return "ReplayResponse{" +
                "replaySalt='" + replaySalt + '\'' +
                ", available=" + available +
                ", cluster='" + cluster + '\'' +
                ", match_id='" + match_id + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy