diff options
Diffstat (limited to 'openecomp-be/lib')
1 files changed, 6 insertions, 0 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/schemagenerator/ComponentQuestionnaireSchemaInput.java b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/schemagenerator/ComponentQuestionnaireSchemaInput.java index 65f9046fc0..7f038e314d 100644 --- a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/schemagenerator/ComponentQuestionnaireSchemaInput.java +++ b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/schemagenerator/ComponentQuestionnaireSchemaInput.java @@ -12,10 +12,13 @@ * 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. + * Modifications copyright (c) 2019 Nokia */ package org.openecomp.sdc.vendorsoftwareproduct.types.schemagenerator; +import com.google.common.annotations.VisibleForTesting; + import java.util.List; import java.util.Map; @@ -25,6 +28,9 @@ public class ComponentQuestionnaireSchemaInput implements SchemaTemplateInput { private List<String> nicNames; private Map componentQuestionnaireData; + @VisibleForTesting + ComponentQuestionnaireSchemaInput() {} + public ComponentQuestionnaireSchemaInput(List<String> nicNames, Map componentQuestionnaireData, String componentDisplayName, boolean manual) { this.nicNames = nicNames; |