1 package org.imageconverter.util.controllers.imageconverter;
2
3 /**
4 * Image Converter URLs.
5 *
6 * @author Fernando Romulo da Silva
7 */
8 public final class ImageConverterConst {
9
10 public static final String REST_URL = "/rest/images/conversion";
11
12 public static final String REST_URL_AREA = "/rest/images/conversion/area";
13
14 public static final String ACTION_URL = "/gui/images/conversion";
15
16 private ImageConverterConst() {
17 throw new IllegalStateException("You can't instanciate this class");
18 }
19 }