All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.cli.commands.pgp.PgpCommandsSubst Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package scala.cli.commands.pgp;

import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
import scala.cli.commands.pgp.ExternalCommand;
import scala.cli.commands.pgp.PgpCommand;

@TargetClass(className = "scala.cli.commands.pgp.PgpCommands")
public final class PgpCommandsSubst {
  @Substitute
  public PgpCommand[] allScalaCommands() {
    return new PgpCommand[0];
  }
  @Substitute
  public ExternalCommand[] allExternalCommands() {
    return new ExternalCommand[] {
      new PgpCreateExternal(),
      new PgpKeyIdExternal(),
      new PgpSignExternal(),
      new PgpVerifyExternal()
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy