@@ -28,7 +28,7 @@ global with sharing class CustomerWebServiceDemo {
2828 }
2929
3030 public class CustomersProcessorV1 extends libak_RestProcessor {
31- protected override libak_RestFramework. IRestResponse handleGet () {
31+ protected override libak_IRestResponse handleGet () {
3232 List <Account > accounts = [
3333 SELECT Id , Name , Phone , BillingStreet , BillingCity , BillingState , BillingPostalCode
3434 FROM Account
@@ -42,7 +42,7 @@ global with sharing class CustomerWebServiceDemo {
4242 }
4343 }
4444
45- protected override libak_RestFramework. IRestResponse handlePost () {
45+ protected override libak_IRestResponse handlePost () {
4646 Account newAccount = (Account )JSON .deserialize (this .request .requestBody .toString (), Account .class );
4747 insert newAccount ;
4848
@@ -51,7 +51,7 @@ global with sharing class CustomerWebServiceDemo {
5151 }
5252
5353 public class CustomerProcessorV1 extends libak_RestProcessor {
54- protected override libak_RestFramework. IRestResponse handleGet () {
54+ protected override libak_IRestResponse handleGet () {
5555 List <Account > accounts = [
5656 SELECT Id , Name , Phone , BillingStreet , BillingCity , BillingState , BillingPostalCode
5757 FROM Account
@@ -65,7 +65,7 @@ global with sharing class CustomerWebServiceDemo {
6565 }
6666 }
6767
68- protected override libak_RestFramework. IRestResponse handlePut () {
68+ protected override libak_IRestResponse handlePut () {
6969 String accountId = this .getUriParam (' customer_sf_id' );
7070 List <Account > existingAccounts = [SELECT Id FROM Account WHERE Id = : accountId ];
7171
@@ -79,7 +79,7 @@ global with sharing class CustomerWebServiceDemo {
7979 return new libak_JsonResponse (updatedAccount );
8080 }
8181
82- protected override libak_RestFramework. IRestResponse handleDelete () {
82+ protected override libak_IRestResponse handleDelete () {
8383 String accountId = this .getUriParam (' customer_sf_id' );
8484 List <Account > existingAccounts = [SELECT Id FROM Account WHERE Id = : accountId ];
8585
0 commit comments