if (target.length == 0)
return getRepositoryActions();
final String bsn = (String) target[0];
Program careful = null;
try {
careful = library.getProgram(Library.OSGI_GROUP, bsn);
}
catch (Exception e) {
reporter.error("Offline? %s", e);
}
final Program p = careful;
if (target.length == 1)
return getProgramActions(bsn, p);
if (target.length >= 2) {
final Version version = (Version) target[1];