| package com.apigee.security.oas; | |
| import java.io.File; | |
| /** Parses and validates {@code args} while providing helper functions. */ | |
| interface CommandLineParser { | |
| /** Parses and validates {@code args}. */ | |
| void parseArguments(String[] args); | |
| /** Returns {@code File} parsed through {@link #parseArguments(String[])}. */ | |
| File getOasFile(); | |
| } |