1 2 package org.ejbca.core.protocol.ws.client.gen; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 30 @XmlAccessorType(XmlAccessType.FIELD) 31 @XmlType(name = "userMatch", propOrder = { 32 "matchtype", 33 "matchvalue", 34 "matchwith" 35 }) 36 public class UserMatch { 37 38 protected int matchtype; 39 protected String matchvalue; 40 protected int matchwith; 41 42 46 public int getMatchtype() { 47 return matchtype; 48 } 49 50 54 public void setMatchtype(int value) { 55 this.matchtype = value; 56 } 57 58 66 public String getMatchvalue() { 67 return matchvalue; 68 } 69 70 78 public void setMatchvalue(String value) { 79 this.matchvalue = value; 80 } 81 82 86 public int getMatchwith() { 87 return matchwith; 88 } 89 90 94 public void setMatchwith(int value) { 95 this.matchwith = value; 96 } 97 98 } 99 | Popular Tags |