package at.gv.egovernment.moa.spss.api.impl;
import at.gv.egovernment.moa.spss.api.xmlverify.SupplementProfileID;
/**
 * Default implementation of SupplementProfileID.
 * 
 * @author Fatemeh Philippi
 * @version $Id$
 */
public class SupplementProfileIDImpl implements SupplementProfileID {
  /** The profile ID. */
  private String profileID;
  
  /**
   * Sets the SupplementProfile profile ID.
   * 
   * @param profileID The profile ID.
   */
  public void setSupplementProfileID(String profileID) {
    this.profileID = profileID;
  }
  public String getSupplementProfileID() {
    return profileID;
  }
  /**
   * Gets the type of SupplementProfile.
   * 
   * @return ID_SUPPLEMENTPROFILE
   */
  public int getSupplementProfileType() {
    return ID_SUPPLEMENTPROFILE;
  }
}