congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Customer$Builder.withBillingAddress
Code IndexAdd Tabnine to your IDE (free)

How to use
withBillingAddress
method
in
it.tidalwave.accounting.model.Customer$Builder

Best Java code snippets using it.tidalwave.accounting.model.Customer$Builder.withBillingAddress (Showing top 5 results out of 315)

origin: it.tidalwave.accounting/it-tidalwave-accounting-marshalling-xml

 @Nonnull
 public Customer.Builder toBuilder()
  {
   return new Customer.Builder().withId(id)
                  .withName(name)
                  .withBillingAddress(billingAddressXml.toAddress())
                  .withVatNumber(vatNumber);
  }
}
origin: it.tidalwave.accounting/it-tidalwave-accounting-importer-ibiz

/*******************************************************************************************************************
 *
 * {@inheritDoc}
 *
 ******************************************************************************************************************/
@Override
public void importCustomers()
 throws IOException
 {
  log.debug("importCustomers()");
  final NativeAddressBook addressBook = NativeAddressBook.instance();
  IBizUtils.loadConfiguration(path.resolve("clients")).getStream("clients").forEach(customerConfig -> 
   {
    final String firstName = trim(customerConfig.getString("firstName"));
    final String clientCompany = customerConfig.getString("clientCompany");
    final Contact contact = getContact(addressBook, firstName, clientCompany);
    customerRegistry.addCustomer().withId(customerConfig.getId("addressBookId"))
                   .withName(firstName)
                   .withBillingAddress(getAddress(contact))
                   .withVatNumber(getVatNumber(contact))
                   .create();
   });
 }
origin: it.tidalwave.accounting/it-tidalwave-accounting-model-impl-inmemory

 @Test
 public void toString_must_return_all_the_fields()
  {
   final Address a1 = Address.builder().withStreet("Foo Bar rd 20")
                     .withCity("San Francisco")
                     .withZip("12345")
                     .withState("CA")
                     .withCountry("USA")
                     .create();
   final Customer c1 = Customer.builder().withId(new Id("the id"))
                      .withName("Acme Corp.")
                      .withVatNumber("1233455345")
                      .withBillingAddress(a1)
                      .create();
   assertThat(c1.toString(), is("InMemoryCustomer(id=the id, name=Acme Corp., billingAddress=Address(street=Foo Bar rd 20, "
                 + "city=San Francisco, state=CA, country=USA, zip=12345), vatNumber=1233455345)"));
  }
}
origin: it.tidalwave.accounting/it-tidalwave-accounting-model

.withId(new Id("" + nextId++))
.withName("ACME Consulting")
.withBillingAddress(Address.builder().withStreet("Corso Italia 10")
                   .withCity("Genova")
                   .withState("GE")
.withId(new Id("" + nextId++))
.withName("ACME Financing")
.withBillingAddress(Address.builder().withStreet("Corso Magenta 20")
                   .withCity("Milano")
                   .withState("MI")
origin: it.tidalwave.accounting/it-tidalwave-accounting-model-impl-inmemory

                   .withName("Acme Corp.")
                   .withVatNumber("1233455345")
                   .withBillingAddress(a1)
                   .create();
final Project p = Project.builder().withId(new Id("2"))
it.tidalwave.accounting.modelCustomer$BuilderwithBillingAddress

Popular methods of Customer$Builder

  • create
  • withId
  • withName
  • withVatNumber
  • <init>
  • getBillingAddress
  • getId
  • getName
  • getVatNumber
  • with
  • withCallback
  • withCallback

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • getSystemService (Context)
  • runOnUiThread (Activity)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now