keycloak
クラス | 公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
org.keycloak.representations.idm.PartialImportRepresentation クラス
org.keycloak.representations.idm.PartialImportRepresentation 連携図
Collaboration graph

クラス

enum  Policy
 

公開メンバ関数

boolean hasUsers ()
 
boolean hasGroups ()
 
boolean hasClients ()
 
boolean hasIdps ()
 
boolean hasRealmRoles ()
 
boolean hasClientRoles ()
 
String getIfResourceExists ()
 
void setIfResourceExists (String ifResourceExists)
 
Policy getPolicy ()
 
List< UserRepresentationgetUsers ()
 
void setUsers (List< UserRepresentation > users)
 
List< ClientRepresentationgetClients ()
 
List< GroupRepresentationgetGroups ()
 
void setGroups (List< GroupRepresentation > groups)
 
void setClients (List< ClientRepresentation > clients)
 
List< IdentityProviderRepresentationgetIdentityProviders ()
 
void setIdentityProviders (List< IdentityProviderRepresentation > identityProviders)
 
RolesRepresentation getRoles ()
 
void setRoles (RolesRepresentation roles)
 

限定公開変数類

Policy policy = Policy.FAIL
 
String ifResourceExists
 
List< UserRepresentationusers
 
List< GroupRepresentationgroups
 
List< ClientRepresentationclients
 
List< IdentityProviderRepresentationidentityProviders
 
RolesRepresentation roles
 

詳解

Used for partial import of users, groups, clients, roles, and identity providers.

著者
Stan Silvert ssilv.nosp@m.ert@.nosp@m.redha.nosp@m.t.co.nosp@m.m (C) 2016 Red Hat Inc.

クラス詳解

◆ org::keycloak::representations::idm::PartialImportRepresentation::Policy

enum org::keycloak::representations::idm::PartialImportRepresentation::Policy
org.keycloak.representations.idm.PartialImportRepresentation.Policy 連携図
Collaboration graph
列挙値
FAIL
OVERWRITE
SKIP

関数詳解

◆ getClients()

List<ClientRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.getClients ( )
inline
86  {
87  return clients;
88  }
List< ClientRepresentation > clients
Definition: PartialImportRepresentation.java:37

◆ getGroups()

List<GroupRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.getGroups ( )
inline
90  {
91  return groups;
92  }
List< GroupRepresentation > groups
Definition: PartialImportRepresentation.java:36

◆ getIdentityProviders()

List<IdentityProviderRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.getIdentityProviders ( )
inline
102  {
103  return identityProviders;
104  }
List< IdentityProviderRepresentation > identityProviders
Definition: PartialImportRepresentation.java:38

◆ getIfResourceExists()

String org.keycloak.representations.idm.PartialImportRepresentation.getIfResourceExists ( )
inline
65  {
66  return ifResourceExists;
67  }
String ifResourceExists
Definition: PartialImportRepresentation.java:34

◆ getPolicy()

Policy org.keycloak.representations.idm.PartialImportRepresentation.getPolicy ( )
inline
74  {
75  return this.policy;
76  }
Policy policy
Definition: PartialImportRepresentation.java:33

◆ getRoles()

RolesRepresentation org.keycloak.representations.idm.PartialImportRepresentation.getRoles ( )
inline
110  {
111  return roles;
112  }
RolesRepresentation roles
Definition: PartialImportRepresentation.java:39

◆ getUsers()

List<UserRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.getUsers ( )
inline
78  {
79  return users;
80  }
List< UserRepresentation > users
Definition: PartialImportRepresentation.java:35

◆ hasClientRoles()

boolean org.keycloak.representations.idm.PartialImportRepresentation.hasClientRoles ( )
inline
61  {
62  return (roles != null) && (roles.getClient() != null) && (!roles.getClient().isEmpty());
63  }
Map< String, List< RoleRepresentation > > getClient()
Definition: RolesRepresentation.java:41
RolesRepresentation roles
Definition: PartialImportRepresentation.java:39

◆ hasClients()

boolean org.keycloak.representations.idm.PartialImportRepresentation.hasClients ( )
inline
49  {
50  return (clients != null) && !clients.isEmpty();
51  }
List< ClientRepresentation > clients
Definition: PartialImportRepresentation.java:37

◆ hasGroups()

boolean org.keycloak.representations.idm.PartialImportRepresentation.hasGroups ( )
inline
45  {
46  return (groups != null) && !groups.isEmpty();
47  }
List< GroupRepresentation > groups
Definition: PartialImportRepresentation.java:36

◆ hasIdps()

boolean org.keycloak.representations.idm.PartialImportRepresentation.hasIdps ( )
inline
53  {
54  return (identityProviders != null) && !identityProviders.isEmpty();
55  }
List< IdentityProviderRepresentation > identityProviders
Definition: PartialImportRepresentation.java:38

◆ hasRealmRoles()

boolean org.keycloak.representations.idm.PartialImportRepresentation.hasRealmRoles ( )
inline
57  {
58  return (roles != null) && (roles.getRealm() != null) && (!roles.getRealm().isEmpty());
59  }
RolesRepresentation roles
Definition: PartialImportRepresentation.java:39
List< RoleRepresentation > getRealm()
Definition: RolesRepresentation.java:33

◆ hasUsers()

boolean org.keycloak.representations.idm.PartialImportRepresentation.hasUsers ( )
inline
41  {
42  return (users != null) && !users.isEmpty();
43  }
List< UserRepresentation > users
Definition: PartialImportRepresentation.java:35

◆ setClients()

void org.keycloak.representations.idm.PartialImportRepresentation.setClients ( List< ClientRepresentation clients)
inline
98  {
99  this.clients = clients;
100  }
List< ClientRepresentation > clients
Definition: PartialImportRepresentation.java:37

◆ setGroups()

void org.keycloak.representations.idm.PartialImportRepresentation.setGroups ( List< GroupRepresentation groups)
inline
94  {
95  this.groups = groups;
96  }
List< GroupRepresentation > groups
Definition: PartialImportRepresentation.java:36

◆ setIdentityProviders()

void org.keycloak.representations.idm.PartialImportRepresentation.setIdentityProviders ( List< IdentityProviderRepresentation identityProviders)
inline
106  {
108  }
List< IdentityProviderRepresentation > identityProviders
Definition: PartialImportRepresentation.java:38

◆ setIfResourceExists()

void org.keycloak.representations.idm.PartialImportRepresentation.setIfResourceExists ( String  ifResourceExists)
inline
69  {
71  this.policy = ifResourceExists != null ? Policy.valueOf(ifResourceExists) : null;
72  }
String ifResourceExists
Definition: PartialImportRepresentation.java:34
Policy policy
Definition: PartialImportRepresentation.java:33

◆ setRoles()

void org.keycloak.representations.idm.PartialImportRepresentation.setRoles ( RolesRepresentation  roles)
inline
114  {
115  this.roles = roles;
116  }
RolesRepresentation roles
Definition: PartialImportRepresentation.java:39

◆ setUsers()

void org.keycloak.representations.idm.PartialImportRepresentation.setUsers ( List< UserRepresentation users)
inline
82  {
83  this.users = users;
84  }
List< UserRepresentation > users
Definition: PartialImportRepresentation.java:35

メンバ詳解

◆ clients

List<ClientRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.clients
protected

◆ groups

List<GroupRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.groups
protected

◆ identityProviders

List<IdentityProviderRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.identityProviders
protected

◆ ifResourceExists

String org.keycloak.representations.idm.PartialImportRepresentation.ifResourceExists
protected

◆ policy

Policy org.keycloak.representations.idm.PartialImportRepresentation.policy = Policy.FAIL
protected

◆ roles

RolesRepresentation org.keycloak.representations.idm.PartialImportRepresentation.roles
protected

◆ users

List<UserRepresentation> org.keycloak.representations.idm.PartialImportRepresentation.users
protected

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