Comment on page
Registering a Custom Scope
customScopes = {
ortus = "path.model.dsl.OrtusScope"
};
or
mapScope("ortus","path.model.dsl.OrtusScope");
Now I can use the
ortus
scope in my mappings DSL and even my annotations, isn't that cool!component scope="ortus"{
}
// map it
map("Luis")
.to("model.path.LuisService")
.into("Ortus");
Last modified 1yr ago