Details
-
Bug
-
Status: Resolved
-
Resolution: Cannot Reproduce
-
None
-
None
-
None
-
None
-
Operating System: Linux
Platform: PC
-
1251
Description
If you generate code for the following yang model using org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
grouping global-fields {
leaf glob-id
}
rpc myRPC {
input {
leaf id {type uint32;}
uses global-fields;
}
output {
leaf success
}
}
the myRPCInput interface does not contain getter for "glob-id" field.
I think the code generator cannot handle "uses" statement in RPC input arg.