Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / capabilities / CapabilityStatus.java
blob7587149a7d6341938a886b2892ef8a4e9270d254
1 package com.google.appengine.api.capabilities;
3 /**
4 * Represents the status of a {@link Capability}.
7 */
9 public enum CapabilityStatus {
10 /**
11 * The capability is available and no maintenance is currently planned.
13 ENABLED,
14 /**
15 * The capability is available but scheduled for maintenance.
17 SCHEDULED_MAINTENANCE,
18 /**
19 * The capability is disabled. API calls which depend on this capability will
20 * fail.
22 DISABLED,
24 /**
25 * The status of the capability is unknown.
27 UNKNOWN;