aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-tosca-datatype/src/main/java/org/openecomp/sdc/tosca/datatypes/model/PreconditionDefinition.java
blob: adbb335f6a0a5f4e58582c6dc911bc9e9d6e692b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.openecomp.sdc.tosca.datatypes.model;

public class PreconditionDefinition {

  private String target;
  private String target_relationship;
  private Constraint condition;

  public String getTarget() {
    return target;
  }

  public void setTarget(String target) {
    this.target = target;
  }

  public String getTarget_relationship() {
    return target_relationship;
  }

  public void setTarget_relationship(String target_relationship) {
    this.target_relationship = target_relationship;
  }

  public Constraint getCondition() {
    return condition;
  }

  public void setCondition(Constraint condition) {
    this.condition = condition;
  }
}