import java.util.*;

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