blob: 81c4128d4dff41abd718628366e7f4b7c8e45358 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Sonatype, Inc 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:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.repository;
import org.eclipse.equinox.internal.provisional.p2.core.eventbus.IProvisioningEventBus;
import org.eclipse.equinox.p2.core.IAgentLocation;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.core.spi.IAgentServiceFactory;
public class CacheManagerComponent implements IAgentServiceFactory {
@Override
public Object createService(IProvisioningAgent agent) {
final IProvisioningEventBus eventBus = agent.getService(IProvisioningEventBus.class);
CacheManager cache = new CacheManager(agent.getService(IAgentLocation.class),
agent.getService(Transport.class));
cache.setEventBus(eventBus);
return cache;
}
}