001 /*
002 * Copyright 2005 The Apache Software Foundation
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 */
017
018 /**
019 * The Impress server option specifies a list of Imagen Impress servers
020 * available to the client. Servers SHOULD be listed in order of
021 * preference.
022 *
023 * The code for the Impress server option is 10. The minimum length for
024 * this option is 4 octets, and the length MUST always be a multiple of
025 * 4.
026 */
027 package org.apache.directory.server.dhcp.options.vendor;
028
029
030 import org.apache.directory.server.dhcp.options.AddressListOption;
031
032
033 /**
034 * The Impress server option specifies a list of Imagen Impress servers
035 * available to the client. Servers SHOULD be listed in order of
036 * preference.
037 *
038 * The code for the Impress server option is 10. The minimum length for
039 * this option is 4 octets, and the length MUST always be a multiple of
040 * 4.
041 *
042 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
043 * @version $Rev: 638228 $, $Date: 2008-03-18 08:12:41 +0200 (Tue, 18 Mar 2008) $
044 */
045 public class ImpressServers extends AddressListOption
046 {
047 /*
048 * @see org.apache.directory.server.dhcp.options.DhcpOption#getTag()
049 */
050 public byte getTag()
051 {
052 return 10;
053 }
054 }