com.att.research.xacmlatt.pdp.eval.EvaluationContextFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xacml-pdp Show documentation
Show all versions of xacml-pdp Show documentation
ATT reference implementation of XACML PDP engine
/*
*
* Copyright (c) 2013,2019 AT&T Knowledge Ventures
* SPDX-License-Identifier: MIT
*/
package com.att.research.xacmlatt.pdp.eval;
import java.util.Properties;
import com.att.research.xacml.api.Request;
import com.att.research.xacml.api.pip.PIPFinder;
import com.att.research.xacml.util.FactoryException;
import com.att.research.xacml.util.FactoryFinder;
import com.att.research.xacmlatt.pdp.policy.PolicyFinder;
import com.att.research.xacmlatt.pdp.util.ATTPDPProperties;
/**
* EvaluationContextFactory provides methods for creating {@link com.att.research.xacmlatt.pdp.eval.EvaluationContext} objects
* based on configuration information found in standard places. (TODO: Detail what these are)
*
* @author car
* @version $Revision: 1.3 $
*/
public abstract class EvaluationContextFactory {
private static final String FACTORYID = ATTPDPProperties.PROP_EVALUATIONCONTEXTFACTORY;
private static final String DEFAULT_FACTORY_CLASSNAME = "com.att.research.xacmlatt.pdp.std.StdEvaluationContextFactory";
protected EvaluationContextFactory() {
}
protected EvaluationContextFactory(Properties properties) {
}
public static EvaluationContextFactory newInstance() throws FactoryException {
return FactoryFinder.find(FACTORYID, DEFAULT_FACTORY_CLASSNAME, EvaluationContextFactory.class);
}
public static EvaluationContextFactory newInstance(Properties properties) throws FactoryException {
return FactoryFinder.find(FACTORYID, DEFAULT_FACTORY_CLASSNAME, EvaluationContextFactory.class, properties);
}
public static EvaluationContextFactory newInstance(String className, ClassLoader classLoader) throws FactoryException {
return FactoryFinder.newInstance(className, EvaluationContextFactory.class, classLoader, false);
}
public static EvaluationContextFactory newInstance(String className) throws FactoryException {
return FactoryFinder.newInstance(className, EvaluationContextFactory.class, null, true);
}
/**
* Gets a new {@link com.att.research.xacmlatt.pdp.eval.EvaluationContext} for the given {@link com.att.research.xacml.api.Request}.
*
* @param request the Request
for the new EvaluationContext
* @return a new EvaluationContext
for the given Request
*/
public abstract EvaluationContext getEvaluationContext(Request request);
/**
* Sets the {@link com.att.research.xacmlatt.pdp.policy.PolicyFinder} for this EvaluationContextFactory
to an
* explicit instance instead of the default or configured value.
*
* @param policyFinder the PolicyFinder
to use in creating new EvaluationContext
s.
*/
public abstract void setPolicyFinder(PolicyFinder policyFinder);
/**
* Sets the {@link com.att.research.xacml.api.pip.PIPFinder} for this EvaluationContextFactory
to an
* explicit instance instaed of the default or configured value.
*
* @param pipFinder the PIPFinder
to use in creating new EvaluationContext
s.
*/
public abstract void setPIPFinder(PIPFinder pipFinder);
}