19 package org.sleuthkit.autopsy.integrationtesting.config;
 
   21 import com.fasterxml.jackson.annotation.JsonCreator;
 
   22 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
   23 import com.fasterxml.jackson.annotation.JsonProperty;
 
   28 @JsonIgnoreProperties(ignoreUnknown = 
true)
 
   31     private final Integer 
port;
 
   44             @JsonProperty(
"hostName") String hostName, 
 
   45             @JsonProperty(
"port") Integer port, 
 
   46             @JsonProperty(
"userName") String userName, 
 
   47             @JsonProperty(
"password") String password) {
 
   49         this.hostName = hostName;
 
   51         this.userName = userName;
 
   52         this.password = password;
 
ConnectionConfig(@JsonProperty("hostName") String hostName,@JsonProperty("port") Integer port,@JsonProperty("userName") String userName,@JsonProperty("password") String password)