Parameterized Command Interface
From OWASP
This template will categorize articles that include it into the Category:Stub category.
A parameterized command interface is used as an alternative to a string-based command interface. This type of interface prevents Injection attacks by keeping parameters separate from the command itself.
Examples of parameterized command interfaces include:
- PreparedStatement in Java

