1 7 8 package test.wsdl.wrapped2; 9 10 public class EmployeeDBBindingImpl implements test.wsdl.wrapped2.EmployeeDBPort{ 11 public int getEmployeeCount(int empCountReq) throws java.rmi.RemoteException { 12 return -3; 13 } 14 15 public boolean addGroups(java.lang.String [] group) throws java.rmi.RemoteException { 16 return false; 17 } 18 19 public boolean isManager(java.lang.String firstName, java.lang.String lastName) throws java.rmi.RemoteException { 20 return false; 21 } 22 23 public boolean promoteEmployee(test.wsdl.wrapped2.xsd.NameType empName, int empID) throws java.rmi.RemoteException { 24 return false; 25 } 26 27 public test.wsdl.wrapped2.xsd.EmployeeType[] getEmployees(test.wsdl.wrapped2.xsd.NameType[] name) throws java.rmi.RemoteException { 28 return null; 29 } 30 31 public boolean scheduleMtg(test.wsdl.wrapped2.xsd.EmployeeType[] employee) throws java.rmi.RemoteException { 32 return false; 33 } 34 35 } 36 | Popular Tags |