Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block
languagejava
titleServiceDeploymentContributor
linenumberstrue
package org.apache.hadoop.gateway.deploy;
import org.apache.hadoop.gateway.topology.Service;
// An extension to base interface for backward compatibility with existing contributors.
public interface ServiceDeploymentContributor2 extends ServiceDeploymentContributor {
  // The list of versions supported by this contributor.
  // Each element is formatted according to the Maven Enforcer plugin syntax.
  // Returning null indicates that all versions are supported.
  String[] getVersions();
}

...