Class BundleStatus
- java.lang.Object
-
- org.onebusaway.transit_data_federation.bundle.model.BundleStatus
-
- All Implemented Interfaces:
Serializable
public class BundleStatus 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 BundleStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addBundleName(String bundleFilename)
List<String>
getBundleNames()
String
getId()
String
getStatus()
void
setBundleNames(List<String> bundleNames)
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
-
-