type: protected -> public

master
mjkhan21 5 months ago
parent ea4939df1c
commit ebf32edafd

@ -17,7 +17,7 @@ public abstract class ServiceRequest extends AbstractComponent implements Serial
/** . .
* @return
*/
protected String getType() {
public String getType() {
return ifEmpty(type, "");
}
@ -25,7 +25,7 @@ public abstract class ServiceRequest extends AbstractComponent implements Serial
* @param type
* @return
*/
protected <T extends ServiceRequest> T setType(String type) {
public <T extends ServiceRequest> T setType(String type) {
this.type = type;
return self();
}

Loading…
Cancel
Save