Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created February 13, 2016 20:37
Show Gist options
  • Save HDBandit/7d2a2609e397b4208e96 to your computer and use it in GitHub Desktop.
Save HDBandit/7d2a2609e397b4208e96 to your computer and use it in GitHub Desktop.
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