Codota Logo
JpaPersonName
Code IndexAdd Codota to your IDE (free)

How to use
JpaPersonName
in
sk.seges.corpis.server.domain.jpa

Best Java code snippets using sk.seges.corpis.server.domain.jpa.JpaPersonName (Showing top 9 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: sk.seges.corpis/corpis-core-domain-jpa

public JpaPersonCore() {
  setPerson(new JpaPersonName());
}
origin: sk.seges.corpis/corpis-customer-domain-jpa

@Override
@Transient
public String getName() {
  return (!isCompanyCustomerType()) ? (((getPerson().getFirstName() == null) ? "" : getPerson()
      .getFirstName() + " ") + ((getPerson().getSurname() == null) ? "" : getPerson().getSurname()))
      : getCompany().getCompanyName();
}
origin: sk.seges.corpis/corpis-core-domain-jpa

/**
 * Use {@link sk.seges.corpis.server.domain.server.model.data.PersonNameData}
 * @return
 */
@Deprecated
public void setFirstName(String firstName) {
  if(null != getPerson()) {
    getPerson().setFirstName(firstName);
  }
}
origin: sk.seges.corpis/corpis-core-domain-jpa

/**
 * Use {@link sk.seges.corpis.server.domain.server.model.data.PersonNameData}
 * @return
 */
@Transient
@Deprecated
public String getFirstName() {
  String result = null;
  if(null != getPerson()) {
    result = getPerson().getFirstName();
  }
  return result;
}
origin: sk.seges.corpis/corpis-core-domain-jpa

/**
 * Use {@link sk.seges.corpis.server.domain.server.model.data.PersonNameData}
 * @return
 */
@Transient
@Deprecated
public String getLastName() {
  String result = null;
  if(null != getPerson()) {
    result = getPerson().getSurname();
  }
  return result;
}
origin: sk.seges.corpis/corpis-core-domain-jpa

/**
 * Use {@link sk.seges.corpis.server.domain.server.model.data.PersonNameData}
 * @return
 */
@Deprecated
public void setLastName(String lastName) {
  if (null != getPerson()) {
    getPerson().setSurname(lastName);
  }
}
origin: sk.seges.corpis/corpis-invoice-domain-jpa

public JpaDeliveryPerson() {
  setCompany(new JpaCompanyName());
  setPerson(new JpaPersonName());
}
origin: sk.seges.corpis/corpis-customer-domain-jpa

public JpaCustomerCore() {
  setCompany(new JpaCompanyName());
  setPerson(new JpaPersonName());
  setAddress(new JpaAddress());
  setContact(new JpaBasicContact());
}
origin: sk.seges.corpis/corpis-invoice-domain-jpa

public JpaOrderCore() {
  setDeliveryContact(new JpaBasicContact());
  setDeliveryPerson(new JpaDeliveryPerson());
  setDeliveryAddress(new JpaAddress());
  setCustomerAddress(new JpaAddress());
  setCustomerContact(new JpaBasicContact());
  setCustomerPersonName(new JpaPersonName());
  setCustomerCompanyName(new JpaCompanyName());
}
sk.seges.corpis.server.domain.jpaJpaPersonName

Most used methods

  • <init>
  • getFirstName
  • getSurname
  • setFirstName
  • setSurname

Popular in Java

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • getApplicationContext (Context)
  • findViewById (Activity)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now