You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I am trying to create insight object and I know only the ObjectTypeId. Is it possible to do it? I tried using MutableObjectBean but it didn't work like below
Creating an object is a lot more complicated than that.
And you'll need to know the name of the attribute to set the label to (typically Name).
Here is the simplest code I can figure out to create an object with a single required field.
import com.atlassian.jira.component.ComponentAccessor
import com.riadalabs.jira.plugins.insight.channel.external.api.facade.ObjectFacade
import com.riadalabs.jira.plugins.insight.channel.external.api.facade.ObjectTypeAttributeFacade
import com.riadalabs.jira.plugins.insight.channel.external.api.facade.ObjectTypeFacade
import com.riadalabs.jira.plugins.insight.services.model.MutableObjectBean
ObjectFacade objectFacade = ComponentAccessor.getOSGiComponentInstanceOfType(ObjectFacade)
ObjectTypeFacade objectTypeFacade = ComponentAccessor.getOSGiComponentInstanceOfType(ObjectTypeFacade)
ObjectTypeAttributeFacade objectTypeAttributeFacade = ComponentAccessor.getOSGiComponentInstanceOfType(ObjectTypeAttributeFacade)
def objectTypeId = 5
def labelValue = 'Test Object'
def attributeNameForLabel = 'Name'
def objectType = objectTypeFacade.loadObjectType(objectTypeId)
def object = objectType.createMutableObjectBean()
def objectTypeAttributes = objectTypeAttributeFacade.findObjectTypeAttributeBeans(objectType.id)
def nameAttr = objectTypeAttributes.find { it.name == attributeNameForLabel }
def nameAttributeValuesHolder = object.createObjectAttributeBean(nameAttr)
def attributeValue = nameAttributeValuesHolder.createObjectAttributeValueBean()
attributeValue.setTextValue(labelValue)
nameAttributeValuesHolder.setObjectAttributeValueBeans([attributeValue])
object.objectAttributeBeans = [nameAttributeValuesHolder]
objectFacade.storeObjectBean(object)
As you can see that are several layers.
The object contains a list of attributes. Each attribute contains a list a attributeValue objects. Each attributeValue object contains the actual text value (or number or object reference etc depending on the type).
You must create all of those layers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.