Hey everyone,
I recently updated a method we have that creates an Issue Type Screen Scheme in our plugin. Now it creates 2 Screen Schemes and we want to associate an existing Issue Type Screen Scheme with both, as such:
We are using something like the following to update it
// add scheme to issueTypeScreenScheme IssueTypeScreenSchemeEntity entity = new IssueTypeScreenSchemeEntityImpl( issueTypeScreenSchemeManager, (GenericValue) null, fieldScreenSchemeManager, constantsManager); tcmEntity.setIssueTypeId(issueTypeId); // an entity can be for all IssueTypes (-> null), or just for 1 tcmEntity.setFieldScreenScheme(screenScheme); issueTypeScreenScheme.addEntity(entity);
Do we need to execute anything else after this? (refresh, store, etc)
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.