/Prototipo/PrototipoCommons/src/memoria/commons/dataAccess/query/QueryParams.java

http://prototipomemoria.googlecode.com/ · Java · 42 lines · 13 code · 11 blank · 18 comment · 0 complexity · 562de0886b44f26e0934755b4adbf10f MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package memoria.commons.dataAccess.query;
  6. /**
  7. *
  8. * @author diego
  9. */
  10. public class QueryParams {
  11. protected String attribute_value;
  12. protected String attribute_name;
  13. protected String comparison_operation;
  14. protected Class entity_clazz;
  15. /**
  16. * Get the value of string
  17. *
  18. * @return the value of string
  19. */
  20. public String getAttribute_value() {
  21. return attribute_value;
  22. }
  23. /**
  24. * Set the value of string
  25. *
  26. * @param string new value of string
  27. */
  28. public void setAttribute_value(String string) {
  29. this.attribute_value = string;
  30. }
  31. }