Author: marrs
Date: Tue Sep 10 14:22:54 2013
New Revision: 1521501
URL: http://svn.apache.org/r1521501
Log:
ACE-372 Added a new base and type for logging target properties.
Modified:
ace/trunk/org.apache.ace.log/src/org/apache/ace/log/AuditEvent.java
Modified: ace/trunk/org.apache.ace.log/src/org/apache/ace/log/AuditEvent.java
URL:
http://svn.apache.org/viewvc/ace/trunk/org.apache.ace.log/src/org/apache/ace/log/AuditEvent.java?rev=1521501&r1=1521500&r2=1521501&view=diff
==============================================================================
--- ace/trunk/org.apache.ace.log/src/org/apache/ace/log/AuditEvent.java
(original)
+++ ace/trunk/org.apache.ace.log/src/org/apache/ace/log/AuditEvent.java Tue Sep
10 14:22:54 2013
@@ -229,4 +229,10 @@ public interface AuditEvent
* </dl>
*/
public static final int DEPLOYMENTCONTROL_INSTALL =
(DEPLOYMENTCONTROL_BASE + 1);
+
+ /** Base event type for all target properties related events. */
+ public static final int TARGETPROPERTIES_BASE = 4000;
+
+ /** Sets a new collection of properties for this target. */
+ public static final int TARGETPROPERTIES_SET = (TARGETPROPERTIES_BASE + 1);
}
\ No newline at end of file