Created
September 28, 2015 21:40
-
-
Save koenighotze/3f869a3c46aec29b0a17 to your computer and use it in GitHub Desktop.
Hello without ORM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package hello; | |
import javax.enterprise.inject.Model; | |
import java.io.Serializable; | |
@Model | |
public class Hello implements Serializable { | |
private String name; | |
public String getName() { | |
return name; | |
} | |
public void setName(String name) { | |
this.name = name; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment