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

com.star.clazz.User Maven / Gradle / Ivy

package com.star.clazz;

public class User {

	private Integer id;
	private String name;

	public User() {
		super();
		// TODO Auto-generated constructor stub
	}

	public User(Integer id, String name) {
		super();
		this.id = id;
		this.name = name;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy