All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.security.fences.config.FenceVisitor Maven / Gradle / Ivy

There is a newer version: 1.9-beta
Show newest version
package com.google.security.fences.config;

import com.google.security.fences.policy.ApiElement;

/**
 * Can be used with {@link Fence#visit(FenceVisitor)} to recursively walk
 * a fence config tree.
 */
public interface FenceVisitor {
  /**
   * @param f the fence visited.
   * @param apiElement the context in which f was visited derived from its
   *   ancestors.
   */
  void visit(Fence f, ApiElement apiElement);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy