-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ISSUE-631 : Schema Registry numeric properties cannot be set via a pr…
…operty file (#629) * [CSP-636] Schema Registry numeric properties cannot be set via a property file During initialization property file is read into a Properties object and validated against a predefined set of rules. However, it was implicitly assumed, that property values can only String typed. This fix adds the necessary conversion beside the already existing validation. * [CSP-636] Schema Registry numeric properties cannot be set via a property file Specific ConfigTypeConversionException type added to signal different conversion problems. Conversions are made more explicit, errors are signaled via exceptions. * [CSP-636] Schema Registry numeric properties cannot be set via a property file License header has been added.
- Loading branch information
1 parent
0c1e536
commit 5be4f6a
Showing
4 changed files
with
113 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
.../java/com/hortonworks/registries/schemaregistry/errors/ConfigTypeConversionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Copyright 2017-2019 Cloudera, Inc. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
**/ | ||
|
||
package com.hortonworks.registries.schemaregistry.errors; | ||
|
||
public class ConfigTypeConversionException extends RuntimeException { | ||
|
||
public ConfigTypeConversionException(String message) { super(message); } | ||
|
||
public ConfigTypeConversionException(String message, Throwable cause) { super(message, cause); } | ||
} |