-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Discovery Scanning & Enumeration #235
Conversation
Ok, this PR is way too long but feature complete. Unfortunately a new feature like this requires changes across many different sub-parts of the code-base so I'm not entirely sure how to break it up into reasonable size chunks that also have meaning on their own. (That and I was bad and threw in some lint refactoring). If somebody thinks it's too big to process let me know and I can try to break it up -- otherwise just take your time to go through it. |
Ok -- I'm refactoring out basic bits into other PRs and will return to this one (code changes) when it's a bit more sane. |
} | ||
} | ||
if (t != null) { | ||
System.out.println(t); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
System.err?
/** | ||
* Validation tests for discovery scan and enumeration capabilities. | ||
*/ | ||
public class DiscoveryValidator extends SequenceValidator { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May need to refactor these into smaller pieces in the future but ok to get started now
First pass at documentation for discovery & enumeration. Goal is to have something concrete in place for ongoing onboarding discussions, and then can finalize/iterate over time.