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