![JAR search and dependency download from the Maven repository](/logo.png)
com.cloudesire.vies_client.ViesVatRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vies-client Show documentation
Show all versions of vies-client Show documentation
Java SOAP client for the European "VAT Information Exchange
System" (VIES) system for validation of VAT numbers
The newest version!
package com.cloudesire.vies_client;
import java.util.Date;
public class ViesVatRegistration
{
private String country;
private String vatNumber;
private Date requestDate;
private String name;
private String address;
public String getCountry ()
{
return country;
}
public void setCountry ( String country )
{
this.country = country;
}
public String getVatNumber ()
{
return vatNumber;
}
public void setVatNumber ( String vatNumber )
{
this.vatNumber = vatNumber;
}
public Date getRequestDate ()
{
return requestDate;
}
public void setRequestDate ( Date requestDate )
{
this.requestDate = requestDate;
}
public String getName ()
{
return name;
}
public void setName ( String name )
{
this.name = name;
}
public String getAddress ()
{
return address;
}
public void setAddress ( String address )
{
this.address = address;
}
@Override public String toString ()
{
return "ViesVatRegistration{" + "country=" + country + ", vatNumber=" + vatNumber + ", requestDate="
+ requestDate + ", name=" + name + ", address=" + address + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy