The classes I fetch from ComponentAccessor, is that always a new instance or an instance that JIRA already uses at that moment?
Because I want to extend the CommentManager, is that doable by changing the factory or do I have to instatiate it with all it´s dependencies in my script?
ComponentAccessor
returns the singleton instance for each class. Never a new one. Also, it is hard-coded in JIRA's source (see ContainerRegistrar
) which implementation for each interface is returned. You can't easily extend that. See also this thread.
You also shouldn't instantiate any component yourself. That probably won't work correctly.
Ok, thank you, so the only option I see right now is to wrap the CommentManager in my own class to add functionality, which isn´t a good option either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What are you actually trying to do?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have some extra features which I want to put in a class, because I use it in multiple files:
getInternalComments() and getExternalComments()
I could put them in closures or capsulate them in a class, so I wrote a MyCommentManager class which gets the CommentManager as dependency and fetches me the comments I want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.