Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for validateConfiguration (0.09 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/ConfiguredGoalSupport.java

                return ERROR;
            }
            return doExecute(context);
        }
    
        protected boolean validateConfiguration(EncryptContext context) {
            SecDispatcher.ValidationResponse response = secDispatcher.validateConfiguration();
            if (!response.isValid() || context.options().verbose().orElse(false)) {
                dumpResponse(context, "", response);
            }
            return response.isValid();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Diag.java

            super(messageBuilderFactory, secDispatcher);
        }
    
        @Override
        public int execute(EncryptContext context) {
            dumpResponse(context, "", secDispatcher.validateConfiguration());
            return OK;
        }
    
        @Override
        protected int doExecute(EncryptContext context) throws Exception {
            throw new IllegalStateException("Cannot reach here");
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 17 09:50:45 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/ConsolePasswordPrompt.java

                    throw new SecDispatcherException("Could not collect the password", e);
                }
            }
            return null;
        }
    
        @Override
        public SecDispatcher.ValidationResponse validateConfiguration(String config) {
            if (NAME.equals(config)) {
                return new SecDispatcher.ValidationResponse(getClass().getSimpleName(), true, Map.of(), List.of());
            }
            return null;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Nov 16 13:55:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top