< prev index next >

src/java.naming/share/classes/javax/naming/LinkException.java

Print this page


   1 /*
   2  * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  68      * Contains the part of the link that has been successfully resolved.
  69      * It is a composite name and can be null.
  70      * This field is initialized by the constructors.
  71      * You should access and manipulate this field
  72      * through its get and set methods.
  73      * @serial
  74      * @see #getLinkResolvedName
  75      * @see #setLinkResolvedName
  76      */
  77     protected Name linkResolvedName;
  78 
  79     /**
  80       * Contains the object to which resolution of the part of the link was successful.
  81       * Can be null. This field is initialized by the constructors.
  82       * You should access and manipulate this field
  83       * through its get and set methods.
  84       * @serial
  85       * @see #getLinkResolvedObj
  86       * @see #setLinkResolvedObj
  87       */

  88     protected Object linkResolvedObj;
  89 
  90     /**
  91      * Contains the remaining link name that has not been resolved yet.
  92      * It is a composite name and can be null.
  93      * This field is initialized by the constructors.
  94      * You should access and manipulate this field
  95      * through its get and set methods.
  96      * @serial
  97      * @see #getLinkRemainingName
  98      * @see #setLinkRemainingName
  99      */
 100     protected Name linkRemainingName;
 101 
 102     /**
 103      * Contains the exception of why resolution of the link failed.
 104      * Can be null. This field is initialized by the constructors.
 105      * You should access and manipulate this field
 106      * through its get and set methods.
 107      * @serial


   1 /*
   2  * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  68      * Contains the part of the link that has been successfully resolved.
  69      * It is a composite name and can be null.
  70      * This field is initialized by the constructors.
  71      * You should access and manipulate this field
  72      * through its get and set methods.
  73      * @serial
  74      * @see #getLinkResolvedName
  75      * @see #setLinkResolvedName
  76      */
  77     protected Name linkResolvedName;
  78 
  79     /**
  80       * Contains the object to which resolution of the part of the link was successful.
  81       * Can be null. This field is initialized by the constructors.
  82       * You should access and manipulate this field
  83       * through its get and set methods.
  84       * @serial
  85       * @see #getLinkResolvedObj
  86       * @see #setLinkResolvedObj
  87       */
  88     @SuppressWarnings("serial") // Not statically typed as Serializable
  89     protected Object linkResolvedObj;
  90 
  91     /**
  92      * Contains the remaining link name that has not been resolved yet.
  93      * It is a composite name and can be null.
  94      * This field is initialized by the constructors.
  95      * You should access and manipulate this field
  96      * through its get and set methods.
  97      * @serial
  98      * @see #getLinkRemainingName
  99      * @see #setLinkRemainingName
 100      */
 101     protected Name linkRemainingName;
 102 
 103     /**
 104      * Contains the exception of why resolution of the link failed.
 105      * Can be null. This field is initialized by the constructors.
 106      * You should access and manipulate this field
 107      * through its get and set methods.
 108      * @serial


< prev index next >