Skip to content

Instantly share code, notes, and snippets.

@ChangJoo-Park
Created April 24, 2013 12:57
Show Gist options
  • Save ChangJoo-Park/5451932 to your computer and use it in GitHub Desktop.
Save ChangJoo-Park/5451932 to your computer and use it in GitHub Desktop.
/**
* Created with IntelliJ IDEA.
* User: changju
* Date: 13. 4. 24
* Time: 오후 9:40
* To change this template use File | Settings | File Templates.
*/
package javaBean;
public class User {
private String userId;
private String userPassword;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserPassword() {
return userPassword;
}
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment