]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/ModuleDescriptor.java
Move ReailizedFlow to execution package
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / deploy / ModuleDescriptor.java
index 3dca36d3fb669dd104cce3d99fa6e2f73d002238..6a261583c2f3b767362c0b077b9224405c9f78e8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ * Copyright (C) 2007-2012 Mathieu Baudier
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.argeo.slc.deploy;
 
 import java.io.Serializable;
+import java.util.HashMap;
+import java.util.Map;
 
 import org.argeo.slc.BasicNameVersion;
 
@@ -25,6 +26,8 @@ public class ModuleDescriptor extends BasicNameVersion implements Serializable {
        private static final long serialVersionUID = 4310820315478645419L;
        private String title;
        private String description;
+       private Map<String, String> metadata = new HashMap<String, String>();
+       private Boolean started = false;
 
        public String getTitle() {
                return title;
@@ -52,4 +55,20 @@ public class ModuleDescriptor extends BasicNameVersion implements Serializable {
                this.title = label;
        }
 
+       public Map<String, String> getMetadata() {
+               return metadata;
+       }
+
+       public void setMetadata(Map<String, String> metadata) {
+               this.metadata = metadata;
+       }
+
+       public Boolean getStarted() {
+               return started;
+       }
+
+       public void setStarted(Boolean started) {
+               this.started = started;
+       }
+
 }