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); }
private static UserCV getCVObject(int cvId) { ws.SivimuWebService_Service service = new ws.SivimuWebService_Service(); ws.SivimuWebService port = service.getSivimuWebServicePort(); return port.getCVObject(cvId); }
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); }