Package org.fusesource.ide.server.fabric8.core.server

Source Code of org.fusesource.ide.server.fabric8.core.server.Fabric8ServerDelegate

/*******************************************************************************
* Copyright (c) 2013 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.fusesource.ide.server.fabric8.core.server;

import org.eclipse.core.runtime.CoreException;
import org.fusesource.ide.server.fabric8.core.server.subsystems.Fabric81xStartupLaunchConfigurator;
import org.fusesource.ide.server.karaf.core.server.KarafServerDelegate;
import org.jboss.ide.eclipse.as.core.server.ILaunchConfigConfigurator;

/**
* @author lhein
*/
public class Fabric8ServerDelegate extends KarafServerDelegate {
 
  public static final String DEFAULT_FABRIC8_SSH_USER = "admin";
  public static final String DEFAULT_FABRIC8_SSH_PASSWORD = "admin";
 
  @Override
  protected String getDefaultUsername() {
    return DEFAULT_FABRIC8_SSH_USER;
  }
 
  @Override
  protected String getDefaultPassword() {
    return DEFAULT_FABRIC8_SSH_PASSWORD;
  }
 
  @Override
  public ILaunchConfigConfigurator getLaunchConfigurator() throws CoreException {
    return new Fabric81xStartupLaunchConfigurator(getServer());
  }
}
TOP

Related Classes of org.fusesource.ide.server.fabric8.core.server.Fabric8ServerDelegate

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.