Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 64a47858 authored by Haoran Zhang's avatar Haoran Zhang Committed by Android (Google) Code Review
Browse files

Merge "[Autofill-Credman] Create new API(hidden) for convert credential." into main

parents 8b274899 71c19132
Loading
Loading
Loading
Loading
+22 −1
Original line number Diff line number Diff line
@@ -622,6 +622,15 @@ public abstract class AutofillService extends Service {
                    new FillCallback(callback, request.getId())));
        }

        @Override
        public void onConvertCredentialRequest(
                @NonNull ConvertCredentialRequest convertCredentialRequest,
                @NonNull IConvertCredentialCallback convertCredentialCallback) {
            mHandler.sendMessage(obtainMessage(
                    AutofillService::onConvertCredentialRequest,
                    AutofillService.this, convertCredentialRequest,
                    new ConvertCredentialCallback(convertCredentialCallback)));
        }

        @Override
        public void onFillCredentialRequest(FillRequest request, IFillCallback callback,
@@ -707,7 +716,19 @@ public abstract class AutofillService extends Service {
     */
    public void onFillCredentialRequest(@NonNull FillRequest request,
            @NonNull CancellationSignal cancellationSignal, @NonNull FillCallback callback,
            IAutoFillManagerClient autofillClientCallback) {}
            @NonNull IAutoFillManagerClient autofillClientCallback) {}

    /**
     * Called by the Android system to convert a credential manager response to a dataset
     *
     * @param convertCredentialRequest the request that has the original credential manager response
     * @param convertCredentialCallback callback used to notify the result of the request.
     *
     * @hide
     */
    public void onConvertCredentialRequest(
            @NonNull ConvertCredentialRequest convertCredentialRequest,
            @NonNull ConvertCredentialCallback convertCredentialCallback){}

    /**
     * Called when the user requests the service to save the contents of a screen.
+65 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2024 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.service.autofill;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.os.RemoteException;

/**
 * <p><code>ConvertCredentialCallback</code> handles convertCredentialResponse from Autofill
 * Service.
 *
 * @hide
 */
public final class ConvertCredentialCallback {

    private static final String TAG = "ConvertCredentialCallback";

    private final IConvertCredentialCallback mCallback;

    /** @hide */
    public ConvertCredentialCallback(IConvertCredentialCallback callback) {
        mCallback = callback;
    }

    /**
     * Notifies the Android System that a convertCredentialRequest was fulfilled by the service.
     *
     * @param convertCredentialResponse the result
     */
    public void onSuccess(@NonNull ConvertCredentialResponse convertCredentialResponse) {
        try {
            mCallback.onSuccess(convertCredentialResponse);
        } catch (RemoteException e) {
            e.rethrowAsRuntimeException();
        }
    }

    /**
     * Notifies the Android System that a convert credential request has failed
     *
     * @param message the error message
     */
    public void onFailure(@Nullable CharSequence message) {
        try {
            mCallback.onFailure(message);
        } catch (RemoteException e) {
            e.rethrowAsRuntimeException();
        }
    }
}
+19 −0
Original line number Diff line number Diff line
/**
 * Copyright (c) 2024, The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.service.autofill;

parcelable ConvertCredentialRequest;
 No newline at end of file
+158 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2024 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.service.autofill;

import android.annotation.NonNull;
import android.credentials.GetCredentialResponse;
import android.os.Bundle;
import android.os.Parcel;
import android.os.Parcelable;

import com.android.internal.util.DataClass;


/**
 * This class represents a request to an autofill service to convert the credential manager response
 * to a dataset.
 *
 * @hide
 */
@DataClass(
        genToString = true,
        genHiddenConstructor = true,
        genHiddenConstDefs = true)
public final class ConvertCredentialRequest implements Parcelable {
    private final @NonNull GetCredentialResponse mGetCredentialResponse;
    private final @NonNull Bundle mClientState;



    // Code below generated by codegen v1.0.23.
    //
    // DO NOT MODIFY!
    // CHECKSTYLE:OFF Generated code
    //
    // To regenerate run:
    // $ codegen $ANDROID_BUILD_TOP/frameworks/base/core/java/android/service/autofill/ConvertCredentialRequest.java
    //
    // To exclude the generated code from IntelliJ auto-formatting enable (one-time):
    //   Settings > Editor > Code Style > Formatter Control
    //@formatter:off


    /**
     * Creates a new ConvertCredentialRequest.
     *
     * @hide
     */
    @DataClass.Generated.Member
    public ConvertCredentialRequest(
            @NonNull GetCredentialResponse getCredentialResponse,
            @NonNull Bundle clientState) {
        this.mGetCredentialResponse = getCredentialResponse;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mGetCredentialResponse);
        this.mClientState = clientState;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mClientState);

        // onConstructed(); // You can define this method to get a callback
    }

    @DataClass.Generated.Member
    public @NonNull GetCredentialResponse getGetCredentialResponse() {
        return mGetCredentialResponse;
    }

    @DataClass.Generated.Member
    public @NonNull Bundle getClientState() {
        return mClientState;
    }

    @Override
    @DataClass.Generated.Member
    public String toString() {
        // You can override field toString logic by defining methods like:
        // String fieldNameToString() { ... }

        return "ConvertCredentialRequest { " +
                "getCredentialResponse = " + mGetCredentialResponse + ", " +
                "clientState = " + mClientState +
        " }";
    }

    @Override
    @DataClass.Generated.Member
    public void writeToParcel(@NonNull Parcel dest, int flags) {
        // You can override field parcelling by defining methods like:
        // void parcelFieldName(Parcel dest, int flags) { ... }

        dest.writeTypedObject(mGetCredentialResponse, flags);
        dest.writeBundle(mClientState);
    }

    @Override
    @DataClass.Generated.Member
    public int describeContents() { return 0; }

    /** @hide */
    @SuppressWarnings({"unchecked", "RedundantCast"})
    @DataClass.Generated.Member
    /* package-private */ ConvertCredentialRequest(@NonNull Parcel in) {
        // You can override field unparcelling by defining methods like:
        // static FieldType unparcelFieldName(Parcel in) { ... }

        GetCredentialResponse getCredentialResponse = (GetCredentialResponse) in.readTypedObject(GetCredentialResponse.CREATOR);
        Bundle clientState = in.readBundle();

        this.mGetCredentialResponse = getCredentialResponse;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mGetCredentialResponse);
        this.mClientState = clientState;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mClientState);

        // onConstructed(); // You can define this method to get a callback
    }

    @DataClass.Generated.Member
    public static final @NonNull Parcelable.Creator<ConvertCredentialRequest> CREATOR
            = new Parcelable.Creator<ConvertCredentialRequest>() {
        @Override
        public ConvertCredentialRequest[] newArray(int size) {
            return new ConvertCredentialRequest[size];
        }

        @Override
        public ConvertCredentialRequest createFromParcel(@NonNull Parcel in) {
            return new ConvertCredentialRequest(in);
        }
    };

    @DataClass.Generated(
            time = 1706132305002L,
            codegenVersion = "1.0.23",
            sourceFile = "frameworks/base/core/java/android/service/autofill/ConvertCredentialRequest.java",
            inputSignatures = "private final @android.annotation.NonNull android.credentials.GetCredentialResponse mGetCredentialResponse\nprivate final @android.annotation.NonNull android.os.Bundle mClientState\nclass ConvertCredentialRequest extends java.lang.Object implements [android.os.Parcelable]\n@com.android.internal.util.DataClass(genToString=true, genHiddenConstructor=true, genHiddenConstDefs=true)")
    @Deprecated
    private void __metadata() {}


    //@formatter:on
    // End of generated code

}
+19 −0
Original line number Diff line number Diff line
/**
 * Copyright (c) 2024, The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.service.autofill;

parcelable ConvertCredentialResponse;
 No newline at end of file
Loading