aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/main/java/org/openecomp/sdc/be/model/IPropertyInputCommon.java
blob: 80b69935e245f96d6754aff479cfb6c3e6302767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdc.be.model;

import org.openecomp.sdc.be.datatypes.elements.PropertyRule;
import org.openecomp.sdc.be.datatypes.elements.SchemaDefinition;

import java.util.List;

public interface IPropertyInputCommon {

    String getType();
    SchemaDefinition getSchema();
    List<PropertyRule> getRules();
    String getName();
}