001package com.pingidentity.pd.alerthandler; 002 003import com.unboundid.directory.sdk.common.api.AlertHandler; 004import com.unboundid.directory.sdk.common.types.AlertNotification; 005 006/** 007 * This class implements a mock AlertHandler 008 */ 009public class DevNull extends AlertHandler { 010 @Override 011 public String getExtensionName() { 012 return "DevNull"; 013 } 014 @Override 015 public String[] getExtensionDescription() { 016 return new String[]{"A mock alert handler for the purpose of quiescing startup warnings."}; 017 } 018 @Override 019 public void handleAlert(AlertNotification alert) { 020 } 021}