Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.ewv.model.response;
import java.io.Serializable;
public class VendorInfo implements Serializable
{
private static final long serialVersionUID = 9212340001239829814L;
private String name;
private String taxIdNumber;
private String npi;
private String entityId;
private String billingVendorTaxonomyCode;
private String addressLineOne;
private String addressLineTwo;
private String city;
private String state;
private String postalCode;
private String country;
public VendorInfo(String name, String taxIdNumber, String npi, String billingVendorTaxonomyCode, String addressLineOne, String addressLineTwo, String city, String state, String postalCode, String country)
{
this.addressLineOne = addressLineOne;
this.addressLineTwo = addressLineTwo;
this.city = city;
this.state = state;
this.postalCode = postalCode;
this.country = country;
this.name = name;
this.taxIdNumber = taxIdNumber;
this.npi = npi;
this.billingVendorTaxonomyCode = billingVendorTaxonomyCode;
}
public VendorInfo()
{
super();
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the taxIdNumber
*/
public String getTaxIdNumber() {
return taxIdNumber;
}
/**
* @param taxIdNumber the taxIdNumber to set
*/
public void setTaxIdNumber(String taxIdNumber) {
this.taxIdNumber = taxIdNumber;
}
/**
* @return the npi
*/
public String getNpi() {
return npi;
}
/**
* @param npi the npi to set
*/
public void setNpi(String npi) {
this.npi = npi;
}
/**
* @return the entityId
*/
public String getEntityId() {
return entityId;
}
/**
* @param entityId the entityId to set
*/
public void setEntityId(String entityId) {
this.entityId = entityId;
}
/**
* @return the billingVendorTaxonomyCode
*/
public String getBillingVendorTaxonomyCode() {
return billingVendorTaxonomyCode;
}
/**
* @param billingVendorTaxonomyCode the billingVendorTaxonomyCode to set
*/
public void setBillingVendorTaxonomyCode(String billingVendorTaxonomyCode) {
this.billingVendorTaxonomyCode = billingVendorTaxonomyCode;
}
/**
* @return the addressLineOne
*/
public String getAddressLineOne() {
return addressLineOne;
}
/**
* @param addressLineOne the addressLineOne to set
*/
public void setAddressLineOne(String addressLineOne) {
this.addressLineOne = addressLineOne;
}
/**
* @return the addressLineTwo
*/
public String getAddressLineTwo() {
return addressLineTwo;
}
/**
* @param addressLineTwo the addressLineTwo to set
*/
public void setAddressLineTwo(String addressLineTwo) {
this.addressLineTwo = addressLineTwo;
}
/**
* @return the city
*/
public String getCity() {
return city;
}
/**
* @param city the city to set
*/
public void setCity(String city) {
this.city = city;
}
/**
* @return the state
*/
public String getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* @return the postalCode
*/
public String getPostalCode() {
return postalCode;
}
/**
* @param postalCode the postalCode to set
*/
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
/**
* @return the country
*/
public String getCountry() {
return country;
}
/**
* @param country the country to set
*/
public void setCountry(String country) {
this.country = country;
}
@Override
public String toString() {
return "VendorInfo [name=" + name + ", taxIdNumber=" + taxIdNumber + ", npi=" + npi + ", entityId=" + entityId
+ ", billingVendorTaxonomyCode=" + billingVendorTaxonomyCode + ", addressLineOne=" + addressLineOne
+ ", addressLineTwo=" + addressLineTwo + ", city=" + city + ", state=" + state + ", postalCode="
+ postalCode + ", country=" + country + "]";
}
}