File tree Expand file tree Collapse file tree
org/geppetto/datasources/opencpu
resources/templates/OpenCPU Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232 <aop : scoped-proxy proxy-target-class =" false" />
3333 </bean >
3434
35- <osgi : service id =" nblastDataSourceExporter " ref =" nblastDataSource "
35+ <osgi : service id =" OpenCPUDataSourceExporter " ref =" opencpuDataSource "
3636 interface=" org.geppetto.core.datasources.IDataSourceService" >
3737 </osgi : service >
38- <bean id =" nblastDataSource " scope =" prototype" class =" org.geppetto.datasources.nblast.NBLASTDataSourceService " >
38+ <bean id =" opencpuDataSource " scope =" prototype" class =" org.geppetto.datasources.opencpu.OpenCPUDataSourceService " >
3939 <aop : scoped-proxy proxy-target-class =" false" />
4040 </bean >
4141
Original file line number Diff line number Diff line change 11
2- package org .geppetto .datasources .nblast ;
2+ package org .geppetto .datasources .opencpu ;
33
44import org .geppetto .core .datasources .GeppettoDataSourceException ;
55import org .geppetto .core .datasources .IQueryListener ;
1818 *
1919 */
2020
21- public class NBLASTDataSourceService extends ADataSourceService
21+ public class OpenCPUDataSourceService extends ADataSourceService
2222{
2323
24- public NBLASTDataSourceService ()
24+ public OpenCPUDataSourceService ()
2525 {
26- super ("/templates/NBLAST /queryTemplate.vm" );
26+ super ("/templates/OpenCPU /queryTemplate.vm" );
2727 }
2828
2929
@@ -48,7 +48,7 @@ public IQueryResponseProcessor getQueryResponseProcessor()
4848 {
4949 if (queryResponseProcessor == null )
5050 {
51- queryResponseProcessor = new NBLASTResponseProcessor ();
51+ queryResponseProcessor = new OpenCPUResponseProcessor ();
5252 }
5353 return queryResponseProcessor ;
5454 }
Original file line number Diff line number Diff line change 11
2- package org .geppetto .datasources .nblast ;
2+ package org .geppetto .datasources .opencpu ;
33
44import java .util .ArrayList ;
55import java .util .List ;
1616 * @author dariodelpiano
1717 *
1818 */
19- public class NBLASTResponseProcessor implements IQueryResponseProcessor
19+ public class OpenCPUResponseProcessor implements IQueryResponseProcessor
2020{
2121
2222 /*
File renamed without changes.
You can’t perform that action at this time.
0 commit comments