/*******************************************************************************
 * Copyright (c), 2001, 2002 N2 Broadband, Inc.  All Rights Reserved.
 *
 * This module contains unpublished, confidential, proprietary
 * material.  The use and dissemination of this material are
 * governed by a license.  The above copyright notice does not
 * evidence any actual or intended publication of this material.
 *
 * Author:  Drake H. Henderson
 * Created:  11-12-01
 *
 ******************************************************************************/

package com.n2bb.sysmonui.alerts;

public class AlertPatternBean {
  
  private String name = null;
  private String pattern = null;

  public AlertPatternBean (String name, String pattern) {
    this.name = name;
    this.pattern = pattern;
  }
  
  public String getName() {
    return name == null ? "" : name;
  }

  public String getPattern() {
    return pattern == null ? "" : pattern;
  }

  public void setName(String name) {
    this.name = name;
  }

  public void setPattern(String pattern) {
    this.pattern = pattern;
  }

}

