001    
002    package org.dllearner.server.jaxws;
003    
004    import javax.xml.bind.annotation.XmlAccessType;
005    import javax.xml.bind.annotation.XmlAccessorType;
006    import javax.xml.bind.annotation.XmlRootElement;
007    import javax.xml.bind.annotation.XmlType;
008    
009    
010    /**
011     * This class was generated by the JAX-WS RI.
012     * JAX-WS RI 2.1.1
013     * Generated source version: 2.1.1
014     * 
015     */
016    @XmlRootElement(name = "ClientNotKnownException", namespace = "http://server.dllearner.org/")
017    @XmlAccessorType(XmlAccessType.FIELD)
018    @XmlType(name = "ClientNotKnownException", namespace = "http://server.dllearner.org/")
019    public class ClientNotKnownExceptionBean {
020    
021        private String message;
022    
023        /**
024         * 
025         * @return
026         *     returns String
027         */
028        public String getMessage() {
029            return this.message;
030        }
031    
032        /**
033         * 
034         * @param message
035         *     the value for the message property
036         */
037        public void setMessage(String message) {
038            this.message = message;
039        }
040    
041    }