src/share/classes/javax/print/attribute/standard/PrinterMoreInfoManufacturer.java

Print this page




  32 
  33 /**
  34  * Class PrinterMoreInfoManufacturer is a printing attribute class, a URI,
  35  * that is used to obtain more information about this type of device.
  36  * The information obtained from this URI is intended for end user
  37  * consumption. Features outside the scope of the Print Service API
  38  * can be accessed from this URI (e.g.,
  39  * latest firmware, upgrades, service proxies, optional features available,
  40  * details on color support). The information is intended to be germane to
  41  * this kind of printer without regard to site specific modifications or
  42  * services.
  43  * <P>
  44  * In contrast, the {@link PrinterMoreInfo PrinterMoreInfo} attribute is used
  45  * to find out more information about this specific printer rather than this
  46  * general kind of printer.
  47  * <P>
  48  * <B>IPP Compatibility:</B> The string form returned by
  49  * <CODE>toString()</CODE> gives the IPP uri value.
  50  * The category name returned by <CODE>getName()</CODE>
  51  * gives the IPP attribute name.
  52  * <P>
  53  *
  54  * @author  Alan Kaminsky
  55  */
  56 public final class PrinterMoreInfoManufacturer extends URISyntax
  57         implements PrintServiceAttribute {
  58 
  59     private static final long serialVersionUID = 3323271346485076608L;
  60 
  61     /**
  62      * Constructs a new printer more info manufacturer attribute with the
  63      * specified URI.
  64      *
  65      * @param  uri  URI.
  66      *
  67      * @exception  NullPointerException
  68      *     (unchecked exception) Thrown if <CODE>uri</CODE> is null.
  69      */
  70     public PrinterMoreInfoManufacturer(URI uri) {
  71         super (uri);
  72     }




  32 
  33 /**
  34  * Class PrinterMoreInfoManufacturer is a printing attribute class, a URI,
  35  * that is used to obtain more information about this type of device.
  36  * The information obtained from this URI is intended for end user
  37  * consumption. Features outside the scope of the Print Service API
  38  * can be accessed from this URI (e.g.,
  39  * latest firmware, upgrades, service proxies, optional features available,
  40  * details on color support). The information is intended to be germane to
  41  * this kind of printer without regard to site specific modifications or
  42  * services.
  43  * <P>
  44  * In contrast, the {@link PrinterMoreInfo PrinterMoreInfo} attribute is used
  45  * to find out more information about this specific printer rather than this
  46  * general kind of printer.
  47  * <P>
  48  * <B>IPP Compatibility:</B> The string form returned by
  49  * <CODE>toString()</CODE> gives the IPP uri value.
  50  * The category name returned by <CODE>getName()</CODE>
  51  * gives the IPP attribute name.

  52  *
  53  * @author  Alan Kaminsky
  54  */
  55 public final class PrinterMoreInfoManufacturer extends URISyntax
  56         implements PrintServiceAttribute {
  57 
  58     private static final long serialVersionUID = 3323271346485076608L;
  59 
  60     /**
  61      * Constructs a new printer more info manufacturer attribute with the
  62      * specified URI.
  63      *
  64      * @param  uri  URI.
  65      *
  66      * @exception  NullPointerException
  67      *     (unchecked exception) Thrown if <CODE>uri</CODE> is null.
  68      */
  69     public PrinterMoreInfoManufacturer(URI uri) {
  70         super (uri);
  71     }