< prev index next >

test/sun/rmi/transport/proxy/DisableHttpDefaultValue.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 8023862
  26  * @summary Verify that the default value of the java.rmi.server.disableHttp
  27  *          has been changed from false to true.

  28  * @compile -XDignore.symbol.file DisableHttpDefaultValue.java
  29  *
  30  * @run main/othervm                                     DisableHttpDefaultValue true
  31  * @run main/othervm -Djava.rmi.server.disableHttp       DisableHttpDefaultValue false
  32  * @run main/othervm -Djava.rmi.server.disableHttp=false DisableHttpDefaultValue false
  33  * @run main/othervm -Djava.rmi.server.disableHttp=xyzzy DisableHttpDefaultValue false
  34  * @run main/othervm -Djava.rmi.server.disableHttp=true  DisableHttpDefaultValue true
  35  */
  36 
  37 import sun.rmi.transport.proxy.RMIMasterSocketFactory;
  38 
  39 public class DisableHttpDefaultValue {
  40     /**
  41      * Subclass RMIMasterSocketFactory to get access to
  42      * protected field altFactoryList. This list has a
  43      * zero size if proxying is disabled.
  44      */
  45     static class SocketFactory extends RMIMasterSocketFactory {
  46         boolean proxyDisabled() {
  47             return altFactoryList.size() == 0;




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 8023862
  26  * @summary Verify that the default value of the java.rmi.server.disableHttp
  27  *          has been changed from false to true.
  28  * @modules java.rmi/sun.rmi.transport.proxy
  29  * @compile -XDignore.symbol.file DisableHttpDefaultValue.java
  30  *
  31  * @run main/othervm                                     DisableHttpDefaultValue true
  32  * @run main/othervm -Djava.rmi.server.disableHttp       DisableHttpDefaultValue false
  33  * @run main/othervm -Djava.rmi.server.disableHttp=false DisableHttpDefaultValue false
  34  * @run main/othervm -Djava.rmi.server.disableHttp=xyzzy DisableHttpDefaultValue false
  35  * @run main/othervm -Djava.rmi.server.disableHttp=true  DisableHttpDefaultValue true
  36  */
  37 
  38 import sun.rmi.transport.proxy.RMIMasterSocketFactory;
  39 
  40 public class DisableHttpDefaultValue {
  41     /**
  42      * Subclass RMIMasterSocketFactory to get access to
  43      * protected field altFactoryList. This list has a
  44      * zero size if proxying is disabled.
  45      */
  46     static class SocketFactory extends RMIMasterSocketFactory {
  47         boolean proxyDisabled() {
  48             return altFactoryList.size() == 0;


< prev index next >