X-Git-Url: https://git.hcoop.net/clinton/mirror/jspi/.git/blobdiff_plain/1a55f01cf981bd9174172c279ad0fd786f7b9e0f..3ea135bb6f2d874cae958af400076d5faf9d7e26:/jspi/src/main/java/de/lohndirekt/print/attribute/ipp/jobdesc/JobOriginatingHostName.java diff --git a/jspi/src/main/java/de/lohndirekt/print/attribute/ipp/jobdesc/JobOriginatingHostName.java b/jspi/src/main/java/de/lohndirekt/print/attribute/ipp/jobdesc/JobOriginatingHostName.java new file mode 100644 index 0000000..cdb805e --- /dev/null +++ b/jspi/src/main/java/de/lohndirekt/print/attribute/ipp/jobdesc/JobOriginatingHostName.java @@ -0,0 +1,55 @@ +/** + * Copyright (C) 2003 lohndirekt.de + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package de.lohndirekt.print.attribute.ipp.jobdesc; + +import java.util.Locale; + +import javax.print.attribute.PrintJobAttribute; +import javax.print.attribute.TextSyntax; + +public class JobOriginatingHostName extends TextSyntax implements PrintJobAttribute{ + + /** + * @param value + */ + public JobOriginatingHostName(String name, Locale locale) { + super(name, locale); + } + + /** + * + */ + + public Class getCategory() { + return JobOriginatingHostName.class; + } + + /** + * + */ + + public static String getIppName() { + return "job-originating-host-name"; + } + + public String getName() { + return JobOriginatingHostName.getIppName(); + } + +}