Project

General

Profile

« Previous | Next » 

Revision 40945

Added by Nikon Gasparis over 8 years ago

split repoApi methods to the current and a new extended one
added method to delete intefaces without checks

View differences:

RepoApiDirectImpl.java
1286 1286
		return ret;
1287 1287
	}
1288 1288

  
1289
	@Override
1290
	public boolean insertPubFileInterface(String dsId, RepositoryInterface iFace)
1291
			throws Exception {
1292
		return false;
1293
	}
1294
	
1295
	@Override
1296
	public boolean updatePubFileInterface(String dsId, RepositoryInterface iFace)
1297
			throws Exception {
1298
		return false;
1299
	}
1300

  
1301
	@Override
1302
	public List<Repository> getRepositories(String collectedFrom)
1303
			throws Exception {
1304
		// TODO Auto-generated method stub
1305
		return null;
1306
	}
1307

  
1308
	@Override
1309
	public Map<String, Repository> getRepositoriesAsMap(String collectedFrom) throws Exception {
1310
		return null;
1311
	}
1312

  
1313
	@Override
1314
	public void getRepositoryStats(Repository repo) throws Exception {
1315
		// TODO Auto-generated method stub
1316
	}
1317

  
1318
	@Override
1319
	public String updateRepositoryInformation(Repository repo)
1320
			throws Exception {
1321
		// TODO Auto-generated method stub
1322
		return null;
1323
	}
1324

  
1325
	@Override
1326
	public String deleteRepositoryInterfaces(String dsId,
1327
			List<RepositoryInterface> interfaces) throws Exception {
1328
		// TODO Auto-generated method stub
1329
		return null;
1330
	}
1331

  
1332
	@Override
1333
	public String insertRepositoryInterfaces(String dsId,
1334
			List<RepositoryInterface> interfaces, List<RepositoryInterface> interfacesOld, String datatype, List<RepositoryInterface> interfacesToRegister)
1335
			throws Exception {
1336
		// TODO Auto-generated method stub
1337
		return null;
1338
	}
1339

  
1340
	@Override
1341
	public boolean unregisterRepository(Repository repo) throws Exception {
1342
		// TODO Auto-generated method stub
1343
		return false;
1344
	}
1345

  
1346
	@Override
1347
	public List<Map<String, String>> getReposOfUser(String user_mail)
1348
			throws Exception {
1349
		// TODO Auto-generated method stub
1350
		return null;
1351
	}
1352

  
1353
	@Override
1354
	public String updateRepositoryInterfaces(String dsId,
1355
			List<RepositoryInterface> interfaces,
1356
			List<RepositoryInterface> interfacesOld, String datatype,
1357
			List<RepositoryInterface> interfacesToRegister) throws Exception {
1358
		// TODO Auto-generated method stub
1359
		return null;
1360
	}
1361

  
1362
	@Override
1363
	public List<Map<String, String>> getRegisteredReposByOthers(String string) {
1364
		// TODO Auto-generated method stub
1365
		return null;
1366
	}
1367

  
1368
	@Override
1369
	public String getNextScheduledExecution(String mode) throws Exception {
1370
		// TODO Auto-generated method stub
1371
		return null;
1372
	}
1373

  
1374
	@Override
1375
	public String getListLatestUpdate(String mode) throws Exception {
1376
		// TODO Auto-generated method stub
1377
		return null;
1378
	}
1379

  
1380
	@Override
1381
	public List<Repository> getReposByIds(List<String> datasourceIds) throws Exception {
1382
		return null;
1383
	}
1384 1289
}

Also available in: Unified diff