Hi

Consider following code snippet in a java class A.java

        @GET
@Path("/end_point")
@ApiOperation(value = "This resource does blah blah",
    notes = "this is the detailed description",
   nickname ="convert a to b")


I want to change complete java class to something like this

        @GET
@Path("/end_point")
@ApiOperation(value = "*properties.A.ApiOperation.value*",
    notes = "*properties.currentjavaclass.ApiOperation.notes*",
   nickname ="*properties.A.ApiOperation.nickname*")


Basically i want to

1.Generate a property file with all the swagger attributes as defined in
format above .
2.change the text in any swagger annotation value to a property defined in
 A_propertyFile.properties
3.At Runtime read the actual value from property file after generting
swagger json.

Do we have any standard or recommended frameworks to take care of this kind
of work.


Regards
Arpit

-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to