Skip to content
Snippets Groups Projects

added tests for creds

Merged Rosen Georgiev requested to merge connectionManager into main
20 files
+ 978
1
Compare changes
  • Side-by-side
  • Inline
Files
20
package api.test.rest.pojo.connection;
import com.google.gson.annotations.Expose;
public class Authentication {
@Expose
private String publicKey;
@Expose
private String type;
public String getPublicKey() {
return publicKey;
}
public void setPublicKey(String publicKey) {
this.publicKey = publicKey;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
Loading