Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-adobe-ims-api/Api/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-adobe-ims-api/Api/UserProfileRepositoryInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\AdobeImsApi\Api;

use Magento\AdobeImsApi\Api\Data\UserProfileInterface;
use Magento\Framework\Exception\CouldNotSaveException;

/**
 * Declare user profile repository
 * @api
 */
interface UserProfileRepositoryInterface
{
    /**
     * Save user profile
     *
     * @param UserProfileInterface $entity
     * @return void
     * @throws CouldNotSaveException
     */
    public function save(UserProfileInterface $entity): void;

    /**
     * Get user profile
     *
     * @param int $entityId
     * @return \Magento\AdobeImsApi\Api\Data\UserProfileInterface
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function get(int $entityId): UserProfileInterface;

    /**
     * Get user profile by user ID
     *
     * @param int $userId
     * @return \Magento\AdobeImsApi\Api\Data\UserProfileInterface
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getByUserId(int $userId): UserProfileInterface;
}