1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package art.servers.asfserver;
|
| import art.library.model.devices.vms.asf.Asf;
| import art.library.model.devices.vms.asf.AsfInformation;
| import art.servers.configuration.Configuration;
|
| public class Model extends art.servers.Model
| {
|
| public Model(Configuration configuration) throws Exception
| {
|
| super(configuration, "asf", Asf.class.getName(), AsfInformation.class.getName());
| }
|
| }
|
|