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

com.genexus.webpanels.BlobsCleaner Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.0
Show newest version
package com.genexus.webpanels;

import java.util.Hashtable;

public class BlobsCleaner
{
	private static BlobsCleaner instance = null;
	
	//Blobs archived by websession id
	private Hashtable blobsTable;
	
	private BlobsCleaner()
	{
	}
	
	public static BlobsCleaner getInstance()
	{
		if(instance == null)
		{
			instance = new BlobsCleaner();
		}
		return instance;
	}
	
	public static void endBlobCleaner()
	{
	}
	
	public synchronized void addBlobFile(String filePath)
	{
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy