当前位置: 首页>>代码示例>>Java>>正文


Java PDP类代码示例

本文整理汇总了Java中org.herasaf.xacml.core.api.PDP的典型用法代码示例。如果您正苦于以下问题:Java PDP类的具体用法?Java PDP怎么用?Java PDP使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


PDP类属于org.herasaf.xacml.core.api包,在下文中一共展示了PDP类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: deployPolicies

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
void deployPolicies(PDP pdp, List<Evaluatable> policies,
                    XacmlRequestDto xacmlRequest, boolean isAudited) {
    try {
        final PolicyRetrievalPoint repo = pdp.getPolicyRepository();
        final UnorderedPolicyRepository repository = (UnorderedPolicyRepository) repo;
        repository.deploy(policies);
        if (isAudited) {
            for (final Evaluatable policy : policies) {
                auditPolicy(policy, xacmlRequest);
            }
        }
    } catch (AuditException | WritingException | IOException
            | DocumentAccessorException | DocumentXmlConverterException e) {
        log.error(e.getMessage(), e);
        undeployAllPolicies(pdp);
        throw new C2SAuditException(e.getMessage(), e);
    }
}
 
开发者ID:bhits,项目名称:context-handler,代码行数:19,代码来源:PolicyDecisionPointServiceImpl.java

示例2: managePoliciesAndEvaluateRequest

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
private synchronized XacmlResponseDto managePoliciesAndEvaluateRequest(
        RequestType request, XacmlRequestDto xacmlRequest)
        throws C2SAuditException, NoPolicyFoundException,
        PolicyProviderException {
    PDP pdp = getSimplePDP();
    deployPolicies(pdp, xacmlRequest);
    return managePoliciesAndEvaluateRequest(pdp, request);
}
 
开发者ID:bhits,项目名称:context-handler,代码行数:9,代码来源:PolicyDecisionPointServiceImpl.java

示例3: evaluateRequest

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
private XacmlResponseDto evaluateRequest(PDP simplePDP, RequestType request) {
    //final XacmlResponseDto xacmlResponse = new XacmlResponseDto();
    List<String> pdpObligations = new ArrayList<>();
    final XacmlResponseDto xacmlResponse = XacmlResponseDto.builder().pdpDecision("DENY").pdpObligations
            (pdpObligations).build();

    final ResponseType response = simplePDP.evaluate(request);
    for (final ResultType r : response.getResults()) {
        log.debug("PDP Decision: " + r.getDecision().toString());
        xacmlResponse.setPdpDecision(r.getDecision().toString());

        if (r.getObligations() != null) {
            final List<String> obligations = new LinkedList<>();
            for (final ObligationType o : r.getObligations()
                    .getObligations()) {
                for (final AttributeAssignmentType a : o
                        .getAttributeAssignments()) {
                    for (final Object c : a.getContent()) {
                        log.debug("With Obligation: " + c);
                        obligations.add(c.toString());
                    }
                }
            }
            xacmlResponse.setPdpObligations(obligations);
        }
    }

    log.debug("xacmlResponse.pdpDecision: "
            + xacmlResponse.getPdpDecision());
    log.debug("xacmlResponse is ready!");
    return xacmlResponse;
}
 
开发者ID:bhits,项目名称:context-handler,代码行数:33,代码来源:PolicyDecisionPointServiceImpl.java

示例4: undeployAllPolicies

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
private void undeployAllPolicies(PDP pdp) {
    final PolicyRepository repo = (PolicyRepository) pdp
            .getPolicyRepository();
    final List<Evaluatable> policies = new LinkedList<>(
            repo.getDeployment());
    for (final Evaluatable policy : policies) {
        repo.undeploy(policy.getId());
    }
}
 
开发者ID:bhits,项目名称:context-handler,代码行数:10,代码来源:PolicyDecisionPointServiceImpl.java

示例5: evaluateRequest

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
@Override
public XacmlResponse evaluateRequest(PDP pdp, RequestType request,
		String patientUniqueId) {
	LOGGER.info("evaluateRequest invoked");
	List<Evaluatable> deployedPolicies = deployPolicies(pdp,
			patientUniqueId);
	return managePoliciesAndEvaluateRequest(pdp, request, deployedPolicies);
}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:9,代码来源:PolicyDecisionPointImpl.java

示例6: checkAccess

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Access control:
 * Check the target elements of the policySetOrPolicy with HERAS against the request.	 * 
 *  
 * @param policySetOrPolicy - a list of PolicyType or PolicySetType objects from PPL
 * @param request - the XACML request
 * @return the decision (PERMIT, DENY, INDETERMINATE, NOT_APPLICABLE)
 * @throws WritingException
 * @throws SyntaxException
 * @throws com.sap.research.primelife.exceptions.SyntaxException
 * @throws JAXBException
 */
public DecisionType checkAccess(List<Object> policySetOrPolicy, RequestType request) 
	throws WritingException, SyntaxException, com.sap.research.primelife.exceptions.SyntaxException, JAXBException{
	
	// we evaluate request against policy repository associated with the PII
	SimplePDPFactory.useDefaultInitializers();
	PDP simplePDP = SimplePDPFactory.getSimplePDP();
	PolicyRepository repo = simplePDP.getPolicyRepository();
	// initialize policy repository
	for (Object obj : policySetOrPolicy) {
		Evaluatable evaluatable = null;
		
		if (obj instanceof PolicySetType) {
			evaluatable = ConverterFunctions.convertToHerasPolicySet(
					(PolicySetType) obj);
		}
		else if (obj instanceof PolicyType) {
			evaluatable = ConverterFunctions.convertToHerasPolicy(
					(PolicyType) obj);
		}
		else if (obj instanceof eu.primelife.ppl.policy.xacml.impl.PolicyType) {
			evaluatable = ConverterFunctions.convertToHerasPolicy((eu.primelife.ppl.policy.xacml.impl.PolicyType) obj);
		}
		repo.deploy(evaluatable);
	}
	ResponseCtx responseCtx = simplePDP.evaluate(new RequestCtx(request));
	DecisionType decision =	responseCtx.getResponse().getResults().get(0).getDecision();
	return decision;
}
 
开发者ID:fdicerbo,项目名称:fiware-ppl,代码行数:41,代码来源:AccessControlUtils.java

示例7: enforce

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Enforces policy given in <code>preferencePath</code> against request
 * stored in <code>request</code>.
 *
 * @param preferencePath	preference policy path (in resources)
 * @param domain			data controller id
 * @param resource			resource attribute type
 * @return	policy enforcement result
 * @throws SyntaxException
 * @throws WritingException
 * @throws org.herasaf.xacml.core.SyntaxException
 * @throws JAXBException
 */
private DecisionType enforce(String preferencePath, String domain,
		String resource) throws SyntaxException, WritingException,
		org.herasaf.xacml.core.SyntaxException, JAXBException {
	SimplePDPFactory.useDefaultInitializers();
	PDP simplePDP = SimplePDPFactory.getSimplePDP();
	PolicyRepository repo = simplePDP.getPolicyRepository();
	PolicyType policy = (PolicyType) unmarshallerPrime.unmarshal(
			getClass().getResourceAsStream(preferencePath));
	repo.deploy(ConverterFunctions.convertToHerasPolicy(policy));
	RequestCtx request = createRequestContext(domain, resource);
	ResponseCtx responseCtx = simplePDP.evaluate(request);
	List<ResultType> results = responseCtx.getResponse().getResults();
	return results.get(0).getDecision();
}
 
开发者ID:fdicerbo,项目名称:fiware-ppl,代码行数:28,代码来源:HerasPdpTest.java

示例8: getSimplePDP

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
private PDP getSimplePDP() {
    return SimplePDPFactory.getSimplePDP();
}
 
开发者ID:bhits,项目名称:context-handler,代码行数:4,代码来源:PolicyDecisionPointServiceImpl.java

示例9: undeployPolicies

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Undeploy policies.
 * 
 * @param pdp
 *            the pdp
 * @param policies
 *            the policies
 */
public void undeployPolicies(PDP pdp, List<Evaluatable> policies) {
	PolicyRepository repo = (PolicyRepository) pdp.getPolicyRepository();
	for (Evaluatable policy : policies) {
		repo.undeploy(policy.getId());
	}
}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:15,代码来源:PolicyDecisionPointImpl.java

示例10: managePoliciesAndEvaluateRequest

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Manage policies and evaluate request (deploys the policies, evaluates the
 * request. Policies are undeployed after evaluation).
 * 
 * @param pdp
 *            the pdp
 * @param request
 *            the request
 * @param patientUniqueId
 *            the patient unique id
 * @return the xacml response
 */
private XacmlResponse managePoliciesAndEvaluateRequest(PDP pdp,
		RequestType request, String patientUniqueId) {
	List<Evaluatable> deployedPolicies = deployPolicies(pdp,
			patientUniqueId);
	return managePoliciesAndEvaluateRequest(pdp, request, deployedPolicies);
}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:19,代码来源:PolicyDecisionPointImpl.java

示例11: evaluateRequest

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Evaluate the request using the simplePDP and retrieve the response from
 * the PDP.
 * 
 * @param pdp
 *            the pdp
 * @param request
 *            the request
 * @param policies
 *            the policies
 * @return the xacml response
 */
public abstract XacmlResponse evaluateRequest(PDP pdp, RequestType request,
		List<Evaluatable> policies);
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:15,代码来源:PolicyDecisionPoint.java

示例12: deployPolicies

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Deploy all policies of a patient unique id.
 * 
 * @param pdp
 *            the pdp
 * @param patientUniqueId
 *            the patient unique id
 * @return the list
 */
public List<Evaluatable> deployPolicies(PDP pdp, String patientUniqueId) {
	List<Evaluatable> deployedPolicies = getPolicies(patientUniqueId);
	deployPolicies(pdp, deployedPolicies);
	return deployedPolicies;
}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:15,代码来源:PolicyDecisionPointImpl.java

示例13: undeployPolicy

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Undeploy multiple policies on the policy repository.
 * 
 * @param pdp
 *            the pdp
 * @param policy
 *            the policy
 */
public void undeployPolicy(PDP pdp, Evaluatable policy) {
	PolicyRepository repo = (PolicyRepository) pdp.getPolicyRepository();
	repo.undeploy(policy.getId());

}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:14,代码来源:PolicyDecisionPointImpl.java

示例14: undeployPoliciesById

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Undeploy multiple policies on the policy repository.
 * 
 * @param pdp
 *            the pdp
 * @param policyIds
 *            the policy ids
 */
public void undeployPoliciesById(PDP pdp, List<EvaluatableID> policyIds) {
	PolicyRepository repo = (PolicyRepository) pdp.getPolicyRepository();
	repo.undeploy(policyIds);
}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:13,代码来源:PolicyDecisionPointImpl.java

示例15: getSimplePDP

import org.herasaf.xacml.core.api.PDP; //导入依赖的package包/类
/**
 * Gets the simple pdp.
 * 
 * @return the simple pdp
 */
public PDP getSimplePDP() {
	return SimplePDPFactory.getSimplePDP();
}
 
开发者ID:tlin-fei,项目名称:ds4p,代码行数:9,代码来源:PolicyDecisionPointImpl.java


注:本文中的org.herasaf.xacml.core.api.PDP类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。