KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws637 > CheckTextBody


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.3, build R1)
4
// Generated source version: 1.1.3
5

6 package org.jboss.test.webservice.jbws637;
7
8
9 public class CheckTextBody {
10     protected java.lang.String JavaDoc bodyText;
11     protected java.lang.String JavaDoc licenseKey;
12     
13     public CheckTextBody() {
14     }
15     
16     public CheckTextBody(java.lang.String JavaDoc bodyText, java.lang.String JavaDoc licenseKey) {
17         this.bodyText = bodyText;
18         this.licenseKey = licenseKey;
19     }
20     
21     public java.lang.String JavaDoc getBodyText() {
22         return bodyText;
23     }
24     
25     public void setBodyText(java.lang.String JavaDoc bodyText) {
26         this.bodyText = bodyText;
27     }
28     
29     public java.lang.String JavaDoc getLicenseKey() {
30         return licenseKey;
31     }
32     
33     public void setLicenseKey(java.lang.String JavaDoc licenseKey) {
34         this.licenseKey = licenseKey;
35     }
36 }
37
Popular Tags