Skip to content

Instantly share code, notes, and snippets.

@davit
Created December 23, 2013 11:44
Show Gist options
  • Save davit/8095770 to your computer and use it in GitHub Desktop.
Save davit/8095770 to your computer and use it in GitHub Desktop.
Java user login homework
package cst.dave;
/**
* Created with IntelliJ IDEA.
* User: root
* Date: 12/23/13
* Time: 3:32 PM
* To change this template use File | Settings | File Templates.
*/
public class User {
private String user;
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment