File: PersonalInfoBookSOAPBindingImpl.java

package info (click to toggle)
axis 1.4-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,100 kB
  • sloc: java: 129,124; xml: 10,602; jsp: 983; sh: 84; cs: 36; makefile: 18
file content (29 lines) | stat: -rw-r--r-- 1,163 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * PersonalInfoBookSOAPBindingImpl.java
 *
 * Hand-modified
 */

package test.wsdl.arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Vector;

public class PersonalInfoBookSOAPBindingImpl implements test.wsdl.arrays.PersonalInfoBook {
    private Map table = new HashMap();
    public void addEntry(java.lang.String name, test.wsdl.arrays.PersonalInfo info) throws java.rmi.RemoteException {
        this.table.put(name, info);
    }
    public test.wsdl.arrays.PersonalInfo getPersonalInfoFromName(java.lang.String name) throws java.rmi.RemoteException {
        return (test.wsdl.arrays.PersonalInfo) table.get(name);
    }
    public Vector getPetsFromName(java.lang.String name) throws java.rmi.RemoteException {
        return ((test.wsdl.arrays.PersonalInfo) table.get(name)).getPets();
    }
    public int[] getIDFromName(java.lang.String name) throws java.rmi.RemoteException {
        return ((test.wsdl.arrays.PersonalInfo) table.get(name)).getId();
    }
    public int getID2FromName(java.lang.String name) throws java.rmi.RemoteException {
        return ((test.wsdl.arrays.PersonalInfo) table.get(name)).getId2();
    }
}