KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > airsent > spec > delivery > OrderForm


1 /*
2  * Copyright (c) 1999-2001 Lutris Technologies, Inc. All Rights
3  * Reserved.
4  *
5  * This source code file is distributed by Lutris Technologies, Inc. for
6  * use only by licensed users of product(s) that include this source
7  * file. Use of this source file or the software that uses it is covered
8  * by the terms and conditions of the Lutris Enhydra Development License
9  * Agreement included with this product.
10  *
11  * This Software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
12  * ANY KIND, either express or implied. See the License for the specific terms
13  * governing rights and limitations under the License.
14  *
15  * Contributor(s):
16  *
17  * $Id: OrderForm.java,v 1.1 2004/08/16 09:33:18 slobodan Exp $
18  */

19
20 package com.lutris.airsent.spec.delivery;
21
22 import com.lutris.airsent.spec.AirSentException;
23
24 /**
25  * OrderForm interface.
26  */

27 public interface OrderForm {
28     
29 public boolean getFragile();
30 public void setFragile(boolean f);
31 public boolean getUrgent();
32 public void setUrgent(boolean u);
33 public String JavaDoc getSize();
34 public void setSize(String JavaDoc s);
35 public String JavaDoc getDescription();
36 public void setDescription(String JavaDoc d)throws AirSentException;
37 public String JavaDoc getOrderId();
38 public String JavaDoc getPickUpName();
39 public String JavaDoc getPickUpAddress1();
40 public String JavaDoc getPickUpPhone();
41 public String JavaDoc getPickUpDirections();
42 public String JavaDoc getDropOffName();
43 public String JavaDoc getDropOffAddress1();
44 public String JavaDoc getDropOffPhone();
45 public String JavaDoc getDropOffDirections();
46 public void setPickUpName(String JavaDoc name) throws AirSentException;
47
48 public void setPickUpAddress1(String JavaDoc addr)throws AirSentException;
49 public void setPickUpDirections(String JavaDoc dir)throws AirSentException;
50 public void setPickUpPhone(String JavaDoc phone)throws AirSentException;
51  public void setDropOffName(String JavaDoc name)throws AirSentException;
52  public void setDropOffAddress1(String JavaDoc addr)throws AirSentException;
53  public void setDropOffPhone(String JavaDoc phone)throws AirSentException;
54  public void setDropOffDirections(String JavaDoc dir)throws AirSentException;
55 }
56     
57     
Popular Tags