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

org.jbpm.sim.def.ResourceRequirement Maven / Gradle / Ivy

There is a newer version: 3.2.19.ayg
Show newest version
package org.jbpm.sim.def;

/**
 * @author [email protected]
 * TODO: rename
 */
public class ResourceRequirement {

  private String resourcePoolName;
  
  private int amount;

  public ResourceRequirement(String resourcePoolName, int requiredAmount) {
    this.resourcePoolName = resourcePoolName;
    this.amount = requiredAmount;
  }

  public String getResourcePoolName() {
    return resourcePoolName;
  }

  public int getAmount() {
    return amount;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy