1 /*
2 * WeaponDAO.java
3 *
4 * Created on February 11, 2003, 10:33 AM
5 */
6
7 package com.mlw.fps.model.business.dao;
8
9 import java.util.Collection;
10
11 import com.mlw.fps.model.business.vo.Weapon;
12
13 /***
14 *
15 * @author Matthew Wilson
16 */
17 public interface WeaponDAO
18 {
19 public void insert(Weapon weapon);
20 public Weapon getWeaponByName(String name);
21 public Weapon getWeaponByPk(String weaponPk);
22 public Collection getWeapons();
23 }
This page was automatically generated by Maven