Is it possible to nest the path uda in the rest interface definition? Like so:

interface ExampleNestedPathUda {
	@path("root") {
		void getRootResource();
		@path(":nr") {
			void getSub(int _nr);
		}
	}
}