/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/web/WebUser.java
ViewVC logotype

Annotation of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/web/WebUser.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1786 - (hide annotations) (download)
Fri Apr 6 15:06:46 2012 UTC (12 years, 2 months ago) by torben
File size: 417 byte(s)
Add code to manage web user/password
1 torben 1786 package dk.thoerup.bukkit.hoeruputils.web;
2    
3     import javax.persistence.Entity;
4     import javax.persistence.Id;
5    
6     @Entity
7     public class WebUser {
8     @Id
9     String user;
10     String password;
11    
12    
13     public String getUser() {
14     return user;
15     }
16     public void setUser(String user) {
17     this.user = user;
18     }
19     public String getPassword() {
20     return password;
21     }
22     public void setPassword(String password) {
23     this.password = password;
24     }
25    
26     }

  ViewVC Help
Powered by ViewVC 1.1.20