/**
 * Copyright 2008-2009 DRIVER PROJECT (Bielefeld University)
 * Original author: Marek Imialek <marek.imialek at uni-bielefeld.de>
 *
 * 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.contract.mocks;

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;

/**
 * @author <a href="mailto:marek.imialek at uni-bielefeld.de">Marek Imialek</a>
 *
 */
public class mockISSNService implements ISSNService {

	public mockISStorage isStorage;
	
	

	/**
	 * @param mockISStorage the mockISStorage to set
	 */
	public void setIsStorage(mockISStorage isStorage) {
		this.isStorage = isStorage;
	}

	/**
	 * @return the mockISStorage
	 */
	public mockISStorage getIsStorage() {
		return isStorage;
	}

	@Override
	public boolean actionCreatePerformed(String resourceType, String profileId,
			String profile) throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public boolean actionDeletePerformed(String resourceType, String profileId)
			throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public boolean actionUpdatePerformed(String resourceType, String profileId,
			String profileBefore, String profileAfter) throws ISSNException {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public String getCurrentMessage(String topic) throws ISSNException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public List<String> listSubscriptions() {
		// TODO Auto-generated method stub
		return null;
	}

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

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

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

	@Override
	public String subscribe(W3CEndpointReference consumerReference,
			String topicExpression, int initialTerminationTime)
			throws ISSNException {
		// TODO Auto-generated method stub
		return null;
	}

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

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

	@Override
	public void notify(String subscriptionId, String topic, String isId,
			String message) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void start() {
		// TODO Auto-generated method stub
		
	}

}
