Hi Guys,

I am trying to use Enum as one of the query params. it is working fine but
its not getting displayed in wadl?Is there anything special, i should do to
pick the enum?

This is how, i have :

Interface
@GET
@Path("test")
Response getTest(@QueryParam("") Parameters params);

public class Parameters {
    private String testId;
    private TypeEnum status;

}

public enum TypeEnum {
TEST("test");
}

Any suggestions?

--
View this message in context: 
http://cxf.547215.n5.nabble.com/Enum-as-one-of-the-query-params-in-wadl-tp4706235p4706235.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to