Hi. I'm trying to add a new JobTypeColumn to a ListView. I receive the column type via REST and I have to add the new column to a view.
listView.getColumns().add((ListViewColumn)Class.forName("hudson.plugins.jobtype_column.JobTypeColumn").newInstance());
This sentence throws ClassNotFoundException:
hudson.plugins.jobtype_column.JobTypeColumn.
ListViewColumns inside jenkins works fine, like WeatherColumn, but the
columns in my installed plugins doesn't.
Do you know why and how can I fix it?
