blob: 01a5c62f8a7523be691b29ff8689ead696c9d991 [file] [log] [blame]
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you under the Apache License, Version 2.0 (the *
* "License"); you may not use this file except in compliance *
* with the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, *
* software distributed under the License is distributed on an *
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
****************************************************************/
package org.apache.james.jspf.terms;
import org.apache.james.jspf.core.DNSLookupContinuation;
import org.apache.james.jspf.core.SPFSession;
import org.apache.james.jspf.core.exceptions.NeutralException;
import org.apache.james.jspf.core.exceptions.NoneException;
import org.apache.james.jspf.core.exceptions.PermErrorException;
import org.apache.james.jspf.core.exceptions.TempErrorException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This abstract class represent a gerneric modifier
*
*/
public abstract class GenericModifier implements Modifier, ConfigurationEnabled {
private static final Logger LOGGER = LoggerFactory.getLogger(GenericModifier.class);
private String host;
/**
* @see org.apache.james.jspf.core.SPFChecker#checkSPF(org.apache.james.jspf.core.SPFSession)
*/
public DNSLookupContinuation checkSPF(SPFSession spfData) throws PermErrorException,
TempErrorException, NeutralException, NoneException {
LOGGER.debug("Processing modifier: {}", this);
DNSLookupContinuation res = checkSPFLogged(spfData);
LOGGER.debug("Processed modifier: {} resulted in {} ",
this, res == null ? spfData.getCurrentResult() : "dns continuation...");
return res;
}
protected abstract DNSLookupContinuation checkSPFLogged(SPFSession spfData) throws PermErrorException,
TempErrorException, NeutralException, NoneException;
/**
* @see org.apache.james.jspf.terms.Modifier#enforceSingleInstance()
*/
public boolean enforceSingleInstance() {
return true;
}
/**
* @see org.apache.james.jspf.terms.ConfigurationEnabled#config(Configuration)
*/
public synchronized void config(Configuration params) throws PermErrorException {
if (params.groupCount() > 0) {
this.host = params.group(1);
}
}
/**
* @return Returns the host.
*/
protected synchronized String getHost() {
return host;
}
}