KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws349 > AssetCreate


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.jbws349;
7
8
9 public class AssetCreate extends org.jboss.test.webservice.jbws349.Event {
10     protected int nextStep;
11     protected java.lang.String JavaDoc template;
12     
13     public AssetCreate() {
14     }
15     
16     public AssetCreate(java.lang.String JavaDoc id, int nextStep, java.lang.String JavaDoc template) {
17         this.id = id;
18         this.nextStep = nextStep;
19         this.template = template;
20     }
21     
22     public int getNextStep() {
23         return nextStep;
24     }
25     
26     public void setNextStep(int nextStep) {
27         this.nextStep = nextStep;
28     }
29     
30     public java.lang.String JavaDoc getTemplate() {
31         return template;
32     }
33     
34     public void setTemplate(java.lang.String JavaDoc template) {
35         this.template = template;
36     }
37 }
38
Popular Tags