mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-08 16:55:38 +02:00
[414016] [dstore] update minor version for new server audit log
requirements
This commit is contained in:
parent
3ba65cf43c
commit
a51b6ca707
4 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.dstore.core
|
Bundle-SymbolicName: org.eclipse.dstore.core
|
||||||
Bundle-Version: 3.3.201.qualifier
|
Bundle-Version: 3.6.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.dstore.core.Activator
|
Bundle-Activator: org.eclipse.dstore.core.Activator
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.ui,
|
Require-Bundle: org.eclipse.ui,
|
||||||
|
|
|
@ -68,6 +68,7 @@ public interface IServerLogger
|
||||||
* logAudit
|
* logAudit
|
||||||
*
|
*
|
||||||
* @param data information to log.
|
* @param data information to log.
|
||||||
|
* @since 3.6
|
||||||
*/
|
*/
|
||||||
public void logAudit(String[] data);
|
public void logAudit(String[] data);
|
||||||
}
|
}
|
||||||
|
|
|
@ -331,6 +331,7 @@ public class ServerLogger implements IServerLogger
|
||||||
* logAudit
|
* logAudit
|
||||||
*
|
*
|
||||||
* @param data information to log.
|
* @param data information to log.
|
||||||
|
* @since 3.6
|
||||||
*/
|
*/
|
||||||
public void logAudit(String[] data){
|
public void logAudit(String[] data){
|
||||||
// initial implementation is a no-op but extenders (i.e. zosServerLogger) can provide
|
// initial implementation is a no-op but extenders (i.e. zosServerLogger) can provide
|
||||||
|
|
|
@ -389,6 +389,9 @@ public class CommandGenerator
|
||||||
return commandObject;
|
return commandObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 3.6
|
||||||
|
*/
|
||||||
public DataElement generateOOMMessage(String msg){
|
public DataElement generateOOMMessage(String msg){
|
||||||
DataElement oomMessage = _dataStore.createObject(null, "OOM", msg); //$NON-NLS-1$
|
DataElement oomMessage = _dataStore.createObject(null, "OOM", msg); //$NON-NLS-1$
|
||||||
return oomMessage;
|
return oomMessage;
|
||||||
|
|
Loading…
Add table
Reference in a new issue