/src/main/java/com/google/ie/business/dao/AuditDao.java
Java | 35 lines | 5 code | 5 blank | 25 comment | 0 complexity | dccf164e0e1b5246d7aaed7330f2ec27 MD5 | raw file
1/* Copyright 2010 Google Inc. 2 * 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS. 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License 14 */ 15 16package com.google.ie.business.dao; 17 18import com.google.ie.business.domain.Audit; 19 20/** 21 * A data access object specification for Audit entity. 22 * 23 * @author asirohi 24 * 25 */ 26public interface AuditDao extends BaseDao { 27 28 /** 29 * Saves the Audit entity to a data store. 30 * 31 * @param audit the {@link Audit} object to be saved 32 */ 33 void saveAudit(Audit audit); 34} 35