BrightSide Workbench Full Report + Source Code
org.turro.elephant.entities.db.SystemLogPK Class Reference
Inheritance diagram for org.turro.elephant.entities.db.SystemLogPK:
Collaboration diagram for org.turro.elephant.entities.db.SystemLogPK:

Public Member Functions

Date getDateLog ()
 
void setDateLog (Date dateLog)
 
SystemLogType getLogType ()
 
void setLogType (SystemLogType logType)
 
String getGeneratorPath ()
 
void setGeneratorPath (String generatorPath)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
int hashCode ()
 
boolean equals (Object obj)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file SystemLogPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.elephant.entities.db.SystemLogPK.equals ( Object  obj)

Definition at line 82 of file SystemLogPK.java.

82  {
83  if (this == obj) {
84  return true;
85  }
86  if (obj == null) {
87  return false;
88  }
89  if (getClass() != obj.getClass()) {
90  return false;
91  }
92  final SystemLogPK other = (SystemLogPK) obj;
93  if (!Objects.equals(this.generatorPath, other.generatorPath)) {
94  return false;
95  }
96  if (!Objects.equals(this.entityPath, other.entityPath)) {
97  return false;
98  }
99  if (!Objects.equals(this.dateLog, other.dateLog)) {
100  return false;
101  }
102  if (this.logType != other.logType) {
103  return false;
104  }
105  return true;
106  }

◆ getDateLog()

Date org.turro.elephant.entities.db.SystemLogPK.getDateLog ( )

Definition at line 39 of file SystemLogPK.java.

39  {
40  return dateLog;
41  }

◆ getEntityPath()

String org.turro.elephant.entities.db.SystemLogPK.getEntityPath ( )

Definition at line 63 of file SystemLogPK.java.

63  {
64  return entityPath;
65  }

◆ getGeneratorPath()

String org.turro.elephant.entities.db.SystemLogPK.getGeneratorPath ( )

Definition at line 55 of file SystemLogPK.java.

55  {
56  return generatorPath;
57  }

◆ getLogType()

SystemLogType org.turro.elephant.entities.db.SystemLogPK.getLogType ( )

Definition at line 47 of file SystemLogPK.java.

47  {
48  return logType;
49  }

◆ hashCode()

int org.turro.elephant.entities.db.SystemLogPK.hashCode ( )

Definition at line 72 of file SystemLogPK.java.

72  {
73  int hash = 7;
74  hash = 79 * hash + Objects.hashCode(this.dateLog);
75  hash = 79 * hash + Objects.hashCode(this.logType);
76  hash = 79 * hash + Objects.hashCode(this.generatorPath);
77  hash = 79 * hash + Objects.hashCode(this.entityPath);
78  return hash;
79  }

◆ setDateLog()

void org.turro.elephant.entities.db.SystemLogPK.setDateLog ( Date  dateLog)

Definition at line 43 of file SystemLogPK.java.

43  {
44  this.dateLog = dateLog;
45  }

◆ setEntityPath()

void org.turro.elephant.entities.db.SystemLogPK.setEntityPath ( String  entityPath)

Definition at line 67 of file SystemLogPK.java.

67  {
68  this.entityPath = entityPath;
69  }

◆ setGeneratorPath()

void org.turro.elephant.entities.db.SystemLogPK.setGeneratorPath ( String  generatorPath)

Definition at line 59 of file SystemLogPK.java.

59  {
60  this.generatorPath = generatorPath;
61  }

◆ setLogType()

void org.turro.elephant.entities.db.SystemLogPK.setLogType ( SystemLogType  logType)

Definition at line 51 of file SystemLogPK.java.

51  {
52  this.logType = logType;
53  }

The documentation for this class was generated from the following file: