Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: e0c26e095e0f59946a65509127200606f54e1496 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                
                                                       







                                                                                 






                                                                    
                                                               
                                                      


         
/*******************************************************************************
 * Copyright (c) 2011, 2012 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.transport.ecf;

import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.core.spi.IAgentServiceFactory;

public class ECFTransportComponent implements IAgentServiceFactory {

	public Object createService(IProvisioningAgent agent) {
		return new RepositoryTransport(agent);
	}
	
}

Back to the top