Class ConfigDeployStatus
- java.lang.Object
-
- org.onebusaway.transit_data_federation.bundle.model.ConfigDeployStatus
-
- All Implemented Interfaces:
Serializable
public class ConfigDeployStatus extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
STATUS_COMPLETE
static String
STATUS_ERROR
static String
STATUS_STAGING_COMPLETE
static String
STATUS_STARTED
-
Constructor Summary
Constructors Constructor Description ConfigDeployStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDepotIdMapNames(String depotIdMapName)
void
addDscFilename(String dscFilename)
List<String>
getDepotIdMapNames()
List<String>
getDscFilenames()
String
getId()
String
getStatus()
void
setDepotIdMapNames(List<String> depotIdMapNames)
void
setDscFilenames(List<String> dscFilenames)
void
setId(String id)
void
setStatus(String status)
-
-
-
Field Detail
-
STATUS_STARTED
public static final String STATUS_STARTED
- See Also:
- Constant Field Values
-
STATUS_COMPLETE
public static final String STATUS_COMPLETE
- See Also:
- Constant Field Values
-
STATUS_ERROR
public static final String STATUS_ERROR
- See Also:
- Constant Field Values
-
STATUS_STAGING_COMPLETE
public static final String STATUS_STAGING_COMPLETE
- See Also:
- Constant Field Values
-
-