keycloak
公開メンバ関数 | 静的公開変数類 | 限定公開変数類 | 非公開変数類 | 全メンバ一覧
org.keycloak.models.jpa.entities.MigrationModelEntity クラス
org.keycloak.models.jpa.entities.MigrationModelEntity 連携図
Collaboration graph

公開メンバ関数

String getId ()
 
void setId (String id)
 
String getVersion ()
 
void setVersion (String version)
 
boolean equals (Object o)
 
int hashCode ()
 

静的公開変数類

static final String SINGLETON_ID = "SINGLETON"
 

限定公開変数類

String version
 

非公開変数類

String id
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ equals()

boolean org.keycloak.models.jpa.entities.MigrationModelEntity.equals ( Object  o)
inline
60  {
61  if (this == o) return true;
62  if (o == null) return false;
63  if (!(o instanceof MigrationModelEntity)) return false;
64 
65  MigrationModelEntity that = (MigrationModelEntity) o;
66 
67  if (!id.equals(that.id)) return false;
68 
69  return true;
70  }
boolean equals(Object o)
Definition: MigrationModelEntity.java:60

◆ getId()

String org.keycloak.models.jpa.entities.MigrationModelEntity.getId ( )
inline
43  {
44  return id;
45  }
String id
Definition: MigrationModelEntity.java:38

◆ getVersion()

String org.keycloak.models.jpa.entities.MigrationModelEntity.getVersion ( )
inline
51  {
52  return version;
53  }
String version
Definition: MigrationModelEntity.java:41

◆ hashCode()

int org.keycloak.models.jpa.entities.MigrationModelEntity.hashCode ( )
inline
73  {
74  return id.hashCode();
75  }

◆ setId()

void org.keycloak.models.jpa.entities.MigrationModelEntity.setId ( String  id)
inline
47  {
48  this.id = id;
49  }
String id
Definition: MigrationModelEntity.java:38

◆ setVersion()

void org.keycloak.models.jpa.entities.MigrationModelEntity.setVersion ( String  version)
inline
55  {
56  this.version = version;
57  }
String version
Definition: MigrationModelEntity.java:41

メンバ詳解

◆ id

String org.keycloak.models.jpa.entities.MigrationModelEntity.id
private

◆ SINGLETON_ID

final String org.keycloak.models.jpa.entities.MigrationModelEntity.SINGLETON_ID = "SINGLETON"
static

◆ version

String org.keycloak.models.jpa.entities.MigrationModelEntity.version
protected

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