Created
May 26, 2012 11:38
-
-
Save Eugeny/2793602 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@Table | |
public class Host extends Model<Host> { | |
@Column | |
@SortBy | |
public String name = "New host"; | |
@Column | |
public HostGroup hostGroup; | |
@Column | |
public String hostName; | |
@Column | |
public String username = "root"; | |
@Column | |
public String password; | |
@Column | |
public int port = 22; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment