All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.crowdcode.kissmda.examples.apptest.components.CompanyImpl Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package de.crowdcode.kissmda.examples.apptest.components;

import java.util.Collection;
import java.util.Date;

import de.crowdcode.kissmda.examples.apptest.PersonImpl;
import de.crowdcode.kissmda.testapp.HeadquarterOffice;
import de.crowdcode.kissmda.testapp.Person;
import de.crowdcode.kissmda.testapp.components.Company;
import de.crowdcode.kissmda.testapp.components.CompanyAttribute;

public class CompanyImpl implements Company {

	private String name;
	private double value;
	private Date created;
	private CompanyAttribute companyAttribute;
	private Person person;
	private Collection oldPersons;
	private Collection internalCompanies;
	private HeadquarterOffice headquarterOffice;

	@Override
	public String getName() {
		return name;
	}

	@Override
	public void setName(String name) {
		this.name = name;
	}

	@Override
	public double getValue() {
		return value;
	}

	@Override
	public void setValue(double value) {
		this.value = value;
	}

	@Override
	public Date getCreated() {
		return created;
	}

	@Override
	public void setCreated(Date created) {
		this.created = created;
	}

	@Override
	public CompanyAttribute getCompanyAttribute() {
		return companyAttribute;
	}

	@Override
	public void setCompanyAttribute(
			CompanyAttribute companyAttribute) {
		this.companyAttribute = companyAttribute;
	}

	@Override
	public  void defineCompany(Collection owners, T owner) {
		T newOwner = owner;
		owners.add(newOwner);
	}

	@Override
	public Person getVirtualPerson() {
		person = new PersonImpl();
		return person;
	}

	@Override
	public Collection getOldPersons() {
		return oldPersons;
	}

	@Override
	public void setOldPersons(Collection oldPersons) {
		this.oldPersons = oldPersons;
	}

	@Override
	public Collection calculateCompanies(
			Collection companies, Collection persons) {
		return internalCompanies;
	}

	@Override
	public HeadquarterOffice getHeadquarterOffice() {
		return headquarterOffice;
	}

	@Override
	public void setHeadquarterOffice(HeadquarterOffice headquarterOffice) {
		this.headquarterOffice = headquarterOffice;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy