Package org.jboss.as.controller.parsing
Interface ProfileParsingCompletionHandler
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback an
ProfileParsingCompletionHandler can register to, upon completion of normal parsing of a profile, manipulate the list
of parsed boot operations associated with a profile.- Author:
- Brian Stansberry (c) 2011 Red Hat Inc.
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleProfileParsingCompletion(Map<String, List<org.jboss.dmr.ModelNode>> profileBootOperations, List<org.jboss.dmr.ModelNode> otherBootOperations) Callback indicating normal parsing of a profile is completed.
-
Method Details
-
handleProfileParsingCompletion
void handleProfileParsingCompletion(Map<String, List<org.jboss.dmr.ModelNode>> profileBootOperations, List<org.jboss.dmr.ModelNode> otherBootOperations) Callback indicating normal parsing of a profile is completed.- Parameters:
profileBootOperations- the boot operations added by subsystems in the profile, keyed by the URI of the xml namespace used for the subsystemotherBootOperations- other operations registered in the boot prior to parsing of the profile
-