diff options
author | vasraz <vasyl.razinkov@est.tech> | 2020-03-24 17:32:06 +0000 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2020-03-26 06:42:22 +0000 |
commit | 9f8477bc49755f9b1e417266624bbc04958e8b9b (patch) | |
tree | b515106c327f4bf9721023bcf25f68b801c24c18 /catalog-model/src/main/java/org | |
parent | 29ef7edbf694dea1a33a7ddd97b7250d2ec1f61e (diff) |
Increase test coverage
Change-Id: Ie28e36012be1313efa0082b34c0b36c325dc1b76
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-2833
Diffstat (limited to 'catalog-model/src/main/java/org')
-rw-r--r-- | catalog-model/src/main/java/org/openecomp/sdc/be/model/ConsumerDefinition.java | 6 | ||||
-rw-r--r-- | catalog-model/src/main/java/org/openecomp/sdc/be/model/ImplementationArtifact.java | 67 |
2 files changed, 2 insertions, 71 deletions
diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/ConsumerDefinition.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/ConsumerDefinition.java index 18e4098794..7fde867578 100644 --- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/ConsumerDefinition.java +++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/ConsumerDefinition.java @@ -7,9 +7,9 @@ * 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. @@ -25,11 +25,9 @@ import org.openecomp.sdc.be.datatypes.elements.ConsumerDataDefinition; public class ConsumerDefinition extends ConsumerDataDefinition { public ConsumerDefinition() { - super(); } public ConsumerDefinition(ConsumerDataDefinition a) { super(a); - } } diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/ImplementationArtifact.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/ImplementationArtifact.java deleted file mode 100644 index 77bc91663e..0000000000 --- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/ImplementationArtifact.java +++ /dev/null @@ -1,67 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * SDC - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. 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.openecomp.sdc.be.model; - -/** - * Specifies an implementation artifact for interfaces or operations of a - * {@link NodeType node type} or {@link RelationshipType relation type}. - * - * @author esofer - */ -public class ImplementationArtifact { - /** - * <p> - * Specifies the type of this artifact. - * </p> - */ - private String artifactType; - - /** - * <p> - * Identifies an Artifact Template to be used as implementation artifact. - * This Artifact Template can be defined in the same Definitions document or - * in a separate, imported document. - * </p> - * - * <p> - * The type of Artifact Template referenced by the artifactRef attribute - * MUST be the same type or a sub-type of the type specified in the - * artifactType attribute. - * </p> - * - * <p> - * Note: if no Artifact Template is referenced, the artifact type specific - * content of the ImplementationArtifact element alone is assumed to - * represent the actual artifact. For example, a simple script could be - * defined in place within the ImplementationArtifact element. - * </p> - */ - private String artifactRef; - - /** - * The name of the archive in which the artifact lies. - */ - private String archiveName; - /** - * The version of the archive in which the artifact lies. - */ - private String archiveVersion; -} |