1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 03:15:33 +02:00

[414016] [dstore] update minor version for new server audit log

requirements
This commit is contained in:
David Dykstal 2013-09-17 07:19:44 -05:00
parent 3ba65cf43c
commit a51b6ca707
4 changed files with 6 additions and 1 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
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-Localization: plugin
Require-Bundle: org.eclipse.ui,

View file

@ -68,6 +68,7 @@ public interface IServerLogger
* logAudit
*
* @param data information to log.
* @since 3.6
*/
public void logAudit(String[] data);
}

View file

@ -331,6 +331,7 @@ public class ServerLogger implements IServerLogger
* logAudit
*
* @param data information to log.
* @since 3.6
*/
public void logAudit(String[] data){
// initial implementation is a no-op but extenders (i.e. zosServerLogger) can provide

View file

@ -389,6 +389,9 @@ public class CommandGenerator
return commandObject;
}
/**
* @since 3.6
*/
public DataElement generateOOMMessage(String msg){
DataElement oomMessage = _dataStore.createObject(null, "OOM", msg); //$NON-NLS-1$
return oomMessage;