-
public interface DeploymentFactory
The DeploymentFactory interface is a deployment driver for a Java EE plaform product. It returns a DeploymentManager object which represents a connection to a specific Java EE platform product.Each application server vendor must provide an implementation of this class in order for the Java EE Deployment API to work with their product.
The class implementing this interface should have a public no-argument constructor, and it should be stateless (two instances of the class should always behave the same). It is suggested but not required that the class have a static initializer that registers an instance of the class with the DeploymentFactoryManager class.
A connected or disconnected DeploymentManager can be requested. A DeploymentManager that runs connected to the platform can provide access to Java EE resources. A DeploymentManager that runs disconnected only provides module deployment configuration support.
- See Also:
DeploymentFactoryManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description DeploymentManager
getDeploymentManager(String uri, String username, String password)
Return a connected DeploymentManager instance.DeploymentManager
getDisconnectedDeploymentManager(String uri)
Return a disconnected DeploymentManager instance.String
getDisplayName()
Provide a string with the name of this vendor's DeploymentManager.String
getProductVersion()
Provide a string identifying version of this vendor's DeploymentManager.boolean
handlesURI(String uri)
Tests whether this factory can create a DeploymentManager object based on the specificed URI.
-
-
-
Method Detail
-
handlesURI
boolean handlesURI(String uri)
Tests whether this factory can create a DeploymentManager object based on the specificed URI. This does not indicate whether such an attempt will be successful, only whether the factory can handle the uri.- Parameters:
uri
- The uri to check- Returns:
- true if the factory can handle the uri.
-
getDeploymentManager
DeploymentManager getDeploymentManager(String uri, String username, String password) throws DeploymentManagerCreationException
Return a connected DeploymentManager instance.- Parameters:
uri
- The URI that specifies the connection parametersusername
- An optional username (may be null if no authentication is required for this platform).password
- An optional password (may be null if no authentication is required for this platform).- Returns:
- A ready DeploymentManager instance.
- Throws:
DeploymentManagerCreationException
- occurs when a DeploymentManager could not be returned (server down, unable to authenticate, etc).
-
getDisconnectedDeploymentManager
DeploymentManager getDisconnectedDeploymentManager(String uri) throws DeploymentManagerCreationException
Return a disconnected DeploymentManager instance.- Parameters:
uri
- the uri of the DeploymentManager to return.- Returns:
- A DeploymentManager disconnected instance.
- Throws:
DeploymentManagerCreationException
- occurs if the DeploymentManager could not be created.
-
getDisplayName
String getDisplayName()
Provide a string with the name of this vendor's DeploymentManager.- Returns:
- the name of the vendor's DeploymentManager.
-
getProductVersion
String getProductVersion()
Provide a string identifying version of this vendor's DeploymentManager.- Returns:
- the name of the vendor's DeploymentManager.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 18/08/2025 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-javaee-rf-javax/enterprise/deploy/spi/factories/DeploymentFactory.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur van deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.