blob: d8a2e09a554b388bcdd1579abe13b0a327d7786d [file] [log] [blame]
package de.ids_mannheim.korap.resources;
/**
* @author hanl
* @date 25/06/2014
*/
public class Layer extends KustvaktResource {
public Layer () {
super();
}
public Layer (Integer id, int creator) {
super(id);
}
// layer name must not be unique!
public Layer (Integer id, String name) {
super(id);
this.setName(name);
}
public Layer (String persistentID, String name) {
super(persistentID);
this.setPersistentID(persistentID);
this.setName(name);
}
public Layer (String persistentID) {
super(persistentID);
}
}