FileDocCategorySizeDatePackage
Applicant.javaAPI DocExample910Thu Feb 17 20:01:06 GMT 2000RelMgmt.PersonRole

Applicant.java

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

package RelMgmt.PersonRole;

import java.util.Date;
import java.math.BigDecimal;

/** @stereotype role */
public class Applicant extends RelMgmt.Party.PersonRole {
    public Date determineDateFirstAvailableForInterval() {
        return new Date(0);
    }

    public boolean isQualifiedForJob() {
        return false;
    }

    public boolean isQualifiedForJobAndAvailableForInterval() {
        return false;
    }

    /**
     * @supplierCardinality 0..*
     * @clientCardinality 0..1
     */
    private HumanResMgmt.SkillAcquisition.SkillRating lnkUnnamed;
    private int intervalAvailable;
    private BigDecimal salaryExpectation;
}