added warning suppression for data layer -- non-templated generic types have to be used here

pull/779/head
Justin Richer 2015-02-18 10:19:36 -05:00
parent f4813fccee
commit 6885713eed
4 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,7 @@ import com.google.gson.stream.JsonWriter;
*
* @author arielak
*/
@SuppressWarnings(value = {"rawtypes", "unchecked"})
public abstract class AbstractMITREidDataService implements MITREidDataService {
private static Logger logger = LoggerFactory.getLogger(AbstractMITREidDataService.class);

View File

@ -70,6 +70,7 @@ import com.google.gson.stream.JsonWriter;
* @author arielak
*/
@Service
@SuppressWarnings(value = {"unchecked"})
public class MITREidDataService_1_0 extends AbstractMITREidDataService {
private final static Logger logger = LoggerFactory.getLogger(MITREidDataService_1_0.class);

View File

@ -73,6 +73,7 @@ import com.google.gson.stream.JsonWriter;
* @author arielak
*/
@Service
@SuppressWarnings(value = {"unchecked"})
public class MITREidDataService_1_1 extends AbstractMITREidDataService {
private final static Logger logger = LoggerFactory.getLogger(MITREidDataService_1_1.class);

View File

@ -73,6 +73,7 @@ import com.google.gson.stream.JsonWriter;
* @author arielak
*/
@Service
@SuppressWarnings(value = {"unchecked"})
public class MITREidDataService_1_2 extends AbstractMITREidDataService {
private final static Logger logger = LoggerFactory.getLogger(MITREidDataService_1_2.class);