예제 #1
0
 private static java.util.List<ws.UserCV> getAllCV(java.lang.String username) {
   ws.SivimuWebService_Service service = new ws.SivimuWebService_Service();
   ws.SivimuWebService port = service.getSivimuWebServicePort();
   return port.getAllCV(username);
 }
예제 #2
0
 private static UserCV getCVObject(int cvId) {
   ws.SivimuWebService_Service service = new ws.SivimuWebService_Service();
   ws.SivimuWebService port = service.getSivimuWebServicePort();
   return port.getCVObject(cvId);
 }
예제 #3
0
 private static boolean tryLogin(java.lang.String username, java.lang.String password) {
   ws.SivimuWebService_Service service = new ws.SivimuWebService_Service();
   ws.SivimuWebService port = service.getSivimuWebServicePort();
   return port.tryLogin(username, password);
 }