Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LookupInvoker (0.07 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

     *
     * @param <O> the options type
     * @param <R> the request type
     * @param <C> the context type
     */
    public abstract class LookupInvoker<
                    O extends Options, R extends InvokerRequest<O>, C extends LookupInvoker.LookupInvokerContext<O, R, C>>
            implements Invoker<R> {
    
        /**
         * Exception for intentional exit: No message or anything will be displayed, just the
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ContainerCapsuleFactory.java

     * @param <O> the options type
     * @param <R> the invoker request type
     * @param <C> the invoker context type
     */
    public interface ContainerCapsuleFactory<
            O extends Options, R extends InvokerRequest<O>, C extends LookupInvoker.LookupInvokerContext<O, R, C>> {
        /**
         * Creates container capsule.
         */
        @Nonnull
        ContainerCapsule createContainerCapsule(C context) throws InvokerException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptInvoker.java

    import org.apache.maven.api.cli.mvnenc.EncryptInvokerRequest;
    import org.apache.maven.api.cli.mvnenc.EncryptOptions;
    import org.apache.maven.cli.CLIReportingUtils;
    import org.apache.maven.cling.invoker.LookupInvoker;
    import org.apache.maven.cling.invoker.ProtoLookup;
    import org.jline.consoleui.prompt.ConsolePrompt;
    import org.jline.reader.LineReader;
    import org.jline.reader.LineReaderBuilder;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java

    import org.apache.maven.api.services.model.ModelProcessor;
    import org.apache.maven.cli.CLIReportingUtils;
    import org.apache.maven.cli.event.ExecutionEventLogger;
    import org.apache.maven.cling.invoker.LookupInvoker;
    import org.apache.maven.cling.invoker.ProtoLookup;
    import org.apache.maven.cling.invoker.Utils;
    import org.apache.maven.eventspy.internal.EventSpyDispatcher;
    import org.apache.maven.exception.DefaultExceptionHandler;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

     * @param <R> the invoker request type
     * @param <C> the invoker context type
     */
    public class PlexusContainerCapsuleFactory<
                    O extends Options, R extends InvokerRequest<O>, C extends LookupInvoker.LookupInvokerContext<O, R, C>>
            implements ContainerCapsuleFactory<O, R, C> {
        @Override
        public ContainerCapsule createContainerCapsule(C context) throws InvokerException {
            try {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top