From: Andreas W. <an...@us...> - 2005-11-08 11:24:38
|
Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/delegate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28675/src/net/sf/magicmap/client/delegate Modified Files: PositionDelegate.java Log Message: Aenderungen von DeletePosition und MovePosition wie im Server und wsdls angepasst. Index: PositionDelegate.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/delegate/PositionDelegate.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PositionDelegate.java 7 Nov 2005 14:18:25 -0000 1.4 --- PositionDelegate.java 8 Nov 2005 11:24:19 -0000 1.5 *************** *** 101,107 **** * @see com.saugstation.pacw.generated.PositionFacade#deletePosition(long, long) */ ! public void deletePosition(long sessionId, long positionId) throws RemoteException, MapException, SessionException{ try{ ! this.binding.deletePosition(sessionId, positionId); } catch (Exception e){ throw ExceptionHandler.checkException(e); --- 101,107 ---- * @see com.saugstation.pacw.generated.PositionFacade#deletePosition(long, long) */ ! public void deletePosition(long sessionId, String mapname, long positionId) throws RemoteException, MapException, SessionException{ try{ ! this.binding.deletePosition(sessionId, mapname, positionId); } catch (Exception e){ throw ExceptionHandler.checkException(e); |