blob: 5b0b46d672b25a156cf82aba887ea8c64714b43c [file] [log] [blame]
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();
}