Initial import.
[clinton/mirror/jspi/.git] / jspi / src / main / java / de / lohndirekt / print / attribute / ipp / jobtempl / LdJobHoldUntil.java
1 /**
2 * Copyright (C) 2003 <a href="http://www.lohndirekt.de/">lohndirekt.de</a>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19 package de.lohndirekt.print.attribute.ipp.jobtempl;
20
21 import java.util.Locale;
22
23 import javax.print.attribute.PrintJobAttribute;
24 import javax.print.attribute.PrintRequestAttribute;
25 import javax.print.attribute.TextSyntax;
26
27 /**
28 * The job-hold-until attribute specifies a hold time.
29 * In addition to the standard IPP/1.1 keyword names,
30 * CUPS supports name values of the form "HH:MM" and "HH:MM:SS"
31 * that specify a hold time.<br>
32 * The hold time is in Greenwich Mean Time (GMT) and not in the
33 * local time zone. If the specified time is less than the
34 * current time, the job is held until the next day.
35 *
36 * @author bpusch
37 */
38 public class LdJobHoldUntil extends TextSyntax implements PrintRequestAttribute, PrintJobAttribute {
39
40 public final static LdJobHoldUntil NO_HOLD = new LdJobHoldUntil("no-hold",Locale.getDefault());
41 public final static LdJobHoldUntil INDEFINITE = new LdJobHoldUntil("indefinite",Locale.getDefault());
42 public final static LdJobHoldUntil DAY_TIME = new LdJobHoldUntil("day-time",Locale.getDefault());
43 public final static LdJobHoldUntil EVENING = new LdJobHoldUntil("evening",Locale.getDefault());
44 public final static LdJobHoldUntil NIGHT = new LdJobHoldUntil("night",Locale.getDefault());
45 public final static LdJobHoldUntil WEEKEND = new LdJobHoldUntil("weekend",Locale.getDefault());
46 public final static LdJobHoldUntil SECOND_SHIFT = new LdJobHoldUntil("second-shift",Locale.getDefault());
47 public final static LdJobHoldUntil THIRD_SHIFT = new LdJobHoldUntil("third-shift",Locale.getDefault());
48
49 /**
50 * @param value
51 * @param locale
52 */
53 public LdJobHoldUntil(String value, Locale locale) {
54 super(value, locale);
55 }
56
57 public Class getCategory() {
58 return LdJobHoldUntil.class;
59 }
60
61 public String getName() {
62 return LdJobHoldUntil.getIppName();
63 }
64
65
66 public final static String getIppName() {
67 return "job-hold-until";
68 }
69
70 }