/**
 * Copyright 2008-2009 DRIVER PROJECT (ICM UW)
 * Original author: Marek Horst
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package eu.dnetlib.data.ismock;

import java.util.List;

import javax.xml.ws.wsaddressing.W3CEndpointReference;

import eu.dnetlib.enabling.is.sn.rmi.ISSNException;
import eu.dnetlib.enabling.is.sn.rmi.ISSNService;


/**
 * Very simple mock IS-SN class, for performing junit index tests.
 * @author mhorst
 *
 */
public class MockISSN implements ISSNService {

	public boolean actionPerformed(String topicPrefix, String brief)
			{
		// TODO Auto-generated method stub
		return false;
	}

	public boolean addCreateTopic(String resourceType)
			{
		// TODO Auto-generated method stub
		return false;
	}

	public boolean addResourceTopics(String resId) {
		// TODO Auto-generated method stub
		return false;
	}

	public String identify() {
		// TODO Auto-generated method stub
		return null;
	}

	public boolean isAnOpenDLib2Service() {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean pauseSubscription(String subscrId) {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean postConfig(int delay) {
		// TODO Auto-generated method stub
		return false;
	}


	public boolean removeCreateTopic(String resourceType)
			{
		// TODO Auto-generated method stub
		return false;
	}

	public boolean removeResourceTopics(String resId)
			{
		// TODO Auto-generated method stub
		return false;
	}

	public boolean renew(String subscrId, String terminationTime) {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean resumeSubscription(String subscrId) {
		// TODO Auto-generated method stub
		return false;
	}

	public boolean startup() {
		// TODO Auto-generated method stub
		return false;
	}

	public String subscribe(String ConsumerReference, String topicExpression,
			String InitialTerminationTime) {
		// TODO Auto-generated method stub
		return null;
	}

	public boolean unsubscribe(String subscrId) {
		// TODO Auto-generated method stub
		return false;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#actionCreatePerformed(java.lang.String, java.lang.String, java.lang.String)
	 */
//	@Override
	public boolean actionCreatePerformed(String resourceType, String profileId,
			String profile) throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#actionDeletePerformed(java.lang.String, java.lang.String)
	 */
//	@Override
	public boolean actionDeletePerformed(String resourceType, String profileId)
			throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#actionUpdatePerformed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
	 */
//	@Override
	public boolean actionUpdatePerformed(String resourceType, String profileId,
			String profileBefore, String profileAfter) throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#getCurrentMessage(java.lang.String)
	 */
//	@Override
	public String getCurrentMessage(String topic) throws ISSNException {
		// TODO Auto-generated method stub
		return null;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#listSubscriptions()
	 */
//	@Override
	public List<String> listSubscriptions() {
		// TODO Auto-generated method stub
		return null;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#renew(java.lang.String, int)
	 */
//	@Override
	public boolean renew(String subscrId, int terminationTime)
			throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.common.rmi.BaseService#notify(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
	 */
//	@Override
	public void notify(String subscriptionId, String topic, String isId,
			String message) {
		// TODO Auto-generated method stub

	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.common.rmi.BaseService#start()
	 */
//	@Override
	public void start() {
		// TODO Auto-generated method stub

	}

	/* (non-Javadoc)
	 * @see eu.dnetlib.enabling.is.sn.rmi.ISSNService#subscribe(javax.xml.ws.wsaddressing.W3CEndpointReference, java.lang.String, int)
	 */
//	@Override
	public String subscribe(W3CEndpointReference consumerReference,
			String topicExpression, int initialTerminationTime)
			throws ISSNException {
		// TODO Auto-generated method stub
		return null;
	}

}
