-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
V Udayani
authored and
V Udayani
committed
Nov 3, 2023
1 parent
eddb6eb
commit adb8b42
Showing
17 changed files
with
225 additions
and
70 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
.../main/java/org/springframework/ide/vscode/commons/protocol/LiveProcessLoggersSummary.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package org.springframework.ide.vscode.commons.protocol; | ||
|
||
public class LiveProcessLoggersSummary { | ||
|
||
private String processType; | ||
private String processKey; | ||
private String processName; | ||
private String processID; | ||
private String packageName; | ||
private String effectiveLevel; | ||
private String configuredLevel; | ||
|
||
|
||
public String getProcessType() { | ||
return processType; | ||
} | ||
|
||
public void setProcessType(String processType) { | ||
this.processType = processType; | ||
} | ||
|
||
public String getProcessKey() { | ||
return processKey; | ||
} | ||
|
||
public void setProcessKey(String processKey) { | ||
this.processKey = processKey; | ||
} | ||
|
||
|
||
public String getProcessName() { | ||
return processName; | ||
} | ||
|
||
public void setProcessName(String processName) { | ||
this.processName = processName; | ||
} | ||
|
||
public String getProcessID() { | ||
return processID; | ||
} | ||
|
||
public void setProcessID(String processID) { | ||
this.processID = processID; | ||
} | ||
|
||
public String getPackageName() { | ||
return packageName; | ||
} | ||
|
||
public void setPackageName(String packageName) { | ||
this.packageName = packageName; | ||
} | ||
|
||
public String getEffectiveLevel() { | ||
return effectiveLevel; | ||
} | ||
|
||
public void setEffectiveLevel(String effectiveLevel) { | ||
this.effectiveLevel = effectiveLevel; | ||
} | ||
|
||
public String getConfiguredLevel() { | ||
return configuredLevel; | ||
} | ||
|
||
public void setConfiguredLevel(String configuredLevel) { | ||
this.configuredLevel = configuredLevel; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.