Subversion Repositories SmartDukaan

Rev

Rev 20640 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20640 Rev 22577
Line 6... Line 6...
6
 */
6
 */
7
 
7
 
8
package com.aramex.stub;
8
package com.aramex.stub;
9
 
9
 
10
public class Contact  implements java.io.Serializable {
10
public class Contact  implements java.io.Serializable {
-
 
11
    @Override
-
 
12
	public String toString() {
-
 
13
		return "Contact [department=" + department + ", personName=" + personName + ", title=" + title + ", companyName=" + companyName
-
 
14
				+ ", phoneNumber1=" + phoneNumber1 + ", phoneNumber1Ext=" + phoneNumber1Ext + ", phoneNumber2=" + phoneNumber2
-
 
15
				+ ", phoneNumber2Ext=" + phoneNumber2Ext + ", faxNumber=" + faxNumber + ", cellPhone=" + cellPhone + ", emailAddress="
-
 
16
				+ emailAddress + ", type=" + type + "]";
-
 
17
	}
-
 
18
 
11
    private java.lang.String department;
19
	private java.lang.String department;
12
 
20
 
13
    private java.lang.String personName;
21
    private java.lang.String personName;
14
 
22
 
15
    private java.lang.String title;
23
    private java.lang.String title;
16
 
24