bjoern@3630: package de.intevation.flys.artifacts.model;
bjoern@3630: 
bjoern@3630: /**
bjoern@3630:  * Represents a Module as is is loaded from the config
bjoern@3630:  */
bjoern@3630: public class Module {
bjoern@3630: 
bjoern@3630:     private String name;
bjoern@3630:     private boolean selected;
bjoern@3630: 
bjoern@3630:     public Module(String name, boolean selected) {
bjoern@3630:         this.name = name;
bjoern@3630:         this.selected = selected;
bjoern@3630:     }
bjoern@3630: 
bjoern@3630:     public String getName() {
bjoern@3630:         return this.name;
bjoern@3630:     }
bjoern@3630: 
bjoern@3630:     public boolean isSelected() {
bjoern@3630:         return this.selected;
bjoern@3630:     }
bjoern@3630: }
bjoern@3630: 
bjoern@3630: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 tw=80: