com.ibm.wsspi.al

Interface LocatorDefinition


  1. public interface LocatorDefinition
This is the interface that locator definitions need to implement. This interface is actually the java representation of the corresponding emf model that gets generated when configuration file for the artifactloader is loaded in the memory. In the configuration file there is a locator definition for each locator that is available. That definition has some properties and in this interface there are get methods specified for those properties.

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT
This is copyright for this class / interface

Method Summary

Modifier and Type Method and Description
  1. java.util.List
getEnvironments()
Method to find out the environments this locator supports.
  1. java.lang.String
getImplementation()
Method to get the complete instantiable class name of the locator implementation.
  1. java.util.List
getMimes()
Method to find out the supported mimes by this locator.
  1. java.lang.String
getName()
Method to get the name of the locator implementation.

Field Detail

  1. static final java.lang.String COPYRIGHT
This is copyright for this class / interface
See Also:

Method Detail

getName

  1. java.lang.String getName()
Method to get the name of the locator implementation.
Returns:
Returns the name of the locator implementation.

getImplementation

  1. java.lang.String getImplementation( )
Method to get the complete instantiable class name of the locator implementation.
Returns:
Returns the class name of the locator implementation.

getMimes

  1. java.util.List getMimes()
Method to find out the supported mimes by this locator.
Returns:
Returns the mimes supported by the locator implementation.

getEnvironments

  1. java.util.List getEnvironments( )
Method to find out the environments this locator supports.
Returns:
Returns the list of environments that this locator works in.