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

com.att.research.xacmlatt.pdp.std.StdPolicyFinderResult Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 *
 *          Copyright (c) 2013,2019  AT&T Knowledge Ventures
 *                     SPDX-License-Identifier: MIT
 */
package com.att.research.xacmlatt.pdp.std;

import com.att.research.xacml.api.Status;
import com.att.research.xacml.std.StdStatus;
import com.att.research.xacmlatt.pdp.policy.PolicyDef;
import com.att.research.xacmlatt.pdp.policy.PolicyFinderResult;

/**
 * StdPolicyFinderResult implements the {@link com.att.research.xacmlatt.pdp.policy.PolicyFinderResult} interface.
 * 
 * @author car
 * @version $Revision: 1.1 $
 * @param  the java class extending {@link com.att.research.xacmlatt.pdp.policy.PolicyDef} held by the StdPolicyFinderResult
 */
public class StdPolicyFinderResult implements PolicyFinderResult {
	private Status status;
	private T policyDef;
	
	public StdPolicyFinderResult(Status statusIn, T policyDefIn) {
		this.status	= (statusIn == null ? StdStatus.STATUS_OK : statusIn);
		this.policyDef	= policyDefIn;
	}
	
	public StdPolicyFinderResult(Status statusIn) {
		this(statusIn, null);
	}
	
	public StdPolicyFinderResult(T policyDefIn) {
		this(null, policyDefIn);
	}

	@Override
	public Status getStatus() {
		return this.status;
	}

	@Override
	public T getPolicyDef() {
		return this.policyDef;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy