summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/client/ResponderClient.java
blob: 2c9cb1fdb57739770cbb9597edb291cfee01ab6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package derms.client;

import java.net.MalformedURLException;

class ResponderClient extends Client {
    ResponderClient(String FEhost) throws MalformedURLException {
        super(FEhost);
    }

    public String addResource(String resourceID, String resourceName, int duration) {
        return server.addResource(resourceID, resourceName, duration);
    }
}