com.centurylink.mdw.plugin.server.JBossServerConfigurator.java Source code

Java tutorial

Introduction

Here is the source code for com.centurylink.mdw.plugin.server.JBossServerConfigurator.java

Source

/*
 * Copyright (C) 2017 CenturyLink, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.centurylink.mdw.plugin.server;

import java.io.IOException;

import javax.xml.parsers.ParserConfigurationException;

import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.swt.widgets.Shell;
import org.xml.sax.SAXException;

import com.centurylink.mdw.plugin.project.model.ServerSettings;

public class JBossServerConfigurator extends ServerConfigurator {
    public JBossServerConfigurator(ServerSettings serverSettings) {
        super(serverSettings);
    }

    public void doConfigure(Shell shell) {
        MessageDialog.openWarning(shell, "TODO", "Not yet implemented for JBoss");
    }

    public void doDeploy(Shell shell) {
        MessageDialog.openWarning(shell, "TODO", "Not yet implemented for JBoss");
    }

    public String launchNewServerCreation(Shell shell) {

        MessageDialog.openWarning(shell, "TODO", "Not yet implemented for JBoss");
        return null;
    }

    public void parseServerAdditionalInfo() throws IOException, SAXException, ParserConfigurationException {
        // TODO
    }

    @Override
    public String[] getEnvironment(boolean debug) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getCommandDir() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getStartCommand() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getStopCommand() {
        // TODO Auto-generated method stub
        return null;
    }

}