summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/view/MixinSourceTarget.java
blob: c04c4f88cb3f2ba5017f63fa5ca6cc4d010e4f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openecomp.sdc.be.view;

/**
 * A pojo which holds a mapping between a mixin source and its corresponding target class
 */
public class MixinSourceTarget {

    private Class<?> mixinSource;
    private Class<?> target;

    MixinSourceTarget(Class<?> mixinSource, Class<?> target) {
        this.mixinSource = mixinSource;
        this.target = target;
    }

    public Class<?> getMixinSource() {
        return mixinSource;
    }

    public Class<?> getTarget() {
        return target;
    }
}