jdk/test/java/net/Inet4Address/DummyNameServiceDescriptor.java
author michaelm
Mon, 28 Apr 2014 13:49:49 +0100
changeset 24124 5f5f7f7a4328
permissions -rw-r--r--
8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24124
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     1
/*
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     4
 *
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     8
 *
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    13
 * accompanied this code).
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    14
 *
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    18
 *
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    21
 * questions.
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    22
 */
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    23
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    24
/*
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    25
 * Descriptor for the dummy name service
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    26
 */
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    27
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    28
import sun.net.spi.nameservice.*;
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    29
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    30
public final class DummyNameServiceDescriptor implements NameServiceDescriptor {
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    31
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    32
    /**
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    33
     * Create a new instance of the corresponding name service.
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    34
     */
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    35
    public NameService createNameService() throws Exception {
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    36
        return new DummyNameService();
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    37
    }
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    38
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    39
    /**
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    40
     * Returns this service provider's name
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    41
     *
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    42
     */
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    43
    public String getProviderName() {
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    44
        return "oracle";
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    45
    }
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    46
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    47
    /**
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    48
     * Returns this name service type
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    49
     * "dns" "nis" etc
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    50
     */
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    51
    public String getType() {
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    52
        return "dummy";
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    53
    }
5f5f7f7a4328 8041621: java/net/Inet4Address/textToNumericFormat.java fails on Solaris and Mac
michaelm
parents:
diff changeset
    54
}