Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created May 26, 2012 11:38
Show Gist options
  • Save Eugeny/2793602 to your computer and use it in GitHub Desktop.
Save Eugeny/2793602 to your computer and use it in GitHub Desktop.
@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