You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Alessio Soldano (JIRA)" <ji...@apache.org> on 2010/08/05 09:02:18 UTC

[jira] Created: (CXF-2929) Allow programmatic initialisation of RMManager

Allow programmatic initialisation of RMManager
----------------------------------------------

                 Key: CXF-2929
                 URL: https://issues.apache.org/jira/browse/CXF-2929
             Project: CXF
          Issue Type: Improvement
          Components: WS-* Components
            Reporter: Alessio Soldano
            Assignee: Alessio Soldano
             Fix For: 2.3, 2.2.10


It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-2929) Allow programmatic initialisation of RMManager

Posted by "Alessio Soldano (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alessio Soldano resolved CXF-2929.
----------------------------------

    Resolution: Fixed

> Allow programmatic initialisation of RMManager
> ----------------------------------------------
>
>                 Key: CXF-2929
>                 URL: https://issues.apache.org/jira/browse/CXF-2929
>             Project: CXF
>          Issue Type: Improvement
>          Components: WS-* Components
>            Reporter: Alessio Soldano
>            Assignee: Alessio Soldano
>             Fix For: 2.3, 2.2.10
>
>
> It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-2929) Allow programmatic initialisation of RMManager

Posted by "Alessio Soldano (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12895686#action_12895686 ] 

Alessio Soldano commented on CXF-2929:
--------------------------------------

oh, well... I've no problems at all renaming that to initialize(), really. Doing that..

> Allow programmatic initialisation of RMManager
> ----------------------------------------------
>
>                 Key: CXF-2929
>                 URL: https://issues.apache.org/jira/browse/CXF-2929
>             Project: CXF
>          Issue Type: Improvement
>          Components: WS-* Components
>            Reporter: Alessio Soldano
>            Assignee: Alessio Soldano
>             Fix For: 2.3, 2.2.10
>
>
> It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-2929) Allow programmatic initialisation of RMManager

Posted by "Alessio Soldano (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alessio Soldano resolved CXF-2929.
----------------------------------

    Resolution: Fixed

I've added another (public) method for initialising the RMManager given a Bus instance

> Allow programmatic initialisation of RMManager
> ----------------------------------------------
>
>                 Key: CXF-2929
>                 URL: https://issues.apache.org/jira/browse/CXF-2929
>             Project: CXF
>          Issue Type: Improvement
>          Components: WS-* Components
>            Reporter: Alessio Soldano
>            Assignee: Alessio Soldano
>             Fix For: 2.3, 2.2.10
>
>
> It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-2929) Allow programmatic initialisation of RMManager

Posted by "Glen Mazza (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12895692#action_12895692 ] 

Glen Mazza commented on CXF-2929:
---------------------------------

Yeah, I've long suggested that Java developers should switch to fattenUp() to avoid the initialise() vs. initialize() argument, but have seen limited adoption of that.  :)

> Allow programmatic initialisation of RMManager
> ----------------------------------------------
>
>                 Key: CXF-2929
>                 URL: https://issues.apache.org/jira/browse/CXF-2929
>             Project: CXF
>          Issue Type: Improvement
>          Components: WS-* Components
>            Reporter: Alessio Soldano
>            Assignee: Alessio Soldano
>             Fix For: 2.3, 2.2.10
>
>
> It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CXF-2929) Allow programmatic initialisation of RMManager

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12895717#action_12895717 ] 

Daniel Kulp commented on CXF-2929:
----------------------------------


That's why I ususally just user:
public void init();

Everyone is happy, including my fingers.  :-)

> Allow programmatic initialisation of RMManager
> ----------------------------------------------
>
>                 Key: CXF-2929
>                 URL: https://issues.apache.org/jira/browse/CXF-2929
>             Project: CXF
>          Issue Type: Improvement
>          Components: WS-* Components
>            Reporter: Alessio Soldano
>            Assignee: Alessio Soldano
>             Fix For: 2.3, 2.2.10
>
>
> It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (CXF-2929) Allow programmatic initialisation of RMManager

Posted by "Glen Mazza (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Glen Mazza reopened CXF-2929:
-----------------------------


Are you sure you want the public API to be using British English?  Neither Spring nor the JDK uses that.  initialise() is real Britain-specific, not even the Canadians use that (http://www3.telus.net/linguisticsissues/BritishCanadianAmerican.htm) 

See also here: http://www.mail-archive.com/avalon-dev@jakarta.apache.org/msg07094.html


> Allow programmatic initialisation of RMManager
> ----------------------------------------------
>
>                 Key: CXF-2929
>                 URL: https://issues.apache.org/jira/browse/CXF-2929
>             Project: CXF
>          Issue Type: Improvement
>          Components: WS-* Components
>            Reporter: Alessio Soldano
>            Assignee: Alessio Soldano
>             Fix For: 2.3, 2.2.10
>
>
> It is currently possible to create and stop a RMManager using the API. The instance can't be properly initialised though, as the two methods for that are currently package protected and just called by the injection fw being @PostConstruct annotated.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.