Created
September 24, 2010 12:15
-
-
Save wolfc/595260 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Node { | |
D getDescriptor(Class<D> type); | |
String getName(); | |
} | |
interface DescribedJavaEEServer extends Node { | |
Collection<DescribedJavaEEApplication> getApplications(); | |
} | |
interface DescribedJavaEEApplication extends Node { | |
Collection<Node> getChildren(); | |
Node getChild(String name); | |
} | |
interface DescribedJavaEEModule extends Node { | |
Collection<DescribedJavaEEComponent> getComponents(); | |
DescribedJavaEEComponent getComponent(String name); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment