
org.beigesoft.acc.mdlp.I18Acc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beige-acc Show documentation
Show all versions of beige-acc Show documentation
It consists of double entry accounting and trading (web-store) business logic.
It's based on previous beigesoft-accounting and beigesoft-webstore projects.
The newest version!
/*
BSD 2-Clause License
Copyright (c) 2019, Beigesoft™
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.beigesoft.acc.mdlp;
import org.beigesoft.mdl.AHasVr;
import org.beigesoft.mdlp.Lng;
/**
* Model of I18N accounting common.
*
* @author Yury Demidenko
*/
public class I18Acc extends AHasVr {
/**
* The language, PK.
**/
private Lng lng;
/**
* String, not null, organization name in the language.
* It's to report financial statements in foreign language,
* e.g. balance sheet for foreign investors.
**/
private String org;
/**
* Registered address1.
**/
private String addr1;
/**
* Registered address2.
**/
private String addr2;
/**
* Registered Country.
**/
private String cntr;
/**
* Registered State.
**/
private String stat;
/**
* Registered City.
**/
private String city;
/**
* Getter for itsId.
* @return Lng
**/
@Override
public final Lng getIid() {
return this.lng;
}
/**
* Setter for itsId.
* @param pIid reference
**/
@Override
public final void setIid(final Lng pIid) {
this.lng = pIid;
}
//Simple getters and setters:
/**
* Getter for lng.
* @return Lng
**/
public final Lng getLng() {
return this.lng;
}
/**
* Setter for lng.
* @param pLng reference
**/
public final void setLng(final Lng pLng) {
this.lng = pLng;
}
/**
* Getter for org.
* @return String
**/
public final String getOrg() {
return this.org;
}
/**
* Setter for org.
* @param pOrg reference
**/
public final void setOrg(final String pOrg) {
this.org = pOrg;
}
/**
* Getter for addr1.
* @return String
**/
public final String getAddr1() {
return this.addr1;
}
/**
* Setter for addr1.
* @param pAddr1 reference
**/
public final void setAddr1(final String pAddr1) {
this.addr1 = pAddr1;
}
/**
* Getter for addr2.
* @return String
**/
public final String getAddr2() {
return this.addr2;
}
/**
* Setter for addr2.
* @param pAddr2 reference
**/
public final void setAddr2(final String pAddr2) {
this.addr2 = pAddr2;
}
/**
* Getter for cntr.
* @return String
**/
public final String getCntr() {
return this.cntr;
}
/**
* Setter for cntr.
* @param pCntr reference
**/
public final void setCntr(final String pCntr) {
this.cntr = pCntr;
}
/**
* Getter for stat.
* @return String
**/
public final String getStat() {
return this.stat;
}
/**
* Setter for stat.
* @param pStat reference
**/
public final void setStat(final String pStat) {
this.stat = pStat;
}
/**
* Getter for city.
* @return String
**/
public final String getCity() {
return this.city;
}
/**
* Setter for city.
* @param pCity reference
**/
public final void setCity(final String pCity) {
this.city = pCity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy