From 598a0a928db52111744837e9d3daae4c3a5dbcdf Mon Sep 17 00:00:00 2001 From: elinuxhenrik Date: Fri, 19 Oct 2018 13:04:36 +0200 Subject: Clean up for Sonar Change-Id: I5daa606cd974e43c899b7e35b14d268a255c7102 Issue-ID: DCAEGEN2-835 Signed-off-by: elinuxhenrik --- .../model/ConsumerDmaapModelForUnitTest.java | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/ConsumerDmaapModelForUnitTest.java (limited to 'datafile-commons/src/main') diff --git a/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/ConsumerDmaapModelForUnitTest.java b/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/ConsumerDmaapModelForUnitTest.java deleted file mode 100644 index 62e6b1bf..00000000 --- a/datafile-commons/src/main/java/org/onap/dcaegen2/collectors/datafile/model/ConsumerDmaapModelForUnitTest.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * ============LICENSE_START====================================================================== - * Copyright (C) 2018 NOKIA Intellectual Property, 2018 Nordix Foundation. All rights reserved. - * =============================================================================================== - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License - * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. See the License for the specific language governing permissions and limitations under - * the License. - * ============LICENSE_END======================================================================== - */ - -package org.onap.dcaegen2.collectors.datafile.model; - -public class ConsumerDmaapModelForUnitTest implements ConsumerDmaapModel { - private final String name; - private final String location; - private final String compression; - private final String fileFormatType; - private final String fileFormatVersion; - - public ConsumerDmaapModelForUnitTest() { - this.name = "A20161224.1030-1045.bin.gz"; - this.location = "target/A20161224.1030-1045.bin.gz"; - this.compression = "gzip"; - this.fileFormatType = "org.3GPP.32.435#measCollec"; - this.fileFormatVersion = "V10"; - } - - @Override - public String getName() { - return name; - } - - @Override - public String getLocation() { - return location; - } - - @Override - public String getCompression() { - return compression; - } - - @Override - public String getFileFormatType() { - return fileFormatType; - } - - @Override - public String getFileFormatVersion() { - return fileFormatVersion; - } -} -- cgit 1.2.3-korg