package com.cogix.vwf;
//the mechanism for extensibility when publishing and unpublishing.
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;

class VoteNotifierExtension extends VoteNotifier {
	
	VoteNotifierExtension () {}
	
	void init (ServletConfig conf) {
//		if ( Dirs.bLogRequests() )	Dirs.getErrorLog().WriteLog ("3001I", "VoteNotifierExtension.init " );
		}
		
	void destroy () {
		}

	void onVote ( Poll pol, ThisCall thiscall) {
		String pollid = pol.pollid();
//		if ( Dirs.bLogRequests() )	Dirs.getErrorLog().WriteLog ("3002I", "VoteNotifierExtension.onVote " + pollid );
		//	See OnPublishChange for commonly used code examples			
		}
    }