JAVA-627: Moved 2 articles to libraries-http-2
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user