Package org.apache.tapestry5.internal
Class AssetConstants
- java.lang.Object
-
- org.apache.tapestry5.internal.AssetConstants
-
public class AssetConstants extends java.lang.Object
Defines constants for the two basic asset prefixes.- Since:
- 5.2.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CLASSPATH
For assets that are stored in the classpath (i.e., inside 3rd party component library JARs).static java.lang.String
CONTEXT
For assets that are stored in the web application context.static java.lang.String
FTP
For assets that are external (stored in another service) and stored in a publicly available FTP server (ftp://...)static java.lang.String
HTTP
For assets that are external (stored in another service) and have a non-secure URL (http://...)static java.lang.String
HTTPS
For assets that are external (stored in another service) and have a secure URL (https://...)static java.lang.String
PROTOCOL_RELATIVE
For assets that are external (stored in another service) and have a protocol-relative URL (//...)
-
Constructor Summary
Constructors Constructor Description AssetConstants()
-
-
-
Field Detail
-
CONTEXT
public static final java.lang.String CONTEXT
For assets that are stored in the web application context.- See Also:
- Constant Field Values
-
CLASSPATH
public static final java.lang.String CLASSPATH
For assets that are stored in the classpath (i.e., inside 3rd party component library JARs).- See Also:
- Constant Field Values
-
HTTP
public static final java.lang.String HTTP
For assets that are external (stored in another service) and have a non-secure URL (http://...)- See Also:
- Constant Field Values
-
HTTPS
public static final java.lang.String HTTPS
For assets that are external (stored in another service) and have a secure URL (https://...)- See Also:
- Constant Field Values
-
PROTOCOL_RELATIVE
public static final java.lang.String PROTOCOL_RELATIVE
For assets that are external (stored in another service) and have a protocol-relative URL (//...)- See Also:
- Constant Field Values
-
FTP
public static final java.lang.String FTP
For assets that are external (stored in another service) and stored in a publicly available FTP server (ftp://...)- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AssetConstants
public AssetConstants()
-
-