]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/AbstractDeployedSystem.java
Update service versions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / deploy / AbstractDeployedSystem.java
1 package org.argeo.slc.deploy;
2
3 import org.argeo.slc.UnsupportedException;
4 import org.argeo.slc.build.Distribution;
5
6 public abstract class AbstractDeployedSystem implements DeployedSystem {
7 public String getDeployedSystemId() {
8 // TODO Auto-generated method stub
9 return null;
10 }
11
12 public DeploymentData getDeploymentData() {
13 throw new UnsupportedException("Method not supported");
14 }
15
16 public Distribution getDistribution() {
17 throw new UnsupportedException("Method not supported");
18 }
19
20 public TargetData getTargetData() {
21 throw new UnsupportedException("Method not supported");
22 }
23
24 }