Created
February 13, 2016 20:37
-
-
Save HDBandit/7d2a2609e397b4208e96 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
public class GroupCreateTaskRequest extends AbstractCreateTaskRequest { | |
private String groupName; | |
public GroupCreateTaskRequest() { | |
super(TaskType.GROUP); | |
} | |
public String getGroupName() { | |
return groupName; | |
} | |
public void setGroupName(String groupName) { | |
this.groupName = groupName; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment