org.rhq.plugins.apache.parser.ApacheParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhq-apache-plugin Show documentation
Show all versions of rhq-apache-plugin Show documentation
a plugin for managing Apache web servers (1.3 and later)
package org.rhq.plugins.apache.parser;
public interface ApacheParser {
public void addDirective(ApacheDirective directive) throws Exception;
public void startNestedDirective(ApacheDirective directive);
public void endNestedDirective(ApacheDirective directive);
}