01: /*- SD_Rename.java ------------------------------------------------+
02: | |
03: | Copyright (C) 2002-2003 Joseph Monti, LlamaChat |
04: | countjoe@users.sourceforge.net |
05: | http://www.42llamas.com/LlamaChat/ |
06: | |
07: | This program is free software; you can redistribute it and/or |
08: | modify it under the terms of the GNU General Public License |
09: | as published by the Free Software Foundation; either version 2 |
10: | of the License, or (at your option) any later version |
11: | |
12: | This program is distributed in the hope that it will be useful, |
13: | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14: | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15: | GNU General Public License for more details. |
16: | |
17: | A copy of the GNU General Public License may be found in the |
18: | installation directory named "GNUGPL.txt" |
19: | |
20: +-----------------------------------------------------------------+
21: */
22:
23: package common.sd;
24:
25: import java.io.Serializable;
26: import common.SocketConnection;
27:
28: /* -------------------- JavaDoc Information ----------------------*/
29: /**
30: * Replace information on this file with your file's information.
31: * @author Joseph Monti <a href="mailto:countjoe@users.sourceforge.net">countjoe@users.sourceforge.net</a>
32: * @version 0.8
33: */
34: public class SD_Rename implements SocketData, Serializable {
35: private String oldName;
36: private String newName;
37:
38: public SD_Rename(String on, String nn) {
39: oldName = on;
40: newName = nn;
41: }
42:
43: public void performAction(SocketConnection sc) {
44: sc.rename(oldName, newName);
45: }
46: }
|