/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ids;
import ids.Hacker.Hacker;
import ids.Server.Server;
import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import org.xml.sax.SAXException;
/**
*
* @author Peet
*/
public class IDS {
Hacker hacker;
Server server;
public IDS() throws IOException, ParserConfigurationException, SAXException {
server = new Server(this);
hacker = new Hacker(this);
}
public Hacker getHacker() {
return hacker;
}
public Server getServer() {
return server;
}
}