]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/runtime/SlcAgentDescriptor.java
Improve execution
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / runtime / SlcAgentDescriptor.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.runtime;
18
19 import java.io.Serializable;
20 import java.util.ArrayList;
21 import java.util.List;
22
23 import org.argeo.slc.execution.ExecutionModuleDescriptor;
24
25 public class SlcAgentDescriptor implements Cloneable, Serializable {
26 private static final long serialVersionUID = 1L;
27 private String uuid;
28 private String host;
29 private List<ExecutionModuleDescriptor> moduleDescriptors = new ArrayList<ExecutionModuleDescriptor>();
30
31 public SlcAgentDescriptor() {
32
33 }
34
35 public SlcAgentDescriptor(SlcAgentDescriptor template) {
36 uuid = template.uuid;
37 host = template.host;
38 moduleDescriptors.addAll(template.moduleDescriptors);
39 }
40
41 public String getUuid() {
42 return uuid;
43 }
44
45 public void setUuid(String uuid) {
46 this.uuid = uuid;
47 }
48
49 public String getHost() {
50 return host;
51 }
52
53 public void setHost(String host) {
54 this.host = host;
55 }
56
57 public List<ExecutionModuleDescriptor> getModuleDescriptors() {
58 return moduleDescriptors;
59 }
60
61 public void setModuleDescriptors(
62 List<ExecutionModuleDescriptor> modulesDescriptors) {
63 this.moduleDescriptors = modulesDescriptors;
64 }
65
66 @Override
67 public String toString() {
68 return host + " #" + uuid;
69 }
70 }