Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.alibaba.android.arouter.facade.service;
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface AutowiredService extends IProvider {
|
||||
void a(Object obj);
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.alibaba.android.arouter.facade.service;
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface ClassLoaderService extends IProvider {
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package com.alibaba.android.arouter.facade.service;
|
||||
|
||||
import android.content.Context;
|
||||
import com.alibaba.android.arouter.facade.Postcard;
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface DegradeService extends IProvider {
|
||||
void a(Context context, Postcard postcard);
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package com.alibaba.android.arouter.facade.service;
|
||||
|
||||
import com.alibaba.android.arouter.facade.Postcard;
|
||||
import com.alibaba.android.arouter.facade.callback.InterceptorCallback;
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface InterceptorService extends IProvider {
|
||||
void a(Postcard postcard, InterceptorCallback interceptorCallback);
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
package com.alibaba.android.arouter.facade.service;
|
||||
|
||||
import android.net.Uri;
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface PathReplaceService extends IProvider {
|
||||
Uri a(Uri uri);
|
||||
|
||||
String a(String str);
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.alibaba.android.arouter.facade.service;
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface SerializationService extends IProvider {
|
||||
}
|
Reference in New Issue
Block a user