public enum AllowableService extends java.lang.Enum<AllowableService>
| Enum Constant and Description |
|---|
CDMREMOTE |
ISO |
NCML |
NCSS |
UDDC |
WCS |
WMS |
| Modifier and Type | Method and Description |
|---|---|
static java.util.List<java.lang.String> |
checkCatalogServices(thredds.catalog.InvCatalog catalog)
Takes an InvCatalog and checks that the services declared in that catalog
are allowed at server level in the threddsConfig file
|
thredds.catalog.InvService |
getService() |
boolean |
isAllowed() |
static AllowableService |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AllowableService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowableService CDMREMOTE
public static final AllowableService NCSS
public static final AllowableService WMS
public static final AllowableService WCS
public static final AllowableService ISO
public static final AllowableService UDDC
public static final AllowableService NCML
public static AllowableService[] values()
for (AllowableService c : AllowableService.values()) System.out.println(c);
public static AllowableService valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isAllowed()
public thredds.catalog.InvService getService()
public static java.util.List<java.lang.String> checkCatalogServices(thredds.catalog.InvCatalog catalog)
catalog - check this catalog