Hello
I'm developing a Jira plugin, and using Jira Plugin Setting, upposedly I can save setting ussing a key and an Object, but actually this make an exception
String[] sta = {"Cheese", "Pepperoni", "Black Olives"};
ps.put("ARRAY_DATA", sta);
Yeah, I use this class, anyway, I discovered the problem isn't in the plugin, It's because Jira only save Integer, Long, double and String , so when I try to save an Array just get an exception
Hello,
Do you mean that you use this class?
If so, then try to make it as a List not as an Array.
List<String> sta = Arrays.asList("
Cheese", "
Pepperoni", "
Black Olives");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, I use this class, anyway, I discovered the problem isn't in the plugin, It's because Jira only save Integer, Long, double and String , so when I try to save an Array just get an exception
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.