mitreid-connect
公開メンバ関数 | 全メンバ一覧
org.mitre.openid.connect.service.impl.DummyResourceSetService クラス
org.mitre.openid.connect.service.impl.DummyResourceSetService の継承関係図
Inheritance graph
org.mitre.openid.connect.service.impl.DummyResourceSetService 連携図
Collaboration graph

公開メンバ関数

ResourceSet saveNew (ResourceSet rs)
 
ResourceSet getById (Long id)
 
ResourceSet update (ResourceSet oldRs, ResourceSet newRs)
 
void remove (ResourceSet rs)
 
Collection< ResourceSetgetAllForOwner (String owner)
 
Collection< ResourceSetgetAllForOwnerAndClient (String owner, String authClientId)
 
Collection< ResourceSetgetAllForClient (ClientDetailsEntity client)
 

詳解

Dummy resource set service that doesn't do anything; acts as a stub for the introspection service when the UMA functionality is disabled.

著者
jricher

関数詳解

◆ getAllForClient()

Collection<ResourceSet> org.mitre.openid.connect.service.impl.DummyResourceSetService.getAllForClient ( ClientDetailsEntity  client)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

68  {
69  return Collections.emptySet();
70  }

◆ getAllForOwner()

Collection<ResourceSet> org.mitre.openid.connect.service.impl.DummyResourceSetService.getAllForOwner ( String  owner)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

58  {
59  throw new UnsupportedOperationException();
60  }

◆ getAllForOwnerAndClient()

Collection<ResourceSet> org.mitre.openid.connect.service.impl.DummyResourceSetService.getAllForOwnerAndClient ( String  owner,
String  authClientId 
)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

63  {
64  return Collections.emptySet();
65  }

◆ getById()

ResourceSet org.mitre.openid.connect.service.impl.DummyResourceSetService.getById ( Long  id)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

43  {
44  throw new UnsupportedOperationException();
45  }

◆ remove()

void org.mitre.openid.connect.service.impl.DummyResourceSetService.remove ( ResourceSet  rs)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

53  {
54  throw new UnsupportedOperationException();
55  }

◆ saveNew()

ResourceSet org.mitre.openid.connect.service.impl.DummyResourceSetService.saveNew ( ResourceSet  rs)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

38  {
39  throw new UnsupportedOperationException();
40  }

◆ update()

ResourceSet org.mitre.openid.connect.service.impl.DummyResourceSetService.update ( ResourceSet  oldRs,
ResourceSet  newRs 
)
inline

org.mitre.uma.service.ResourceSetServiceを実装しています。

48  {
49  throw new UnsupportedOperationException();
50  }

このクラス詳解は次のファイルから抽出されました: