FileDocCategorySizeDatePackage
PostingLimitAuthorization.javaAPI DocExample660Thu Feb 17 20:00:58 GMT 2000AccountingMgmt.Posting

PostingLimitAuthorization.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package AccountingMgmt.Posting;

import java.math.BigDecimal;

/** @stereotype moment-interval */
public class PostingLimitAuthorization {
    public void makePostingLimitAuthorization() {
    }

    public boolean isAuthorizedToPostAmtOnDate() {
        return false;
    }

    public boolean isWithinInterval() {
        return false;
    }

    private BigDecimal limit;
    private int interval;
}