dao
Interface DimensionenDao

All Known Implementing Classes:
DimensionenDaoMysql

public interface DimensionenDao

Interface f�r lesen und schreiben Dimensionen

Author:
Konstantin Karzanov 28.08.2008

Method Summary
 int create(int[] values)
          Speichert neu Dimensionen
 void delete(int id)
          L�scht bestimte Dimensionen.
 java.util.Vector<Dimensionen> read()
          Liest Dimensionen
 void update(int id, int[] values)
          Speichert neu Werte f�r bestimte Dimensionen
 

Method Detail

create

int create(int[] values)
           throws AquaDaoException
Speichert neu Dimensionen

Parameters:
values -
Returns:
int
Throws:
AquaDaoException

read

java.util.Vector<Dimensionen> read()
                                   throws AquaDaoException
Liest Dimensionen

Returns:
Vector
Throws:
AquaDaoException

update

void update(int id,
            int[] values)
            throws AquaDaoException
Speichert neu Werte f�r bestimte Dimensionen

Parameters:
id -
values -
Throws:
AquaDaoException

delete

void delete(int id)
            throws AquaDaoException
L�scht bestimte Dimensionen.

Parameters:
id -
Throws:
AquaDaoException