导航菜单

页面标题

页面副标题

Barstool v5.21.2 - EndpointConfiguration.java 源代码

正在查看: Barstool v5.21.2 应用的 EndpointConfiguration.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.bugsnag.android;

import kotlin.jvm.internal.DefaultConstructorMarker;

@kotlin.Metadata(d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0006\u0018\u00002\u00020\u0001B\u0019\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\b\b\u0002\u0010\u0004\u001a\u00020\u0003¢\u0006\u0002\u0010\u0005R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0007¨\u0006\t"}, d2 = {"Lcom/bugsnag/android/EndpointConfiguration;", "", "notify", "", "sessions", "(Ljava/lang/String;Ljava/lang/String;)V", "getNotify", "()Ljava/lang/String;", "getSessions", "bugsnag-android-core_release"}, k = 1, mv = {1, 5, 1}, xi = 48)
public final class EndpointConfiguration {
    private final String notify;
    private final String sessions;

    public EndpointConfiguration() {
        throw new UnsupportedOperationException("Method not decompiled: com.bugsnag.android.EndpointConfiguration.<init>():void");
    }

    public EndpointConfiguration(String str, String str2) {
        this.notify = str;
        this.sessions = str2;
    }

    public EndpointConfiguration(String str, String str2, int i, DefaultConstructorMarker defaultConstructorMarker) {
        this((i & 1) != 0 ? "https://notify.bugsnag.com" : str, (i & 2) != 0 ? "https://sessions.bugsnag.com" : str2);
    }

    public final String getNotify() {
        return this.notify;
    }

    public final String getSessions() {
        return this.sessions;
    }
}