You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (JIRA)" <ji...@apache.org> on 2014/08/11 13:52:12 UTC

[jira] [Commented] (CXF-5934) Make WadlGenerator more easily extensible

    [ https://issues.apache.org/jira/browse/CXF-5934?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14092702#comment-14092702 ] 

Sergey Beryozkin commented on CXF-5934:
---------------------------------------

Hi Romain,

Does it look Ok for now:

http://git-wip-us.apache.org/repos/asf/cxf/commit/8e4a6b56

?

Thanks, Sergey

> Make WadlGenerator more easily extensible
> -----------------------------------------
>
>                 Key: CXF-5934
>                 URL: https://issues.apache.org/jira/browse/CXF-5934
>             Project: CXF
>          Issue Type: Improvement
>    Affects Versions: 3.0.1
>            Reporter: Romain Manni-Bucau
>
> Trying to extend wadl generator is a pain today (= implies duplication). Would be great to get more protected method to do it faster.
> Here some of them (well the one I hoped ;)):
> * preEndMethod: in org.apache.cxf.jaxrs.model.wadl.WadlGenerator#handleOperation before writing </method>. That's basically the symmetric of org.apache.cxf.jaxrs.model.wadl.WadlGenerator#startMethodTag
> * startMethodTag should be IMO protected too
> * pre/post <request />, <response />, <resource /> (startResourceTag protected for pre part)
> Basically idea is to be able to add before or after playing with super:
> {code}
> public class MyWadlGenerator extends WadlGenerator {
>     @Override
>    protected void startResourceTag(StringBuilder sb, Class<?> serviceClass, String path) {
>          super.startResourceTag(sb, serviceClass, path);
>         sb.append(...);
>    }
> }
> {code}
> Personally I desire it for resources and methods but request and response would be nice to have.
> PS: handleGrammars is nice for its pupose IMO



--
This message was sent by Atlassian JIRA
(v6.2#6252)