1 package com.atlassian.plugin.metadata;
2
3 import java.util.Collection;
4
5 public interface RequiredPluginValidator {
6 /**
7 * Validates that the plugins that have been marked as required by the host application are enabled.
8 *
9 * @return a Collection of all plugin and module keys that did not validate.
10 */
11 Collection<String> validate();
12 }