Player.java 810 Bytes
package com.pipi.qa.bean;

public class Player {

    private String env;
    
    private String mobile;
    
    private String techLevelId;
    
    private String id;
    
    private String categoryId;
    
	public String getEnv() {
		return env;
	}
	public void setEnv(String env) {
		this.env = env;
	}
	public String getMobile() {
		return mobile;
	}
	public void setMobile(String mobile) {
		this.mobile = mobile;
	}
	
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public String getTechLevelId() {
		return techLevelId;
	}
	public void setTechLevelId(String techLevelId) {
		this.techLevelId = techLevelId;
	}
	public String getCategoryId() {
		return categoryId;
	}
	public void setCategoryId(String categoryId) {
		this.categoryId = categoryId;
	}	

}