Skip to content

Commit

Permalink
added support for tomcat 9 and 10
Browse files Browse the repository at this point in the history
  • Loading branch information
koval-jan committed Oct 20, 2022
1 parent e0e55ef commit 18ec256
Show file tree
Hide file tree
Showing 30 changed files with 8,258 additions and 8,310 deletions.
1 change: 1 addition & 0 deletions com.gratex.oomph.task.server.edit/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-SymbolicName: com.gratex.oomph.task.server.edit;singleton:=true
Automatic-Module-Name: com.gratex.oomph.task.server.edit
Bundle-Version: 1.0.0.qualifier
Bundle-ClassPath: .
Bundle-Activator: com.gratex.oomph.task.server.provider.ServerEditPlugin$Implementation
Expand Down
3 changes: 3 additions & 0 deletions com.gratex.oomph.task.server.edit/plugin.properties
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,6 @@ _UI_WebsphereServerVersion_WAS80_literal = Websphere 8.0
_UI_WebsphereServerTask_profileName_feature = Profile Name
_UI_WebsphereServerTask_securityUserId_feature = Security User Id
_UI_WebsphereServerTask_securityUserPassword_feature = Security User Password
_UI_TomcatServerVersion_TOMCAT90_literal = Tomcat 9.0
_UI_TomcatServerVersion_TOMCAT100_literal = Tomcat 10.0
_UI_WebsphereServerVersion_WAS9_literal = WebSphere 9
Original file line number Diff line number Diff line change
Expand Up @@ -2,94 +2,83 @@
*/
package com.gratex.oomph.task.server.provider;

import org.eclipse.oomph.base.provider.BaseEditPlugin;
import org.eclipse.oomph.setup.provider.SetupEditPlugin;

import org.eclipse.emf.common.EMFPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
import org.eclipse.oomph.base.provider.BaseEditPlugin;
import org.eclipse.oomph.setup.provider.SetupEditPlugin;

/**
* This is the central singleton for the Server edit plugin.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* This is the central singleton for the Server edit plugin. <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @generated
*/
public final class ServerEditPlugin extends EMFPlugin
{
/**
* Keep track of the singleton.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final ServerEditPlugin INSTANCE = new ServerEditPlugin();
public final class ServerEditPlugin extends EMFPlugin {
/**
* Keep track of the singleton. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public static final ServerEditPlugin INSTANCE = new ServerEditPlugin();

/**
* Keep track of the singleton.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static Implementation plugin;
/**
* Keep track of the singleton. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
private static Implementation plugin;

/**
* Create the instance.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ServerEditPlugin()
{
super(new ResourceLocator[] { BaseEditPlugin.INSTANCE, SetupEditPlugin.INSTANCE, });
}
/**
* Create the instance. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public ServerEditPlugin() {
super(new ResourceLocator[] { BaseEditPlugin.INSTANCE, SetupEditPlugin.INSTANCE, });
}

/**
* Returns the singleton instance of the Eclipse plugin.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the singleton instance.
* @generated
*/
@Override
public ResourceLocator getPluginResourceLocator()
{
return plugin;
}
/**
* Returns the singleton instance of the Eclipse plugin. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return the singleton instance.
* @generated
*/
@Override
public ResourceLocator getPluginResourceLocator() {
return plugin;
}

/**
* Returns the singleton instance of the Eclipse plugin.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the singleton instance.
* @generated
*/
public static Implementation getPlugin()
{
return plugin;
}
/**
* Returns the singleton instance of the Eclipse plugin. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return the singleton instance.
* @generated
*/
public static Implementation getPlugin() {
return plugin;
}

/**
* The actual implementation of the Eclipse <b>Plugin</b>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static class Implementation extends EclipsePlugin
{
/**
* Creates an instance.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Implementation()
{
super();
/**
* The actual implementation of the Eclipse <b>Plugin</b>. <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @generated
*/
public static class Implementation extends EclipsePlugin {
/**
* Creates an instance. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public Implementation() {
super();

// Remember the static instance.
//
plugin = this;
}
}
// Remember the static instance.
//
plugin = this;
}
}

}
Loading

0 comments on commit 18ec256

Please sign in to comment.