Components confusion
Hello,
I'm relatively new to Jazz and I'm having a hard time grasping what a component is. Can somebody give me a simple explanation with an example or two? And why would you need more than one component? I work on a small team of 3 and we have one vb.net solution with 5 projects. This solution was added to the default component, but I'm not sure what a component's use is. Thanks for the help! |
3 answers
Hello Mark
Components represent a logical group of features under a stream. You can have multiple streams representing modules and each stream can have multiple components.
Adding to Kevin, you might want to refer the details on components here:
http://pic.dhe.ibm.com/infocenter/clmhelp/v4r0m4/index.jsp?re=1&topic=/com.ibm.team.scm.doc/topics/c_streams.html&scope=null
http://pic.dhe.ibm.com/infocenter/clmhelp/v4r0m4/index.jsp?re=1&topic=/com.ibm.team.concert.dotnet.doc/topics/t_creating_a_stream.html&scope=null
|
Geoffrey Clemm (30.1k●3●30●35)
| answered Jan 15 '14, 5:10 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
As Kevin indicated, one reason is access control.
Suppose you want read access to one set of files restricted to one set of users, but a different set of files should have read access restricted to a different set of users. The easiest way to achieve this in RTC is by putting the two sets of files into different components. Another reason is independent baselining. Suppose that you want to adjust your configuration in your stream/workspace so that you see a different configuration of one set of files, but not change the configuration of another set of files. The easiest way to achieve this in RTC is by putting the two sets of files into different components. You can then select a different baseline of the one set of files, without affecting the configuration you are using of the other set of files. |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Thank you everyone for your answers. They are helpful. Does anyone have an example of real world situation where you would have more than one component in a stream?