IsMatch implements the ConfigPatch.IsMatch interface.
(configKey, connectorClass string)
| 50 | |
| 51 | // IsMatch implements the ConfigPatch.IsMatch interface. |
| 52 | func (c *ConfigPatchCommon) IsMatch(configKey, connectorClass string) bool { |
| 53 | return c.ConfigurationKeySelector.IsMatch(configKey) && c.ConnectorClassSelector.IsMatch(connectorClass) |
| 54 | } |
| 55 | |
| 56 | // PatchDefinition implements the ConfigPatch.PatchDefinition interface. |
| 57 | func (*ConfigPatchCommon) PatchDefinition(d model.ConfigDefinition, _ string) model.ConfigDefinition { |