Config updated
[mir.git] / source / mircoders / entity / EntityVideo.java
index 2adf427..fd44a60 100755 (executable)
@@ -17,7 +17,7 @@ import mir.storage.*;
  */
 
 
-public class EntityVideo extends AbstractEntity implements Entity
+public class EntityVideo extends Entity
 {
        private static int instances;
 
@@ -35,7 +35,7 @@ public class EntityVideo extends AbstractEntity implements Entity
        //
        // methods
 
-       public byte[] getVideoData()
+       public byte[] getVideoData() throws StorageObjectException
        {
 
                Connection con=null;Statement stmt=null;
@@ -61,7 +61,7 @@ public class EntityVideo extends AbstractEntity implements Entity
                return video_data;
        }
 
-       public void setVideoData(byte[] uploadData)
+       public void setVideoData(byte[] uploadData) throws StorageObjectException
        {
                if (uploadData!=null) {
                        Connection con=null;PreparedStatement pstmt=null;