~ubuntu-branches/ubuntu/utopic/389-admin-console/utopic

« back to all changes in this revision

Viewing changes to src/com/netscape/management/admserv/panel/AdminConfigData.java

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2011-10-12 11:05:09 UTC
  • Revision ID: package-import@ubuntu.com-20111012110509-ybd1jr5xeat2ug1i
Tags: upstream-1.1.8
ImportĀ upstreamĀ versionĀ 1.1.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** BEGIN COPYRIGHT BLOCK
 
2
 * Copyright (C) 2001 Sun Microsystems, Inc.  Used by permission.
 
3
 * Copyright (C) 2005 Red Hat, Inc.
 
4
 * All rights reserved.
 
5
 * 
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License
 
8
 * as published by the Free Software Foundation; version 2
 
9
 * of the License.
 
10
 * 
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 * 
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
 * 
 
20
 * END COPYRIGHT BLOCK **/
 
21
package com.netscape.management.admserv.panel;
 
22
 
 
23
import java.util.*;
 
24
import java.net.*;
 
25
import com.netscape.management.client.util.*;
 
26
import com.netscape.management.client.console.ConsoleInfo;
 
27
import com.netscape.management.admserv.config.*;
 
28
 
 
29
/**
 
30
  *
 
31
  * @version 0.1 11/28/97
 
32
  * @author miodrag@netscape.com
 
33
  */
 
34
public class AdminConfigData extends CGIAggregateDataModel {
 
35
    public AdminConfigData(ConsoleInfo consoleInfo) {
 
36
        super(consoleInfo);
 
37
    }
 
38
 
 
39
    /**
 
40
         * Check if the server is NT platform
 
41
        */
 
42
    static public boolean isWindowsNTPlatform(ConsoleInfo ci) {
 
43
        String platform = (String) ci.getAdminOS();
 
44
        return (platform != null && platform.startsWith("Win"));
 
45
    }
 
46
 
 
47
    static public boolean isRunning(String adminURL) {
 
48
        try {
 
49
            URL serverURL = new URL(adminURL);
 
50
            URLConnection server = serverURL.openConnection();
 
51
            server.connect();
 
52
            return true;
 
53
        } catch (MalformedURLException ex) {
 
54
            Debug.println("ERROR AdminConfigData.isRunning: bad URL " +
 
55
                    adminURL);
 
56
        }
 
57
        catch (java.io.IOException ex) {
 
58
            Debug.println("AdminConfigData.isRunning: " + ex);
 
59
        }
 
60
 
 
61
        return false;
 
62
    }
 
63
}