private java.util.List<java.lang.Object> retrieveAllAccount(java.lang.String email) { // Note that the injected javax.xml.ws.Service reference as well as port objects are not thread // safe. // If the calling of port operations may lead to race condition some synchronization is // required. org.accountmanagementws.AccountManagementWS port = service_1.getAccountManagementWSPort(); return port.retrieveAllAccount(email); }
private Integer updateStatus( java.lang.String performerEmail, java.lang.String email, java.lang.String status) { // Note that the injected javax.xml.ws.Service reference as well as port objects are not thread // safe. // If the calling of port operations may lead to race condition some synchronization is // required. org.accountmanagementws.AccountManagementWS port = service_1.getAccountManagementWSPort(); return port.updateStatus(performerEmail, email, status); }