001/* 002 * This file is generated by jOOQ. 003 */ 004package com.echothree.model.jooq.server.records.security; 005 006 007import com.echothree.model.data.security.common.pk.SecurityRoleGroupDetailPK; 008import com.echothree.model.data.security.common.pk.SecurityRoleGroupPK; 009 010import org.jooq.Record1; 011import org.jooq.impl.UpdatableRecordImpl; 012 013 014/** 015 * This class is generated by jOOQ. 016 */ 017@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) 018public class SecurityRoleGroupDetails extends UpdatableRecordImpl<SecurityRoleGroupDetails> { 019 020 private static final long serialVersionUID = 1L; 021 022 /** 023 * Setter for 024 * <code>securityrolegroupdetails.srgdt_securityrolegroupdetailid</code>. 025 */ 026 public void SecurityRoleGroupDetail(SecurityRoleGroupDetailPK value) { 027 set(0, value); 028 } 029 030 /** 031 * Getter for 032 * <code>securityrolegroupdetails.srgdt_securityrolegroupdetailid</code>. 033 */ 034 public SecurityRoleGroupDetailPK SecurityRoleGroupDetail() { 035 return (SecurityRoleGroupDetailPK) get(0); 036 } 037 038 /** 039 * Setter for 040 * <code>securityrolegroupdetails.srgdt_srg_securityrolegroupid</code>. 041 */ 042 public void SecurityRoleGroup(SecurityRoleGroupPK value) { 043 set(1, value); 044 } 045 046 /** 047 * Getter for 048 * <code>securityrolegroupdetails.srgdt_srg_securityrolegroupid</code>. 049 */ 050 public SecurityRoleGroupPK SecurityRoleGroup() { 051 return (SecurityRoleGroupPK) get(1); 052 } 053 054 /** 055 * Setter for 056 * <code>securityrolegroupdetails.srgdt_securityrolegroupname</code>. 057 */ 058 public void SecurityRoleGroupName(String value) { 059 set(2, value); 060 } 061 062 /** 063 * Getter for 064 * <code>securityrolegroupdetails.srgdt_securityrolegroupname</code>. 065 */ 066 public String SecurityRoleGroupName() { 067 return (String) get(2); 068 } 069 070 /** 071 * Setter for 072 * <code>securityrolegroupdetails.srgdt_parentsecurityrolegroupid</code>. 073 */ 074 public void ParentSecurityRoleGroup(SecurityRoleGroupPK value) { 075 set(3, value); 076 } 077 078 /** 079 * Getter for 080 * <code>securityrolegroupdetails.srgdt_parentsecurityrolegroupid</code>. 081 */ 082 public SecurityRoleGroupPK ParentSecurityRoleGroup() { 083 return (SecurityRoleGroupPK) get(3); 084 } 085 086 /** 087 * Setter for <code>securityrolegroupdetails.srgdt_isdefault</code>. 088 */ 089 public void IsDefault(Boolean value) { 090 set(4, value); 091 } 092 093 /** 094 * Getter for <code>securityrolegroupdetails.srgdt_isdefault</code>. 095 */ 096 public Boolean IsDefault() { 097 return (Boolean) get(4); 098 } 099 100 /** 101 * Setter for <code>securityrolegroupdetails.srgdt_sortorder</code>. 102 */ 103 public void SortOrder(Integer value) { 104 set(5, value); 105 } 106 107 /** 108 * Getter for <code>securityrolegroupdetails.srgdt_sortorder</code>. 109 */ 110 public Integer SortOrder() { 111 return (Integer) get(5); 112 } 113 114 /** 115 * Setter for <code>securityrolegroupdetails.srgdt_fromtime</code>. 116 */ 117 public void FromTime(Long value) { 118 set(6, value); 119 } 120 121 /** 122 * Getter for <code>securityrolegroupdetails.srgdt_fromtime</code>. 123 */ 124 public Long FromTime() { 125 return (Long) get(6); 126 } 127 128 /** 129 * Setter for <code>securityrolegroupdetails.srgdt_thrutime</code>. 130 */ 131 public void ThruTime(Long value) { 132 set(7, value); 133 } 134 135 /** 136 * Getter for <code>securityrolegroupdetails.srgdt_thrutime</code>. 137 */ 138 public Long ThruTime() { 139 return (Long) get(7); 140 } 141 142 // ------------------------------------------------------------------------- 143 // Primary key information 144 // ------------------------------------------------------------------------- 145 146 @Override 147 public Record1<SecurityRoleGroupDetailPK> key() { 148 return (Record1) super.key(); 149 } 150 151 // ------------------------------------------------------------------------- 152 // Constructors 153 // ------------------------------------------------------------------------- 154 155 /** 156 * Create a detached SecurityRoleGroupDetails 157 */ 158 public SecurityRoleGroupDetails() { 159 super(com.echothree.model.jooq.server.tables.security.SecurityRoleGroupDetails.SecurityRoleGroupDetails); 160 } 161 162 /** 163 * Create a detached, initialised SecurityRoleGroupDetails 164 */ 165 public SecurityRoleGroupDetails(SecurityRoleGroupDetailPK SecurityRoleGroupDetail, SecurityRoleGroupPK SecurityRoleGroup, String SecurityRoleGroupName, SecurityRoleGroupPK ParentSecurityRoleGroup, Boolean IsDefault, Integer SortOrder, Long FromTime, Long ThruTime) { 166 super(com.echothree.model.jooq.server.tables.security.SecurityRoleGroupDetails.SecurityRoleGroupDetails); 167 168 SecurityRoleGroupDetail(SecurityRoleGroupDetail); 169 SecurityRoleGroup(SecurityRoleGroup); 170 SecurityRoleGroupName(SecurityRoleGroupName); 171 ParentSecurityRoleGroup(ParentSecurityRoleGroup); 172 IsDefault(IsDefault); 173 SortOrder(SortOrder); 174 FromTime(FromTime); 175 ThruTime(ThruTime); 176 resetTouchedOnNotNull(); 177 } 178}