String array as process variable

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2011 04:14 AM
I have an array of String, and need to store as process variable, is that any way to achieve this?
Thanks.
Thanks.
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2011 04:20 AM
You can store all objects that are Serializable as a process-variable. Since an array is also an object in Java (although not explicit) it's implementing Serializable. So just passing the array as variable will do.
When not using Strings as array elements, make sure the elements itself are also serializable…
When not using Strings as array elements, make sure the elements itself are also serializable…
