blob: 60f2acd821039e748f878d63ea88bd404a575dda [file] [log] [blame]
/*
* 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 org.apache.openjpa.persistence.proxy.entities;
import java.util.Date;
import java.util.List;
public interface IAnnuity extends IAnnuityObject {
Double getLastPaidAmt();
void setLastPaidAmt(Double lastPaidAmt);
String getAccountNumber();
void setAccountNumber(String accountNumber);
Double getAmount();
void setAmount(Double amount);
List<IPayout> getPayouts();
void setPayouts(List<IPayout> payout);
List<IRider> getRiders();
void setRiders(List<IRider> riders);
String getAnnuityHolderId();
void setAnnuityHolderId(String annuityHolderId);
List<IPayor> getPayors();
void setPayors(List<IPayor> payors);
List<String> getComments();
void setComments(List<String> comments);
Date getApprovedAt();
void setApprovedAt(Date approvedAt);
Annuity getPreviousAnnuity();
void setPreviousAnnuity(Annuity previousAnnuity);
}