dev@glassfish.java.net

Multiple options support in the GlassFish command framework

From: Tom Mueller <Tom.Mueller_at_oracle.com>
Date: Thu, 15 Nov 2012 11:27:43 -0600

FYI, I just checked in changes to support options that have the
"multiple" flag set to true in the GlassFish command framework.

This can be used from a command with:

@Param(multiple=true)
String foo[];

and used from asadmin with:

asadmin some-command --foo a1 --foo a2

Previously, the multiple option was only supported with operands, but
now it works with options too.

Have fun.
Tom