1 20 21 package org.apache.directory.ldapstudio.browser.core.events; 22 23 24 import org.apache.directory.ldapstudio.browser.core.model.IConnection; 25 26 27 33 public class ConnectionRenamedEvent extends ConnectionUpdateEvent 34 { 35 36 37 private String oldName; 38 39 40 46 public ConnectionRenamedEvent( IConnection connection, String oldName ) 47 { 48 super( connection, EventDetail.CONNECTION_RENAMED ); 49 this.oldName = oldName; 50 } 51 52 53 58 public String getOldName() 59 { 60 return oldName; 61 } 62 63 } 64 | Popular Tags |