public JMXConstraint(JMXConstraintTypes constraintType, string constraintName, string definition) : base(null) { ConstraintType = constraintType; ConstraintName = constraintName; Definition = definition; CheckOption = true; }
public JMXConstraint(JMXConstraintTypes constraintType, string definition) : this(constraintType, "", definition) { }
public JMXConstraint(JMXConstraintTypes constraintType) : this(constraintType, string.Empty, string.Empty) { }