* @param name Name of the desired protection one is seeking
* @return The protection or null if not found
*/
@Override
public Protection getProtection(String name) {
Protection p = null;
for (Protection registered : protections) {
if (registered.getName().equals(name)) {
p = registered;
break;
}