summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2020-08-14 17:40:37 +0000
committerGerrit Code Review <gerrit@onap.org>2020-08-14 17:40:37 +0000
commit8b94f54263a647b18a380fa7bffc37a808b9aa55 (patch)
tree26fe0f8170b2cd169c2185bfd71251a0a17c5880 /jjb
parente3a01596123fe92bd0c88a16f2489d0c00defb19 (diff)
parent7b4834d9357498a27ee77a4416c45e9f619a07b9 (diff)
Merge "Add daily scheduler to regenerate xtesting dockers"
Diffstat (limited to 'jjb')
-rw-r--r--jjb/integration/xtesting/integration-xtesting.yaml1
1 files changed, 1 insertions, 0 deletions
diff --git a/jjb/integration/xtesting/integration-xtesting.yaml b/jjb/integration/xtesting/integration-xtesting.yaml
index 8544cad55..7e634a118 100644
--- a/jjb/integration/xtesting/integration-xtesting.yaml
+++ b/jjb/integration/xtesting/integration-xtesting.yaml
@@ -129,3 +129,4 @@
docker-root: '$WORKSPACE'
mvn-settings: 'integration-settings'
build-node: ubuntu1804-docker-8c-8g
+ cron: '@daily'
ref='#n4'>4 5 6 7 8 9 10 11 12 13 14 15 16 17
package org.openecomp.sdcrests.vsp.rest.mapping;

import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentDependencyModelEntity;
import org.openecomp.sdcrests.mapping.MappingBase;
import org.openecomp.sdcrests.vendorsoftwareproducts.types.ComponentDependencyModel;

public class MapComponentDependencyModelEntityToDto extends
    MappingBase<ComponentDependencyModelEntity, ComponentDependencyModel> {

  @Override
  public void doMapping(ComponentDependencyModelEntity source,
                        ComponentDependencyModel target) {
   target.setSourceId(source.getSourceComponentId());
    target.setTargetId(source.getTargetComponentId());
    target.setRelationType(source.getRelation());
  }
}