Package org.jboss.metadata.property

Examples of org.jboss.metadata.property.CompositePropertyResolver


            }
            current = current.getParent();
        } while (current != null);

        if (!propertyResolvers.isEmpty()) {
            deploymentUnit.addToAttachmentList(Attachments.DEPLOYMENT_PROPERTY_RESOLVERS, new CompositePropertyResolver(propertyResolvers));
        }
    }
View Full Code Here


* @author John Bailey
*/
public class PropertyResolverProcessor implements DeploymentUnitProcessor {
    public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
        final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
        deploymentUnit.putAttachment(Attachments.FINAL_PROPERTY_RESOLVER, new CompositePropertyResolver(deploymentUnit.getAttachment(Attachments.DEPLOYMENT_PROPERTY_RESOLVERS)));
    }
View Full Code Here

            }
            current = current.getParent();
        } while (current != null);

        if (!propertyResolvers.isEmpty()) {
            deploymentUnit.addToAttachmentList(Attachments.DEPLOYMENT_PROPERTY_RESOLVERS, new CompositePropertyResolver(propertyResolvers));
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.metadata.property.CompositePropertyResolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.