Updated file headers
All checks were successful
Locusworks Team/eight-track/pipeline/head This commit looks good
All checks were successful
Locusworks Team/eight-track/pipeline/head This commit looks good
This commit is contained in:
@@ -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,
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -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,
|
||||
|
Reference in New Issue
Block a user