summaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/src/main/java/org/openecomp/sdcrests/mapping/EchoMapMapping.java
blob: 81c2f37a66e4403d236b21dfc496deca95d4f06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdcrests.mapping;

import java.util.HashMap;

/**
 * Created by ayalaben on 9/12/2017
 */
public class EchoMapMapping extends  MappingBase<HashMap<String,String>,HashMap<String,String>> {

  @Override
public void doMapping(HashMap<String,String> source, HashMap<String, String> target) {
    target.putAll(source);
    }
}