KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > header > SessionHeaderHolder


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.2, build R23)
4

5 /*
6   * JBoss, Home of Professional Open Source
7   * Copyright 2005, JBoss Inc., and individual contributors as indicated
8   * by the @authors tag. See the copyright.txt in the distribution for a
9   * full listing of individual contributors.
10   *
11   * This is free software; you can redistribute it and/or modify it
12   * under the terms of the GNU Lesser General Public License as
13   * published by the Free Software Foundation; either version 2.1 of
14   * the License, or (at your option) any later version.
15   *
16   * This software is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   * Lesser General Public License for more details.
20   *
21   * You should have received a copy of the GNU Lesser General Public
22   * License along with this software; if not, write to the Free
23   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
25   */

26 package org.jboss.test.webservice.header;
27
28
29 import javax.xml.rpc.holders.Holder JavaDoc;
30
31 public class SessionHeaderHolder implements Holder JavaDoc
32 {
33    public org.jboss.test.webservice.header.SessionHeader value;
34
35    public SessionHeaderHolder()
36    {
37    }
38
39    public SessionHeaderHolder(org.jboss.test.webservice.header.SessionHeader mySessionHeader)
40    {
41       this.value = mySessionHeader;
42    }
43 }
44
Popular Tags