X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fbabel%2Fcsar%2Ffixture%2FArtifactInfoBuilder.java;h=cb706771bd49ee97c6cba4111c12e598b62d9bfa;hb=f3bf5dd360b93fd7ef6cc8d871a9903de9f27e5a;hp=20c82547b61f66d570c6c6c0ec30c9df483e3e93;hpb=66b3afa06776e9944ad515206d281d67747c9770;p=aai%2Fbabel.git diff --git a/src/test/java/org/onap/aai/babel/csar/fixture/ArtifactInfoBuilder.java b/src/test/java/org/onap/aai/babel/csar/fixture/ArtifactInfoBuilder.java index 20c8254..cb70677 100644 --- a/src/test/java/org/onap/aai/babel/csar/fixture/ArtifactInfoBuilder.java +++ b/src/test/java/org/onap/aai/babel/csar/fixture/ArtifactInfoBuilder.java @@ -22,7 +22,7 @@ package org.onap.aai.babel.csar.fixture; import java.util.ArrayList; import java.util.List; -import org.openecomp.sdc.api.notification.IArtifactInfo; +import org.onap.sdc.api.notification.IArtifactInfo; /** * This class builds an instance of IArtifactInfo for test purposes. @@ -33,10 +33,14 @@ public class ArtifactInfoBuilder { * Builds an implementation of IArtifactInfo for test purposes. *

* - * @param type type of artifact - * @param name name of artifact - * @param description description of artifact - * @param version version of artifact + * @param type + * type of artifact + * @param name + * name of artifact + * @param description + * description of artifact + * @param version + * version of artifact * @return IArtifactInfo implementation of IArtifactInfo from given parameters for test purposes */ public static IArtifactInfo build(final String type, final String name, final String description, @@ -61,8 +65,9 @@ public class ArtifactInfoBuilder { * where the elements of the second dimension are the arguments to {@link #build(String, String, String, String)}. *

* - * @param artifactInfoBits a two dimensional array of data used to build the artifacts - * @return List a list of artifacts built from the given array of info + * @param artifactInfoBits + * a two dimensional array of data used to build the artifacts + * @return List<IArtifactInfo> a list of artifacts built from the given array of info */ static List buildArtifacts(final String[][] artifactInfoBits) { List artifacts = new ArrayList<>();