Guest User

ApplicationIdentityProviders.java

a guest
Sep 28th, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.32 KB | None | 0 0
  1. package com.oracle.hibernate;
  2. import javax.persistence.*;
  3.  
  4. @Entity
  5. @Table(name = "application_identity_providers")
  6. public class ApplicationIdentityProviders {
  7.     private int application_identity_provider_id;
  8.     private int identity_provider_id;
  9.     private int application_id;
  10.     private short is_application_default;
  11.    
  12.     public ApplicationIdentityProviders() {
  13.     }
  14.    
  15.     @Id
  16.     @Column(name = "application_identity_provider_id")
  17.     @GeneratedValue(strategy = GenerationType.IDENTITY)
  18.     public int getApplication_identity_provider_id() {
  19.         return application_identity_provider_id;
  20.     }
  21.  
  22.     public void setApplication_identity_provider_id(int application_identity_provider_id) {
  23.         this.application_identity_provider_id = application_identity_provider_id;
  24.     }
  25.  
  26.     public int getIdentity_provider_id() {
  27.         return identity_provider_id;
  28.     }
  29.  
  30.     public void setIdentity_provider_id(int identity_provider_id) {
  31.         this.identity_provider_id = identity_provider_id;
  32.     }
  33.  
  34.     public int getApplication_id() {
  35.         return application_id;
  36.     }
  37.  
  38.     public void setApplication_id(int application_id) {
  39.         this.application_id = application_id;
  40.     }
  41.  
  42.     public short getIs_application_default() {
  43.         return is_application_default;
  44.     }
  45.  
  46.     public void setIs_application_default(short is_application_default) {
  47.         this.is_application_default = is_application_default;
  48.     }
  49.    
  50. }
Add Comment
Please, Sign In to add comment