Created
May 13, 2013 01:02
-
-
Save marianocapurro/5565576 to your computer and use it in GitHub Desktop.
All available Categories configurations for DevKit modules
This file contains 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
import org.mule.api.annotations.Category; | |
// Endpoint | |
@Category(name = "org.mule.tooling.category.endpoints", description = "Endpoints") | |
// Scope | |
@Category(name = "org.mule.tooling.category.scopes", description = "Scopes") | |
// Component | |
@Category(name = "org.mule.tooling.category.core", description = "Components") | |
// Transformer | |
@Category(name = "org.mule.tooling.category.transformers", description = "Transformers") | |
// Filters | |
@Category(name = "org.mule.tooling.category.filters", description = "Filters") | |
// Flow Control | |
@Category(name = "org.mule.tooling.category.flowControl", description = "Flow Control") | |
// Error Handling | |
@Category(name = "org.mule.tooling.ui.modules.core.exceptions", description = "Error Handling") | |
// Cloud Connectors | |
@Category(name = "org.mule.tooling.category.cloudconnector", description = "Cloud Connectors") | |
// Miscellaneous | |
@Category(name = "org.mule.tooling.ui.modules.core.miscellaneous", description = "Miscellaneous") | |
// Security | |
@Category(name = "org.mule.tooling.category.security", description = "Security") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment