All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.data.service.UserOauthTokenService Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.data.service;

import com.haoxuer.discover.user.data.entity.UserOauthToken;
import com.haoxuer.discover.user.data.response.UserLoginAuthResponse;
import com.haoxuer.discover.user.oauth.domain.OauthResponse;
import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;

import java.util.List;

/**
 * Created by imake on 2017年07月21日16:04:29.
 */
public interface UserOauthTokenService {
  
  UserOauthToken findById(Long id);

  UserOauthToken bind(Long id,Long user);


  UserOauthToken save(UserOauthToken bean);
  
  UserOauthToken update(UserOauthToken bean);
  
  UserOauthToken deleteById(Long id);
  
  UserOauthToken[] deleteByIds(Long[] ids);
  
  
  Page page(Pageable pageable);
  
  Page page(Pageable pageable, Object search);
  
  
  List list(int first, Integer size, List filters, List orders);
  
  UserOauthToken findByUid(String ticket);
  
  UserOauthToken login(OauthResponse response);

  UserLoginAuthResponse loginAuth(OauthResponse response);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy