Skip to content

Instantly share code, notes, and snippets.

@dlinsin
Created November 17, 2009 01:18
Show Gist options
  • Save dlinsin/236519 to your computer and use it in GitHub Desktop.
Save dlinsin/236519 to your computer and use it in GitHub Desktop.
public class IssueResponse {
private Issue issue;
public Issue getIssue() {
return issue;
}
public void setIssue(Issue argIssue) {
issue = argIssue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment