view src/main/java/de/mpiwg/itgroup/ismi/entry/dataBeans/AbstractCache.java @ 216:93d33f138c9e default tip

update medeniyet image server URL.
author casties
date Wed, 26 Jan 2022 16:39:32 +0100
parents 2e911857a759
children
line wrap: on
line source

package de.mpiwg.itgroup.ismi.entry.dataBeans;

import org.mpi.openmind.cache.WrapperService;
import org.mpi.openmind.repository.services.ServiceRegistry;

public class AbstractCache {

	private ServiceRegistry sr;
	
	public AbstractCache(ServiceRegistry sr){
		this.sr = sr;
		this.reset();
	}
	
	public void reset(){}

	protected WrapperService getWrapper(){
		return sr.getWrapper();
	}
}