Interface IWebServerCategory


  • public interface IWebServerCategory
    Describes a specific category of web servers. Web server categories are defined by extensions. A web server category extensions is defined in plugin.xml.

    Following is an example definition of web server category extension:

     <extension point="com._1c.g5.v8.dt.platform.services.core.webServerCategories">
       <webServerCategory
          id="com.example.ExampleCaregoryIdentifier"
          name="Example Category Name">
       </webServerCategory>
     </extension>
    Defined web server categories are automatically added to web servers creation wizard.

    Clients may use IWebServerTypesRegistry to get all registered categories.

    Restriction:
    This interface is not intended to be extended by clients.
    Restriction:
    This interface is not intended to be implemented by clients.
    • Method Detail

      • getId

        String getId()
        Returns this web server category identifier. This corresponds to the 'id' attribute specified in the extension definition.
        Returns:
        web server category identifier, never null
      • getName

        String getName()
        Returns this web server category name. This corresponds to the 'name' attribute specified in the extension definition.
        Returns:
        web server category name, never null