home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / naming / CannotProceedException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.1 KB  |  56 lines

  1. package javax.naming;
  2.  
  3. import java.util.Hashtable;
  4.  
  5. public class CannotProceedException extends NamingException {
  6.    protected Name remainingNewName = null;
  7.    protected Hashtable environment = null;
  8.    protected Name altName = null;
  9.    protected Context altNameCtx = null;
  10.    private static final long serialVersionUID = 1219724816191576813L;
  11.  
  12.    public CannotProceedException(String var1) {
  13.       super(var1);
  14.    }
  15.  
  16.    public CannotProceedException() {
  17.    }
  18.  
  19.    public Hashtable getEnvironment() {
  20.       return this.environment;
  21.    }
  22.  
  23.    public void setEnvironment(Hashtable var1) {
  24.       this.environment = var1;
  25.    }
  26.  
  27.    public Name getRemainingNewName() {
  28.       return this.remainingNewName;
  29.    }
  30.  
  31.    public void setRemainingNewName(Name var1) {
  32.       if (var1 != null) {
  33.          this.remainingNewName = (Name)var1.clone();
  34.       } else {
  35.          this.remainingNewName = null;
  36.       }
  37.  
  38.    }
  39.  
  40.    public Name getAltName() {
  41.       return this.altName;
  42.    }
  43.  
  44.    public void setAltName(Name var1) {
  45.       this.altName = var1;
  46.    }
  47.  
  48.    public Context getAltNameCtx() {
  49.       return this.altNameCtx;
  50.    }
  51.  
  52.    public void setAltNameCtx(Context var1) {
  53.       this.altNameCtx = var1;
  54.    }
  55. }
  56.