KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openbravo > erpCommon > ws > externalSales > BPartner


1 /*
2  *************************************************************************
3  * The contents of this file are subject to the Openbravo Public License
4  * Version 1.0 (the "License"), being the Mozilla Public License
5  * Version 1.1 with a permitted attribution clause; you may not use this
6  * file except in compliance with the License. You may obtain a copy of
7  * the License at http://www.openbravo.com/legal/license.html
8  * Software distributed under the License is distributed on an "AS IS"
9  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
10  * License for the specific language governing rights and limitations
11  * under the License.
12  * The Original Code is Openbravo ERP.
13  * The Initial Developer of the Original Code is Openbravo SL
14  * All portions are Copyright (C) 2001-2006 Openbravo SL
15  * All Rights Reserved.
16  * Contributor(s): ______________________________________.
17  ************************************************************************
18 */

19
20 package org.openbravo.erpCommon.ws.externalSales;
21
22 public class BPartner {
23     private java.lang.String JavaDoc id;
24     private java.lang.String JavaDoc name;
25     private java.lang.String JavaDoc country;
26     private java.lang.String JavaDoc region;
27     private java.lang.String JavaDoc city;
28     private java.lang.String JavaDoc postal;
29     private java.lang.String JavaDoc address1;
30     private java.lang.String JavaDoc address2;
31     
32     /** Creates a new instance of BPartner */
33     public BPartner() {
34     }
35
36     public java.lang.String JavaDoc getId() {
37         return id;
38     }
39
40     public void setId(java.lang.String JavaDoc id) {
41         this.id = id;
42     }
43
44     public java.lang.String JavaDoc getName() {
45         return name;
46     }
47
48     public void setName(java.lang.String JavaDoc name) {
49         this.name = name;
50     }
51
52     public java.lang.String JavaDoc getCountry() {
53         return country;
54     }
55
56     public void setCountry(java.lang.String JavaDoc country) {
57         this.country = country;
58     }
59
60     public java.lang.String JavaDoc getRegion() {
61         return region;
62     }
63
64     public void setRegion(java.lang.String JavaDoc region) {
65         this.region = region;
66     }
67
68     public java.lang.String JavaDoc getCity() {
69         return city;
70     }
71
72     public void setCity(java.lang.String JavaDoc city) {
73         this.city = city;
74     }
75
76
77     public java.lang.String JavaDoc getPostal() {
78         return postal;
79     }
80
81     public void setPostal(java.lang.String JavaDoc postal) {
82         this.postal = postal;
83     }
84
85
86     public java.lang.String JavaDoc getAddress1() {
87         return address1;
88     }
89
90     public void setAddress1(java.lang.String JavaDoc address1) {
91         this.address1 = address1;
92     }
93
94     public java.lang.String JavaDoc getAddress2() {
95         return address2;
96     }
97
98     public void setAddress2(java.lang.String JavaDoc address2) {
99         this.address2 = address2;
100     }
101 }
102
Popular Tags