package com.elseforif; /** * This class maps Java constants to URLs related to the Else For If Web site. * These constants should be used in both servlets and applets, to ensure * consistency and so that the physical URLs can be changed easily. */ public class URLs extends Object { public static final String HOME = "/"; public static final String PRODUCTS = "/products"; public static final String SERVICES = "/services"; public static final String DEVELOPMENT = "/development"; public static final String CONTACT = "/contact"; public static final String CONTACT_EMAILER = "/contact/email"; public static final String PHILOSOPHY = "/philosophy"; public static final String SOURCE_ELSEFORIF = "/source/java/com/elseforif/"; }