001 /** 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017 package org.apache.geronimo.samples.daytrader.client.ws; 018 019 public class AccountProfileDataBean { 020 private java.lang.String userID; 021 private java.lang.String password; 022 private java.lang.String fullName; 023 private java.lang.String address; 024 private java.lang.String email; 025 private java.lang.String creditCard; 026 027 public AccountProfileDataBean() { 028 } 029 030 public String toString() { 031 return "\n\tAccount Profile Data for userID:" + getUserID() 032 + "\n\t\t password:" + getPassword() 033 + "\n\t\t fullName:" + getFullName() 034 + "\n\t\t address:" + getAddress() 035 + "\n\t\t email:" + getEmail() 036 + "\n\t\t creditCard:" + getCreditCard() 037 ; 038 } 039 040 public java.lang.String getUserID() { 041 return userID; 042 } 043 044 public void setUserID(java.lang.String userID) { 045 this.userID = userID; 046 } 047 048 public java.lang.String getPassword() { 049 return password; 050 } 051 052 public void setPassword(java.lang.String password) { 053 this.password = password; 054 } 055 056 public java.lang.String getFullName() { 057 return fullName; 058 } 059 060 public void setFullName(java.lang.String fullName) { 061 this.fullName = fullName; 062 } 063 064 public java.lang.String getAddress() { 065 return address; 066 } 067 068 public void setAddress(java.lang.String address) { 069 this.address = address; 070 } 071 072 public java.lang.String getEmail() { 073 return email; 074 } 075 076 public void setEmail(java.lang.String email) { 077 this.email = email; 078 } 079 080 public java.lang.String getCreditCard() { 081 return creditCard; 082 } 083 084 public void setCreditCard(java.lang.String creditCard) { 085 this.creditCard = creditCard; 086 } 087 088 }