/* * Mobicents, Communications Middleware * * Copyright (c) 2008, Red Hat Middleware LLC or third-party * contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Middleware LLC. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * * Boston, MA 02110-1301 USA */ package org.mobicents.media.server.ctrl.mgcp.evt; import org.mobicents.media.server.ctrl.mgcp.Request; import org.mobicents.media.server.spi.Connection; import org.mobicents.media.server.spi.Endpoint; /** * * @author kulikov */ public abstract class SignalGenerator { private String resourceName; private String params; private Endpoint endpoint; private Connection connection; public SignalGenerator(String resourceName, String params) { this.resourceName = resourceName; this.params = params; } public String getResourceName() { return this.resourceName; } public Connection getConnection() { return connection; } public Endpoint getEndpoint() { return endpoint; } public boolean verify(Connection connection) { this.connection = connection; return this.doVerify(connection); } public boolean verify(Endpoint endpoint) { this.endpoint = endpoint; return this.doVerify(endpoint); } protected abstract boolean doVerify(Connection connection); protected abstract boolean doVerify(Endpoint endpoint); public abstract void start(Request request); public abstract void cancel(); }