Package | Description |
---|---|
oracle.fmwplatform.envspec.model |
This package contains classes that are used to represent models of real (existing) or imagined (to be created) environments.
|
oracle.fmwplatform.envspec.model.blueprint |
Classes used to describe a Blueprint.
|
oracle.fmwplatform.envspec.model.domain |
Classes used to describe a DomainProfile.
|
Modifier and Type | Method and Description |
---|---|
Blueprint |
EnvironmentModelFileLocator.locateBlueprint(String name, String version)
Searches for a Blueprint in the search path that matches the name and version specified.
|
Blueprint |
EnvironmentModelBuilder.readBlueprint(File blueprintFile)
Reads a Blueprint from the specified file.
|
Modifier and Type | Method and Description |
---|---|
List<Blueprint> |
EnvironmentModelBuilder.getAllBlueprints()
Returns a list containing all of the Blueprints in the environment model.
|
Modifier and Type | Method and Description |
---|---|
Blueprint |
Blueprint.setBlueprints(List<Blueprint> blueprints)
Sets the list of Blueprints in this Blueprint.
|
Blueprint |
Blueprint.setExternalServices(List<String> externalServices)
Sets the list of external services in this Blueprint.
|
Blueprint |
Blueprint.setFMWVersionRange(String fmwVersionRange) |
Blueprint |
Blueprint.setName(String name) |
Blueprint |
Blueprint.setSchemaVersion(String schemaVersion) |
Blueprint |
Blueprint.setTemplates(List<Template> templates)
Sets the list of templates in this Blueprint.
|
Blueprint |
Blueprint.setVersion(String version) |
Modifier and Type | Method and Description |
---|---|
List<Blueprint> |
Blueprint.getBlueprints()
Gets the list of Blueprints available in this Blueprint.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Blueprint.addBlueprint(Blueprint blueprint)
Adds a Blueprint to the list of Blueprints in this Blueprint.
|
Modifier and Type | Method and Description |
---|---|
Blueprint |
Blueprint.setBlueprints(List<Blueprint> blueprints)
Sets the list of Blueprints in this Blueprint.
|
Modifier and Type | Method and Description |
---|---|
List<Blueprint> |
DomainProfile.getBlueprints()
Get the list of Blueprints available in this DomainProfile.
|
Modifier and Type | Method and Description |
---|---|
boolean |
DomainProfile.addBlueprint(Blueprint blueprint)
Add a blueprint to the list of blueprints in this domain profile.
|
Modifier and Type | Method and Description |
---|---|
boolean |
DomainProfile.addAllBlueprints(List<Blueprint> blueprints)
Add a list of Blueprints to the existing list of blueprints in this domain profile.
|
DomainProfile |
DomainProfile.setBlueprints(List<Blueprint> blueprints)
Sets a list of Blueprints replacing the existing list of blueprints in this domain profile.
|