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

com.opentext.ia.sdk.dto.AgingStrategy Maven / Gradle / Ivy

There is a newer version: 12.8.4
Show newest version
/*
 * Copyright (c) 2016-2017 by OpenText Corporation. All Rights Reserved.
 */
package com.opentext.ia.sdk.dto;

import com.opentext.ia.sdk.support.JavaBean;


public class AgingStrategy extends JavaBean {

  private String type;
  private AgingPeriod agingPeriod;

  public AgingStrategy() {
    setType("DURATION");
    setAgingPeriod(new AgingPeriod());
  }

  public String getType() {
    return type;
  }

  public final void setType(String type) {
    this.type = type;
  }

  public AgingPeriod getAgingPeriod() {
    return agingPeriod;
  }

  public final void setAgingPeriod(AgingPeriod agingPeriod) {
    this.agingPeriod = agingPeriod;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy