How can I give the process.label property for creating the process step in workflow with the use of osgi annotations? | Community
Skip to main content
New Participant
July 5, 2017
Solved

How can I give the process.label property for creating the process step in workflow with the use of osgi annotations?

  • July 5, 2017
  • 1 reply
  • 1351 views

Hi guys,

I want to create my custom process step with the use of osgi annotations instead of scr annotations. I used like this but it's not working:

@Component(service = MyClass.class,

property = {

Constants.SERVICE_DESCRIPTION + "=Custom Process Step",

"process.label = MyCustomWorkflow"

})

Can anyone help me for this?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by GauravKumar-1

I got this answer. For showing the value of process step in drop down we have to use annotation like this:

@Component(immediate = true, property = { "process.label=Generate CustomUUID", })

1 reply

GauravKumar-1AuthorAccepted solution
New Participant
July 6, 2017

I got this answer. For showing the value of process step in drop down we have to use annotation like this:

@Component(immediate = true, property = { "process.label=Generate CustomUUID", })