package ws; /** * This is the implementation bean class for the UserService web service. * Created Oct 6, 2004 2:00:27 PM * @author jungi */ public class UserServiceImpl implements UserServiceSEI { /** * Web service operation */ public ws.User getUser() { //throw new UnsupportedOperationException("expected"); return new ws.User(); } /** * Web service operation */ public String operation() throws NoUserExc { throw new NoUserExc("expected"); } // Enter web service operations here. (Popup menu: Web Service->Add Operation) } class NoUserExc extends Exception { public NoUserExc(String s) { super(s); } }