Skip to content

Instantly share code, notes, and snippets.

@mroger
Last active May 31, 2016 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mroger/e3e1b1f623429db38140293cd42a3033 to your computer and use it in GitHub Desktop.
Save mroger/e3e1b1f623429db38140293cd42a3033 to your computer and use it in GitHub Desktop.
Person entity for proxy matcher
package br.org.roger.model;
import java.util.List;
public class Person {
private String name;
private int age;
private List<String> options;
//Getters and setters ommited
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment