Java Code Examples for org.jboss.as.server.deployment.DeploymentPhaseContext#getDeploymentUnit()
The following examples show how to use
org.jboss.as.server.deployment.DeploymentPhaseContext#getDeploymentUnit() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DriverDependenciesProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 6 votes |
@Override public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); final ModuleSpecification moduleSpecification = deploymentUnit.getAttachment(Attachments.MODULE_SPECIFICATION); final ModuleLoader moduleLoader = Module.getBootModuleLoader(); if (deploymentUnit.hasAttachment(Attachments.RESOURCE_ROOTS)) { final List<ResourceRoot> resourceRoots = deploymentUnit.getAttachmentList(Attachments.RESOURCE_ROOTS); for (ResourceRoot root : resourceRoots) { VirtualFile child = root.getRoot().getChild(SERVICE_FILE_NAME); if (child.exists()) { moduleSpecification.addSystemDependency(new ModuleDependency(moduleLoader, JTA, false, false, false, false)); break; } } } }
Example 2
Source File: ClassFileTransformerProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 6 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); final DelegatingClassFileTransformer transformer = deploymentUnit.getAttachment(DelegatingClassFileTransformer.ATTACHMENT_KEY); final ModuleSpecification moduleSpecification = deploymentUnit.getAttachment(Attachments.MODULE_SPECIFICATION); final Module module = deploymentUnit.getAttachment(Attachments.MODULE); if (module == null || transformer == null) { return; } try { for (String transformerClassName : moduleSpecification.getClassFileTransformers()) { transformer.addTransformer((ClassFileTransformer) module.getClassLoader().loadClass(transformerClassName).newInstance()); } // activate transformer only after all delegate transformers have been added // so that transformers themselves are not instrumented transformer.setActive(true); } catch (Exception e) { throw ServerLogger.ROOT_LOGGER.failedToInstantiateClassFileTransformer(ClassFileTransformer.class.getSimpleName(), e); } }
Example 3
Source File: CamelDeploymentSettingsProcessor.java From wildfly-camel with Apache License 2.0 | 6 votes |
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit depUnit = phaseContext.getDeploymentUnit(); CamelDeploymentSettings.Builder depSettingsBuilder = depUnit .removeAttachment(CamelDeploymentSettings.BUILDER_ATTACHMENT_KEY); if (depSettingsBuilder != null && depUnit.getParent() == null) { /* * We do this only for parentless deployments because for ones that have a parent the build and attachment * is done by CamelDeploymentSettings.Builder.build() if the parent */ final CamelDeploymentSettings depSettings = depSettingsBuilder.build(); depUnit.putAttachment(CamelDeploymentSettings.ATTACHMENT_KEY, depSettings); } }
Example 4
Source File: DeploymentDependenciesProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 6 votes |
@Override public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if (deploymentUnit.hasAttachment(DeploymentDependencies.ATTACHMENT_KEY)) { if (deploymentUnit.getParent() != null) { ServerLogger.DEPLOYMENT_LOGGER.deploymentDependenciesAreATopLevelElement(deploymentUnit.getName()); } else { processDependencies(phaseContext, deploymentUnit); } } if (deploymentUnit.getParent() != null) { DeploymentUnit parent = deploymentUnit.getParent(); if (parent.hasAttachment(DeploymentDependencies.ATTACHMENT_KEY)) { processDependencies(phaseContext, parent); } } }
Example 5
Source File: KeycloakServerDeploymentProcessor.java From keycloak with Apache License 2.0 | 6 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); KeycloakAdapterConfigService configService = KeycloakAdapterConfigService.INSTANCE; String deploymentName = deploymentUnit.getName(); if (!configService.isKeycloakServerDeployment(deploymentName)) { return; } final EEModuleDescription description = deploymentUnit.getAttachment(org.jboss.as.ee.component.Attachments.EE_MODULE_DESCRIPTION); String webContext = configService.getWebContext(); if (webContext == null) { throw new DeploymentUnitProcessingException("Can't determine web context/module for Keycloak Server"); } description.setModuleName(webContext); addInfinispanCaches(phaseContext); addConfiguration(deploymentUnit, configService); }
Example 6
Source File: KeycloakProviderDeploymentProcessor.java From keycloak with Apache License 2.0 | 6 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); KeycloakAdapterConfigService config = KeycloakAdapterConfigService.INSTANCE; String deploymentName = deploymentUnit.getName(); if (config.isKeycloakServerDeployment(deploymentName)) { return; } KeycloakDeploymentInfo info = KeycloakProviderDependencyProcessor.getKeycloakProviderDeploymentInfo(deploymentUnit); ScriptProviderDeploymentProcessor.deploy(deploymentUnit, info); if (info.isProvider()) { logger.infov("Deploying Keycloak provider: {0}", deploymentUnit.getName()); final Module module = deploymentUnit.getAttachment(Attachments.MODULE); ProviderManager pm = new ProviderManager(info, module.getClassLoader()); ProviderManagerRegistry.SINGLETON.deploy(pm); deploymentUnit.putAttachment(ATTACHMENT_KEY, pm); } }
Example 7
Source File: ProcessEngineStartProcessor.java From camunda-bpm-platform with Apache License 2.0 | 6 votes |
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if(!ProcessApplicationAttachments.isProcessApplication(deploymentUnit)) { return; } List<ProcessesXmlWrapper> processesXmls = ProcessApplicationAttachments.getProcessesXmls(deploymentUnit); for (ProcessesXmlWrapper wrapper : processesXmls) { for (ProcessEngineXml processEngineXml : wrapper.getProcessesXml().getProcessEngines()) { startProcessEngine(processEngineXml, phaseContext); } } }
Example 8
Source File: KeycloakDependencyProcessor.java From keycloak with Apache License 2.0 | 6 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if (Configuration.INSTANCE.getSecureDeployment(deploymentUnit) == null) { WarMetaData warMetaData = deploymentUnit.getAttachment(WarMetaData.ATTACHMENT_KEY); if (warMetaData == null) { return; } JBossWebMetaData webMetaData = warMetaData.getMergedJBossWebMetaData(); if (webMetaData == null) { return; } LoginConfigMetaData loginConfig = webMetaData.getLoginConfig(); if (loginConfig == null) return; if (loginConfig.getAuthMethod() == null) return; if (!loginConfig.getAuthMethod().equals("KEYCLOAK-SAML")) return; } // Next phase, need to detect if this is a Keycloak deployment. If not, don't add the modules. final ModuleSpecification moduleSpecification = deploymentUnit.getAttachment(Attachments.MODULE_SPECIFICATION); final ModuleLoader moduleLoader = Module.getBootModuleLoader(); addCommonModules(moduleSpecification, moduleLoader); addPlatformSpecificModules(phaseContext, moduleSpecification, moduleLoader); }
Example 9
Source File: CamelDependenciesProcessor.java From wildfly-camel with Apache License 2.0 | 6 votes |
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { DeploymentUnit depUnit = phaseContext.getDeploymentUnit(); // Only operate on top level deployments if (depUnit.getParent() != null) { return; } List<DeploymentUnit> deployments = new ArrayList<>(); List<DeploymentUnit> subDeployments = depUnit.getAttachmentList(Attachments.SUB_DEPLOYMENTS); deployments.add(depUnit); deployments.addAll(subDeployments); for (DeploymentUnit deployment : deployments) { CamelDeploymentSettings depSettings = deployment.getAttachment(CamelDeploymentSettings.ATTACHMENT_KEY); if (depSettings.isEnabled()) { addDeploymentDependencies(deployment, depSettings); } } }
Example 10
Source File: PermissionsValidationProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 6 votes |
@Override public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); final List<PermissionFactory> permissionFactories = deploymentUnit.getAttachment(Attachments.MODULE_SPECIFICATION).getPermissionFactories(); final StringBuilder failedPermissions = new StringBuilder(); for (PermissionFactory factory : permissionFactories) { // all permissions granted internally by the container are of type ImmediatePermissionFactory - they should // not be considered when validating the permissions granted to deployments via subsystem or deployment // descriptors. if (!(factory instanceof ImmediatePermissionFactory)) { Permission permission = factory.construct(); boolean implied = this.maxPermissions.implies(permission); if (!implied) { failedPermissions.append("\n\t\t" + permission); } } } if (failedPermissions.length() > 0) { throw SecurityManagerLogger.ROOT_LOGGER.invalidDeploymentConfiguration(failedPermissions); } }
Example 11
Source File: KeycloakDependencyProcessor.java From keycloak with Apache License 2.0 | 6 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if (!KeycloakAdapterConfigService.getInstance().isSecureDeployment(deploymentUnit)) { WarMetaData warMetaData = deploymentUnit.getAttachment(WarMetaData.ATTACHMENT_KEY); if (warMetaData == null) { return; } JBossWebMetaData webMetaData = warMetaData.getMergedJBossWebMetaData(); if (webMetaData == null) { return; } LoginConfigMetaData loginConfig = webMetaData.getLoginConfig(); if (loginConfig == null) return; if (loginConfig.getAuthMethod() == null) return; if (!loginConfig.getAuthMethod().equals("KEYCLOAK")) return; } final ModuleSpecification moduleSpecification = deploymentUnit.getAttachment(Attachments.MODULE_SPECIFICATION); final ModuleLoader moduleLoader = Module.getBootModuleLoader(); addCommonModules(moduleSpecification, moduleLoader); addPlatformSpecificModules(phaseContext, moduleSpecification, moduleLoader); }
Example 12
Source File: KeycloakClusteredSsoDeploymentProcessor.java From keycloak with Apache License 2.0 | 5 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if (isKeycloakSamlAuthMethod(deploymentUnit) && isDistributable(deploymentUnit)) { addSamlReplicationConfiguration(deploymentUnit, phaseContext); } }
Example 13
Source File: DependencyProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 5 votes |
@Override public void deploy(DeploymentPhaseContext context) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = context.getDeploymentUnit(); final ModuleSpecification moduleSpecification = deploymentUnit.getAttachment(Attachments.MODULE_SPECIFICATION); final ModuleLoader moduleLoader = Module.getBootModuleLoader(); moduleSpecification.addSystemDependency(new ModuleDependency(moduleLoader, elytronIdentifier, false, false, true, false)); }
Example 14
Source File: ProcessesXmlProcessor.java From camunda-bpm-platform with Apache License 2.0 | 5 votes |
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if(!ProcessApplicationAttachments.isProcessApplication(deploymentUnit)) { return; } final Module module = deploymentUnit.getAttachment(MODULE); // read @ProcessApplication annotation of PA-component String[] deploymentDescriptors = getDeploymentDescriptors(deploymentUnit); // load all processes.xml files List<URL> deploymentDescriptorURLs = getDeploymentDescriptorUrls(module, deploymentDescriptors); for (URL processesXmlResource : deploymentDescriptorURLs) { VirtualFile processesXmlFile = getFile(processesXmlResource); // parse processes.xml metadata. ProcessesXml processesXml = null; if(isEmptyFile(processesXmlResource)) { processesXml = ProcessesXml.EMPTY_PROCESSES_XML; } else { processesXml = parseProcessesXml(processesXmlResource); } // add the parsed metadata to the attachment list ProcessApplicationAttachments.addProcessesXml(deploymentUnit, new ProcessesXmlWrapper(processesXml, processesXmlFile)); } }
Example 15
Source File: KeycloakAdapterConfigDeploymentProcessor.java From keycloak with Apache License 2.0 | 5 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if (Configuration.INSTANCE.getSecureDeployment(deploymentUnit) != null) { addKeycloakSamlAuthData(phaseContext); } addConfigurationListener(phaseContext); }
Example 16
Source File: ModuleExtensionNameProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 5 votes |
/** {@inheritDoc} */ public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); final ExtensionInfo extensionInfo = deploymentUnit.getAttachment(Attachments.EXTENSION_INFORMATION); if (extensionInfo == null) { return; } final ServiceController<?> extensionIndexController = phaseContext.getServiceRegistry().getRequiredService( Services.JBOSS_DEPLOYMENT_EXTENSION_INDEX); final ExtensionIndex extensionIndexService = (ExtensionIndex) extensionIndexController.getValue(); final ModuleIdentifier moduleIdentifier = deploymentUnit.getAttachment(Attachments.MODULE_IDENTIFIER); extensionIndexService.addDeployedExtension(moduleIdentifier, extensionInfo); }
Example 17
Source File: ModuleIdentifierProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 5 votes |
@Override public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); final ResourceRoot deploymentRoot = deploymentUnit.getAttachment(Attachments.DEPLOYMENT_ROOT); final DeploymentUnit parent = deploymentUnit.getParent(); final DeploymentUnit topLevelDeployment = parent == null ? deploymentUnit : parent; final VirtualFile toplevelRoot = topLevelDeployment.getAttachment(Attachments.DEPLOYMENT_ROOT).getRoot(); final ModuleIdentifier moduleIdentifier = createModuleIdentifier(deploymentUnit.getName(), deploymentRoot, topLevelDeployment, toplevelRoot, deploymentUnit.getParent() == null); deploymentUnit.putAttachment(Attachments.MODULE_IDENTIFIER, moduleIdentifier); }
Example 18
Source File: ModuleSpecProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 5 votes |
@Override public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); if (deploymentUnit.hasAttachment(Attachments.MODULE)) return; deployModuleSpec(phaseContext); }
Example 19
Source File: PackageScanResolverProcessor.java From wildfly-camel with Apache License 2.0 | 5 votes |
public final void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { DeploymentUnit depUnit = phaseContext.getDeploymentUnit(); CamelDeploymentSettings depSettings = depUnit.getAttachment(CamelDeploymentSettings.ATTACHMENT_KEY); // Camel disabled if (!depSettings.isEnabled()) { return; } ContextCreateHandlerRegistry createHandlerRegistry = depUnit.getAttachment(CamelConstants.CONTEXT_CREATE_HANDLER_REGISTRY_KEY); ModuleClassLoader moduleClassLoader = depUnit.getAttachment(Attachments.MODULE).getClassLoader(); PackageScanClassResolverAssociationHandler contextCreateHandler = new PackageScanClassResolverAssociationHandler(moduleClassLoader); depUnit.putAttachment(PACKAGE_SCAN_ASSOCIATION_HANDLER_ATTACHMENT_KEY, contextCreateHandler); createHandlerRegistry.addContextCreateHandler(moduleClassLoader, contextCreateHandler); }
Example 20
Source File: ManifestDependencyProcessor.java From wildfly-core with GNU Lesser General Public License v2.1 | 4 votes |
/** * Process the deployment root for module dependency information. * * @param phaseContext the deployment unit context * @throws org.jboss.as.server.deployment.DeploymentUnitProcessingException */ public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException { final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit(); final ServiceModuleLoader deploymentModuleLoader = deploymentUnit.getAttachment(Attachments.SERVICE_MODULE_LOADER); final List<ResourceRoot> allResourceRoots = DeploymentUtils.allResourceRoots(deploymentUnit); DeploymentUnit top = deploymentUnit.getParent() == null ? deploymentUnit : deploymentUnit.getParent(); final Set<ModuleIdentifier> additionalModules = new HashSet<>(); final List<AdditionalModuleSpecification> additionalModuleList = top.getAttachmentList(Attachments.ADDITIONAL_MODULES); // Must synchronize on list as subdeployments executing Phase.STRUCTURE may be concurrently modifying it //noinspection SynchronizationOnLocalVariableOrMethodParameter synchronized (additionalModuleList) { for (AdditionalModuleSpecification i : additionalModuleList) { additionalModules.add(i.getModuleIdentifier()); } } for (final ResourceRoot resourceRoot : allResourceRoots) { final Manifest manifest = resourceRoot.getAttachment(Attachments.MANIFEST); if (manifest == null) continue; final String dependencyString = ManifestHelper.getMainAttributeValue(manifest, DEPENDENCIES_ATTR); if (dependencyString == null) continue; if(deploymentUnit.getParent() == null && SubDeploymentMarker.isSubDeployment(resourceRoot)) { //we do not want ears reading sub deployments manifests continue; } final String[] dependencyDefs = dependencyString.split(","); for (final String dependencyDef : dependencyDefs) { final String trimmed = dependencyDef.trim(); if(trimmed.isEmpty()) { continue; } final String[] dependencyParts = trimmed.split(" "); final ModuleIdentifier dependencyId = ModuleIdentifier.fromString(dependencyParts[0]); final boolean export = containsParam(dependencyParts, EXPORT_PARAM); final boolean optional = containsParam(dependencyParts, OPTIONAL_PARAM); final boolean services = containsParam(dependencyParts, SERVICES_PARAM); final boolean annotations = containsParam(dependencyParts, ANNOTATIONS_PARAM); final boolean metaInf = containsParam(dependencyParts, META_INF); final ModuleLoader dependencyLoader; if (dependencyId.getName().startsWith(ServiceModuleLoader.MODULE_PREFIX)) { dependencyLoader = deploymentModuleLoader; } else { dependencyLoader = Module.getBootModuleLoader(); } if(annotations) { deploymentUnit.addToAttachmentList(Attachments.ADDITIONAL_ANNOTATION_INDEXES, dependencyId); if(dependencyLoader == deploymentModuleLoader && !additionalModules.contains(dependencyId)) { //additional modules will not be created till much later, a dep on them would fail phaseContext.addToAttachmentList(Attachments.NEXT_PHASE_DEPS, ServiceModuleLoader.moduleServiceName(dependencyId)); } } final ModuleDependency dependency = new ModuleDependency(dependencyLoader, dependencyId, optional, export, services, true); if(metaInf) { dependency.addImportFilter(PathFilters.getMetaInfSubdirectoriesFilter(), true); dependency.addImportFilter(PathFilters.getMetaInfFilter(), true); } deploymentUnit.addToAttachmentList(Attachments.MANIFEST_DEPENDENCIES, dependency); } } }