blob: 01822e1acc6602ce5ee1f7ce09645cd803a08d8b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David Knibb initial implementation
* Matthew Webster Eclipse 3.2 changes
* Martin Lippert extracted caching service factory
* Martin Lippert caching of generated classes
*******************************************************************************/
package org.eclipse.equinox.service.weaving;
import java.net.URL;
import java.util.Map;
public interface ICachingService {
public boolean canCacheGeneratedClasses();
public CacheEntry findStoredClass(String namespace, URL sourceFileURL,
String name);
public void stop();
public boolean storeClass(String namespace, URL sourceFileURL,
Class<?> clazz, byte[] classbytes);
public boolean storeClassAndGeneratedClasses(String namespace,
URL sourceFileURL, Class<?> clazz, byte[] classbytes,
Map<String, byte[]> generatedClasses);
}