]> git.argeo.org Git - gpl/argeo-slc.git/blob - AbstractDeployedSystem.java
b90d7111b339922af4bcaddf0337e1c69151b699
[gpl/argeo-slc.git] / 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 }