Java tutorial
/** * 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 com.gst.portfolio.floatingrates.domain; import java.math.BigDecimal; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import com.gst.infrastructure.core.domain.AbstractPersistableCustom; import com.gst.portfolio.floatingrates.data.FloatingRateDTO; import com.gst.portfolio.floatingrates.data.FloatingRatePeriodData; import com.gst.useradministration.domain.AppUser; import org.joda.time.LocalDate; import org.joda.time.LocalDateTime; @Entity @Table(name = "m_floating_rates_periods") public class FloatingRatePeriod extends AbstractPersistableCustom<Long> { @ManyToOne @JoinColumn(name = "floating_rates_id", nullable = false) private FloatingRate floatingRate; @Column(name = "from_date", nullable = false) private Date fromDate; @Column(name = "interest_rate", scale = 6, precision = 19, nullable = false) private BigDecimal interestRate; @Column(name = "is_differential_to_base_lending_rate", nullable = false) private boolean isDifferentialToBaseLendingRate; @Column(name = "is_active", nullable = false) private boolean isActive; @ManyToOne(optional = true, fetch = FetchType.LAZY) @JoinColumn(name = "createdby_id", nullable = false) private AppUser createdBy; @ManyToOne(optional = true, fetch = FetchType.LAZY) @JoinColumn(name = "lastmodifiedby_id", nullable = false) private AppUser modifiedBy; @Column(name = "created_date", nullable = false) private Date createdOn; @Column(name = "lastmodified_date", nullable = false) private Date modifiedOn; public FloatingRatePeriod() { } public FloatingRatePeriod(Date fromDate, BigDecimal interestRate, boolean isDifferentialToBaseLendingRate, boolean isActive, AppUser createdBy, AppUser modifiedBy, Date createdOn, Date modifiedOn) { this.fromDate = fromDate; this.interestRate = interestRate; this.isDifferentialToBaseLendingRate = isDifferentialToBaseLendingRate; this.isActive = isActive; this.createdBy = createdBy; this.modifiedBy = modifiedBy; this.createdOn = createdOn; this.modifiedOn = modifiedOn; } public void updateFloatingRate(FloatingRate floatingRate) { this.floatingRate = floatingRate; } public FloatingRate getFloatingRatesId() { return this.floatingRate; } public Date getFromDate() { return this.fromDate; } public BigDecimal getInterestRate() { return this.interestRate; } public boolean isDifferentialToBaseLendingRate() { return this.isDifferentialToBaseLendingRate; } public boolean isActive() { return this.isActive; } public AppUser getCreatedBy() { return this.createdBy; } public AppUser getModifiedBy() { return this.modifiedBy; } public Date getCreatedOn() { return this.createdOn; } public Date getModifiedOn() { return this.modifiedOn; } public void setModifiedBy(AppUser modifiedBy) { this.modifiedBy = modifiedBy; } public void setModifiedOn(Date modifiedOn) { this.modifiedOn = modifiedOn; } public void setActive(boolean b) { this.isActive = b; } public LocalDate fetchFromDate() { return new LocalDate(this.fromDate); } public FloatingRatePeriodData toData(final FloatingRateDTO floatingRateDTO) { BigDecimal interest = getInterestRate().add(floatingRateDTO.getInterestRateDiff()); if (isDifferentialToBaseLendingRate()) { interest = interest.add(floatingRateDTO.fetchBaseRate(fetchFromDate())); } final LocalDate fromDate = new LocalDateTime(getFromDate()).toLocalDate(); final LocalDate createdOn = new LocalDateTime(getCreatedOn()).toLocalDate(); final LocalDate modidiedOn = new LocalDateTime(getModifiedOn()).toLocalDate(); return new FloatingRatePeriodData(getId(), fromDate, interest, isDifferentialToBaseLendingRate(), isActive(), getCreatedBy().getUsername(), createdOn, getModifiedBy().getUsername(), modidiedOn); } }