re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / PropertyConstraint.java
index b1e1552..9a5c52d 100644 (file)
@@ -26,9 +26,9 @@ import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolatio
 
 public interface PropertyConstraint {
 
-       void initialize(ToscaType propertyType) throws ConstraintValueDoNotMatchPropertyTypeException;
+    void initialize(ToscaType propertyType) throws ConstraintValueDoNotMatchPropertyTypeException;
 
-       void validate(Object propertyValue) throws ConstraintViolationException;
+    void validate(Object propertyValue) throws ConstraintViolationException;
 
-       void validate(ToscaType toscaType, String propertyTextValue) throws ConstraintViolationException;
+    void validate(ToscaType toscaType, String propertyTextValue) throws ConstraintViolationException;
 }