/servers/jain-slee/core/components/components/src/main/java/org/mobicents/slee/container/component/deployment/jaxb/descriptors/profile/query/MCompare.java

http://mobicents.googlecode.com/ · Java · 72 lines · 32 code · 12 blank · 28 comment · 0 complexity · c1d5c1ac00f4d41d94da89cde6fac12a MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.mobicents.slee.container.component.deployment.jaxb.descriptors.profile.query;
  23. import org.mobicents.slee.container.component.profile.query.CompareDescriptor;
  24. /**
  25. * Start time:11:33:37 2009-01-29<br>
  26. * Project: mobicents-jainslee-server-core<br>
  27. *
  28. * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a>
  29. * @author <a href="mailto:brainslog@gmail.com"> Alexandre Mendonca </a>
  30. */
  31. public class MCompare implements CompareDescriptor {
  32. private String attributeName;
  33. private String op;
  34. private String value;
  35. private String parameter;
  36. private String collatorRef;
  37. public MCompare(org.mobicents.slee.container.component.deployment.jaxb.slee11.profile.Compare compare11)
  38. {
  39. this.attributeName = compare11.getAttributeName();
  40. this.op = compare11.getOp();
  41. this.value = compare11.getValue();
  42. this.parameter = compare11.getParameter();
  43. this.collatorRef = compare11.getCollatorRef();
  44. }
  45. public String getAttributeName() {
  46. return attributeName;
  47. }
  48. public String getOp() {
  49. return op;
  50. }
  51. public String getValue() {
  52. return value;
  53. }
  54. public String getParameter() {
  55. return parameter;
  56. }
  57. public String getCollatorRef() {
  58. return collatorRef;
  59. }
  60. }