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

com.wci.umls.server.helpers.PfscParameter Maven / Gradle / Ivy

/**
 * Copyright 2015 West Coast Informatics, LLC
 */
package com.wci.umls.server.helpers;

import java.util.List;

/**
 * Represents a {@link PfsParameter} with the addition of search criteria.
 */
public interface PfscParameter extends PfsParameter {

  /**
   * Returns the search criteria.
   *
   * @return the search criteria
   */
  public List getSearchCriteria();

  /**
   * Sets the search criteria.
   *
   * @param searchCriteria the search criteria
   */
  public void setSearchCriteria(List searchCriteria);

  /**
   * Adds the search criteria.
   *
   * @param searchCriteria the search criteria
   */
  public void addSearchCriteria(SearchCriteria searchCriteria);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy