Skip to content

Commit

Permalink
update method params
Browse files Browse the repository at this point in the history
  • Loading branch information
midhunhk committed Mar 1, 2021
1 parent 16b31ba commit aa5b6d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.ae.apps.lib.api.contacts.types;

import android.content.Context;

import com.ae.apps.lib.api.contacts.ContactsApiGateway;

/**
Expand All @@ -11,8 +13,9 @@
public interface ContactsApiGatewayFactory {

/**
* Cretaes an instance of ContactsApiGatewayImpl
*
* @return an instance of ContactsApiGateway Implementation
*/
ContactsApiGateway getContactsApiGateway();
ContactsApiGateway getContactsApiGateway(final Context context);
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
package com.ae.apps.lib.api.sms;
package com.ae.apps.lib.api.sms.types;

import android.content.Context;

import com.ae.apps.lib.api.sms.SmsApiGateway;

/**
* A factory interface that can create an instance of SmsApiGateway.
Expand All @@ -13,5 +17,5 @@ public interface SmsApiGatewayFactory {
*
* @return an instance of SmsApiGateway
*/
SmsApiGateway getSmsApiGateway();
SmsApiGateway getSmsApiGateway(final Context context);
}

0 comments on commit aa5b6d8

Please sign in to comment.