Skip to content

Commit

Permalink
display error message if cannot connect to db controller service
Browse files Browse the repository at this point in the history
  • Loading branch information
scottreisdorf committed Nov 29, 2018
1 parent 973f6e7 commit 9a5e6b9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,16 @@
* #L%
*/

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.Objects;

/**
* The allowable values for a property with a constrained set of options.
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonIgnoreProperties(ignoreUnknown = true)
public class NiFiAllowableValue {

private String displayName;
Expand Down

0 comments on commit 9a5e6b9

Please sign in to comment.