Renamed Rest to REST

This commit is contained in:
Ziver Koc 2018-06-08 16:02:35 +02:00
parent 351d5478c7
commit 93a4c9eca2
2 changed files with 51 additions and 2 deletions

View file

@ -41,7 +41,7 @@ import java.util.Map;
/**
* User: Ziver
*/
public class RestHttpPage implements HttpPage {
public class RESTHttpPage implements HttpPage {
/** The object that the functions will be invoked from **/
private WebServiceDef wsDef;
@ -49,7 +49,7 @@ public class RestHttpPage implements HttpPage {
private WSInterface ws;
public RestHttpPage( WSInterface wsObject ){
public RESTHttpPage(WSInterface wsObject ){
this.ws = wsObject;
this.wsDef = new WebServiceDef(ws.getClass());
}