| 1 | /* |
| 2 | * Copyright 2005-2006 The RbUtils Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | * |
| 16 | */ |
| 17 | |
| 18 | // $Id$ |
| 19 | |
| 20 | package org.ktc.rbutils.api.audit.event; |
| 21 | |
| 22 | import java.util.Locale; |
| 23 | |
| 24 | /** |
| 25 | * Event that occurs at the beginning of a <code>File</code> audit. |
| 26 | * @since RbUtils 0.9.3.3 |
| 27 | * @version $Revision$ |
| 28 | * @author moishi |
| 29 | */ |
| 30 | public class ProcessFileStartEvent extends FileEvent { |
| 31 | /** |
| 32 | * Automaticly generated field for backward compatibility. |
| 33 | */ |
| 34 | private static final long serialVersionUID = -9089151507476152853L; |
| 35 | |
| 36 | /** |
| 37 | * Constructs an Event that occurs at the beginning of a <code>File</code> audit. |
| 38 | * @param source the object on which the Event initially occurred. |
| 39 | * @param filename the name of the File on which the Event initially occurred. |
| 40 | * @param locale the Locale of the File. |
| 41 | * @param classname the name of the class corresponding to the processed file. |
| 42 | */ |
| 43 | public ProcessFileStartEvent(final Object source, final String filename, final Locale locale, |
| 44 | final String classname) |
| 45 | { |
| 46 | super(source, filename, locale, classname); |
| 47 | } |
| 48 | |
| 49 | } |