JAVA-627: Moved 2 articles to libraries-http-2

This commit is contained in:
sampadawagde
2020-04-18 11:44:19 +05:30
parent 1ec2d9a4ed
commit c990a29bf7
4 changed files with 181 additions and 0 deletions
@@ -0,0 +1,22 @@
package com.baeldung.okhttp;
public class SimpleEntity {
protected String name;
public SimpleEntity(String name) {
this.name = name;
}
//no-arg constructor, getters and setters here
public SimpleEntity() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}