import java.util.*;

public class BusinessCardManagementElement {
	private String address2;
	private String address1;
	private String establishment;
	private String companyOverview;
	private String uRL;
	private String businessDescription2;
	private String title;
	private String businessDescription1;
	private String representative;
	public Map<String, Object> getValue() {
		Map temp_nil0 = new HashMap<>();
		temp_nil0.put("businessDescription1",this.getBusinessDescription1());
		temp_nil0.put("businessDescription2",this.getBusinessDescription2());
		temp_nil0.put("address1",this.getAddress1());
		temp_nil0.put("representative",this.getRepresentative());
		temp_nil0.put("establishment",this.getEstablishment());
		temp_nil0.put("address2",this.getAddress2());
		temp_nil0.put("URL",this.getURL());
		temp_nil0.put("companyOverview",this.getCompanyOverview());
		temp_nil0.put("title",this.getTitle());
		return temp_nil0;
	}
	public String getAddress2() {
		return this.address2;
	}
	public void changeAddress2OfBusinessCardManagement(String companyName, String newAddress2) {
		this.address2 = newAddress2;
	}
	public String getAddress1() {
		return this.address1;
	}
	public void changeAddress1OfBusinessCardManagement(String companyName, String newAddress1) {
		this.address1 = newAddress1;
	}
	public String getEstablishment() {
		return this.establishment;
	}
	public void changeEstablishmentOfBusinessCardManagement(String companyName, String newEstablishment) {
		this.establishment = newEstablishment;
	}
	public String getCompanyOverview() {
		return this.companyOverview;
	}
	public void changeCompanyOverviewOfBusinessCardManagement(String companyName, String newCompanyOverview) {
		this.companyOverview = newCompanyOverview;
	}
	public String getURL() {
		return this.URL;
	}
	public void changeURLOfBusinessCardManagement(String companyName, String newURL) {
		this.uRL = newURL;
	}
	public String getBusinessDescription2() {
		return this.businessDescription2;
	}
	public void changeBusinessDescription2OfBusinessCardManagement(String companyName, String newBusinessDescription2) {
		this.businessDescription2 = newBusinessDescription2;
	}
	public String getTitle() {
		return this.title;
	}
	public void changeTitleOfBusinessCardManagement(String companyName, String newTitle) {
		this.title = newTitle;
	}
	public String getBusinessDescription1() {
		return this.businessDescription1;
	}
	public void changeBusinessDescription1OfBusinessCardManagement(String companyName, String newBusinessDescription1) {
		this.businessDescription1 = newBusinessDescription1;
	}
	public String getRepresentative() {
		return this.representative;
	}
	public void changeRepresentativeOfBusinessCardManagement(String companyName, String newRepresentative) {
		this.representative = newRepresentative;
	}
	public BusinessCardManagementElement(String address2, String address1, String establishment, String title, String businessDescription1, String representative, String companyOverview, String uRL, String businessDescription2) {
		this.address2 = address2;
		this.address1 = address1;
		this.establishment = establishment;
		this.title = title;
		this.businessDescription1 = businessDescription1;
		this.representative = representative;
		this.companyOverview = companyOverview;
		this.uRL = uRL;
		this.businessDescription2 = businessDescription2;
	}
}