@Retention(value=RUNTIME) @Target(value={}) public @interface ReturnAttribute
eg:-
@Extension(
...
returnAttributes = { @ReturnAttribute( name = "attribute1",
type = {DataType.INT, DataType.LONG},
description="Description of attribute1"),
{ @ReturnAttribute( name = "attribute2",
type = {DataType.INT},
description="Description of attribute2")},
...
)
public CustomExtension extends ExtensionSuperClass {
...
}
Copyright © 2018 WSO2. All rights reserved.