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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.