Updated file headers
All checks were successful
Locusworks Team/eight-track/pipeline/head This commit looks good

This commit is contained in:
2020-05-30 17:48:48 -05:00
parent f4805fd8b5
commit bbddcb93ba
8 changed files with 41 additions and 38 deletions

View File

@@ -2,7 +2,7 @@
*
* Project: Eight Track, File: EightTrackDataSource.java
*
* Copyright 2019-2019 Locusworks LLC.
* Copyright 2019-2020 Locusworks LLC.
* All rights reserved. Federal copyright law prohibits unauthorized reproduction by
* any means and imposes fines up to $25,000 for violation. No part of this material
* may be reproduced, transmitted, transcribed, stored in a retrieval system, copied,

View File

@@ -69,6 +69,9 @@ public class Log implements Serializable {
@Lob
@Column(name = "log")
private String log;
@Lob
@Column(name = "exception")
private byte[] exception;
@Basic(optional = false)
@Column(name = "is_exception")
private boolean isException;
@@ -76,9 +79,6 @@ public class Log implements Serializable {
@Column(name = "date_added")
@Temporal(TemporalType.TIMESTAMP)
private Date dateAdded;
@Lob
@Column(name = "exception")
private byte[] exception;
@JoinColumn(name = "guild", referencedColumnName = "id")
@ManyToOne(optional = false)
private DiscordGuild guild;
@@ -113,6 +113,14 @@ public class Log implements Serializable {
this.log = log;
}
public byte[] getException() {
return exception;
}
public void setException(byte[] exception) {
this.exception = exception;
}
public boolean getIsException() {
return isException;
}
@@ -129,14 +137,6 @@ public class Log implements Serializable {
this.dateAdded = dateAdded;
}
public byte[] getException() {
return exception;
}
public void setException(byte[] exception) {
this.exception = exception;
}
public DiscordGuild getGuild() {
return guild;
}

View File

@@ -2,7 +2,7 @@
*
* Project: Eight Track, File: AESService.java
*
* Copyright 2019-2019 Locusworks LLC.
* Copyright 2019-2020 Locusworks LLC.
* All rights reserved. Federal copyright law prohibits unauthorized reproduction by
* any means and imposes fines up to $25,000 for violation. No part of this material
* may be reproduced, transmitted, transcribed, stored in a retrieval system, copied,