All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.factcenter.pathORam.LocalServerFactory Maven / Gradle / Ivy

The newest version!
package org.factcenter.pathORam;

public class LocalServerFactory implements ServerFactory
{

	private int bucketSize;
	
	public LocalServerFactory(int bucketSize)
	{
		this.bucketSize = bucketSize;
	}

	@Override
	public PathORamServer createPathORamServer(int blocksCount, int blockSize) {
		return new LocalServer(blocksCount, blockSize, bucketSize);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy