package at.gv.egovernment.moa.spss.server.config;
/**
 * A class that contains information about a key module.
 * 
 * @author Patrick Peck
 * @version $Id$
 */
public class KeyModule {
  /** The key module ID. */
  private String id;
  /**
   * Create a Key object.
   * 
   * @param id The key module ID.
   */
  public KeyModule(String id) {
    this.id = id;
  }
  /**
   * Return the key ID.
   * 
   * @return The key ID.
   */
  public String getId() {
    return id;
  }
  /**
   * Return a String representation of this Key.
   * 
   * @return The String representation.
   * @see java.lang.Object#toString()
   */
  public String toString() {
    return "(Key - Id<" + id + ">)";
  }
}