231b885f5bc2a5177aa3dfdf22c04fa02f029f0a
[mir.git] / source / mircoders / module / ModuleBreaking.java
1 package mircoders.module;
2
3 import java.io.*;
4 import java.lang.*;
5 import java.util.*;
6 import java.sql.*;
7 import javax.servlet.*;
8 import javax.servlet.http.*;
9
10 import freemarker.template.*;
11
12 import webdb.servlet.*;
13 import webdb.module.*;
14 import webdb.entity.*;
15 import webdb.misc.*;
16 import webdb.storage.*;
17
18 import mir.entity.*;
19 import mir.storage.*;
20
21
22 /*
23  *  ContentObjekt -
24  *
25  *
26  * @author RK
27  */
28
29 public class ModuleBreaking extends AbstractModule
30 {
31         static Logfile theLog;
32
33         // Kontruktor
34
35         public ModuleBreaking (StorageObject theStorage)
36         {
37
38                 if (theLog == null) theLog = Logfile.getInstance(Configuration.getProperty("Home") + Configuration.getProperty("Module.Breaking.Logfile"));
39                 if (theStorage == null) theLog.printWarning("ModuleBreaking -- StorageObject was null!");
40
41                 this.theStorage = theStorage;
42
43         }
44
45         // Methoden
46
47 }