1 2 package com.ontotext.ordi.wsmo4rdf.remote.client.conn; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlElement; 7 import javax.xml.bind.annotation.XmlType; 8 9 10 /** 11 * <p>Java class for NonExistingEntryException complex type. 12 * 13 * <p>The following schema fragment specifies the expected content contained within this class. 14 * 15 * <pre> 16 * <complexType name="NonExistingEntryException"> 17 * <complexContent> 18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 19 * <sequence> 20 * <element name="serialVersionUID" type="{http://www.w3.org/2001/XMLSchema}long"/> 21 * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/> 22 * </sequence> 23 * </restriction> 24 * </complexContent> 25 * </complexType> 26 * </pre> 27 * 28 * 29 */ 30 @XmlAccessorType(XmlAccessType.FIELD) 31 @XmlType(name = "NonExistingEntryException", propOrder = { 32 "serialVersionUID", 33 "message" 34 }) 35 public class NonExistingEntryException { 36 37 @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", required = true, type = Long.class, nillable = true) 38 protected Long serialVersionUID; 39 @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", required = true, nillable = true) 40 protected String message; 41 42 /** 43 * Gets the value of the serialVersionUID property. 44 * 45 * @return 46 * possible object is 47 * {@link Long } 48 * 49 */ 50 public Long getSerialVersionUID() { 51 return serialVersionUID; 52 } 53 54 /** 55 * Sets the value of the serialVersionUID property. 56 * 57 * @param value 58 * allowed object is 59 * {@link Long } 60 * 61 */ 62 public void setSerialVersionUID(Long value) { 63 this.serialVersionUID = value; 64 } 65 66 /** 67 * Gets the value of the message property. 68 * 69 * @return 70 * possible object is 71 * {@link String } 72 * 73 */ 74 public String getMessage() { 75 return message; 76 } 77 78 /** 79 * Sets the value of the message property. 80 * 81 * @param value 82 * allowed object is 83 * {@link String } 84 * 85 */ 86 public void setMessage(String value) { 87 this.message = value; 88 } 89 90 }