Skip to content

Commit

Permalink
Change the name of the accessor method to match the database.
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Nov 14, 2009
1 parent 2016745 commit 2abf8e2
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -24,16 +24,16 @@ public class NodeGroup {

private static final long serialVersionUID = -8244845505598568994L;

private String groupId;
private String nodeGroupId;

private String description;

public String getGroupId() {
return groupId;
public String getNodeGroupId() {
return nodeGroupId;
}

public void setGroupId(String name) {
this.groupId = name;
public void setNodeGroupId(String name) {
this.nodeGroupId = name;
}

public String getDescription() {
Expand Down

0 comments on commit 2abf8e2

Please sign in to comment.