blob: 5dc68edb6a06e2c351bfc0259e94f981650d91a0 [file] [log] [blame]
package org.wordpress.android.networking;
public class OAuthAuthenticatorFactory {
private static OAuthAuthenticatorFactoryAbstract sFactory;
public static OAuthAuthenticator instantiate() {
if (sFactory == null) {
sFactory = new OAuthAuthenticatorFactoryDefault();
}
return sFactory.make();
}
}