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

javax.constraints.scheduler.ConstraintActivityResource Maven / Gradle / Ivy

The newest version!
package javax.constraints.scheduler;

import javax.constraints.Constraint;
import javax.constraints.Var;

/**
 * This is an interface for different resource constraints.
 */

public interface ConstraintActivityResource extends Constraint {

	public Activity getActivity();

	public int getCapacity();

	public Var getCapacityVar();

	public Resource getResource();

	public String getFailureReason();
	public void setFailureReason(String failureReason);
	
	public String getType();
	public void setType(String type);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy