//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
Implementation, vhudson-jaxb-ri-2.1-558
// See <a
href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/...
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.06.23 at 11:49:08 AM IST
//
package org.domain;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for CreditCard complex type.
*
* <p>The following schema fragment specifies the expected content contained within
this class.
*
* <pre>
* <complexType name="CreditCard">
* <complexContent>
* <restriction
base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name"
type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="age"
type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="annualIncome"
type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="asset"
type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="eligibilityStatus"
type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreditCard", propOrder = {
"name",
"age",
"annualIncome",
"asset",
"eligibilityStatus"
})
public class CreditCard {
@XmlElement(required = true)
protected String name;
protected int age;
protected double annualIncome;
protected double asset;
@XmlElement(required = true)
protected String eligibilityStatus;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the age property.
*
*/
public int getAge() {
return age;
}
/**
* Sets the value of the age property.
*
*/
public void setAge(int value) {
this.age = value;
}
/**
* Gets the value of the annualIncome property.
*
*/
public double getAnnualIncome() {
return annualIncome;
}
/**
* Sets the value of the annualIncome property.
*
*/
public void setAnnualIncome(double value) {
this.annualIncome = value;
}
/**
* Gets the value of the asset property.
*
*/
public double getAsset() {
return asset;
}
/**
* Sets the value of the asset property.
*
*/
public void setAsset(double value) {
this.asset = value;
}
/**
* Gets the value of the eligibilityStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEligibilityStatus() {
return eligibilityStatus;
}
/**
* Sets the value of the eligibilityStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEligibilityStatus(String value) {
this.eligibilityStatus = value;
}
}