类 OAuth2ScopeController

java.lang.Object
cn.herodotus.engine.rest.core.controller.BaseReadableRestController<E,ID>
cn.herodotus.engine.rest.core.controller.BaseWriteableRestController<OAuth2Scope,String>
cn.herodotus.engine.oauth2.management.controller.OAuth2ScopeController
所有已实现的接口:
cn.herodotus.engine.rest.core.controller.Controller, cn.herodotus.engine.rest.core.controller.ReadableController<OAuth2Scope,String>, cn.herodotus.engine.rest.core.controller.WriteableController<OAuth2Scope,String>

@RestController @RequestMapping("/authorize/scope") public class OAuth2ScopeController extends cn.herodotus.engine.rest.core.controller.BaseWriteableRestController<OAuth2Scope,String>

Description : OauthScopesController

作者:
: gengwei.zheng
Date:
: 2020/3/25 17:10
  • 构造器概要

    构造器
    构造器
    说明
     
  • 方法概要

    修饰符和类型
    方法
    说明
    cn.herodotus.engine.assistant.core.domain.Result<OAuth2Scope>
     
    cn.herodotus.engine.assistant.core.domain.Result<List<OAuth2Scope>>
     
    cn.herodotus.engine.assistant.core.domain.Result<OAuth2Scope>
     
    cn.herodotus.engine.data.core.service.WriteableService<OAuth2Scope,String>
     

    从类继承的方法 cn.herodotus.engine.rest.core.controller.BaseWriteableRestController

    delete, getReadableService, saveOrUpdate

    从类继承的方法 cn.herodotus.engine.rest.core.controller.BaseReadableRestController

    findByPage

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    从接口继承的方法 cn.herodotus.engine.rest.core.controller.Controller

    getPageInfoMap, getPageInfoMap, result, result, result, result, result, result, result, result

    从接口继承的方法 cn.herodotus.engine.rest.core.controller.ReadableController

    findById, findByPage, findByPage
  • 构造器详细资料

    • OAuth2ScopeController

      @Autowired public OAuth2ScopeController(OAuth2ScopeService scopeService)
  • 方法详细资料

    • getWriteableService

      public cn.herodotus.engine.data.core.service.WriteableService<OAuth2Scope,String> getWriteableService()
    • assigned

      @PostMapping("/assigned") public cn.herodotus.engine.assistant.core.domain.Result<OAuth2Scope> assigned(@RequestBody OAuth2ScopeDto scope)
    • findAll

      @AccessLimited @GetMapping("/list") public cn.herodotus.engine.assistant.core.domain.Result<List<OAuth2Scope>> findAll()
    • findByScopeCode

      @AccessLimited @GetMapping("/{scopeCode}") public cn.herodotus.engine.assistant.core.domain.Result<OAuth2Scope> findByScopeCode(@PathVariable("scopeCode") String scopeCode)