diff options
author | Brett Porter <brett@apache.org> | 2014-07-31 15:10:37 +1000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2014-07-31 15:10:37 +1000 |
commit | fafb8d284f3b80847c0373d1f7485565ef306b19 (patch) | |
tree | 5f61678291912cc7fe875fd9a8a5de9f7f3eae66 /archiva-modules/metadata/metadata-repository-api | |
parent | be20d16cfdc0525e9b5cc58a5953b78c57fc17e1 (diff) | |
download | archiva-fafb8d284f3b80847c0373d1f7485565ef306b19.tar.gz archiva-fafb8d284f3b80847c0373d1f7485565ef306b19.zip |
split out audit facet and listener to match others
by placing these in the metadata model / API they can be used more broadly,
while the storage-dependant implementation can be in a plugin. This means the
plugins can be removed from the admin implementation, which can then be used
(as required) in the CLI
Diffstat (limited to 'archiva-modules/metadata/metadata-repository-api')
-rw-r--r-- | archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/repository/events/AuditListener.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/repository/events/AuditListener.java b/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/repository/events/AuditListener.java new file mode 100644 index 000000000..ade9f7959 --- /dev/null +++ b/archiva-modules/metadata/metadata-repository-api/src/main/java/org/apache/archiva/repository/events/AuditListener.java @@ -0,0 +1,37 @@ +package org.apache.archiva.repository.events; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import org.apache.archiva.metadata.model.facets.AuditEvent; + +/** + * AuditListener + * + * + */ +public interface AuditListener +{ + /** + * Notification that an audit event occured. + * + * @param event the event details. + */ + void auditEvent( AuditEvent event ); +} |