/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
package DocMgmt.DocumentActivity;
import java.util.Date;
/** @stereotype moment-interval */
public class DocumentRelease {
public void makeDocumentRelease() {
}
public void complete() {
}
public void cancel() {
}
private Date date;
private Date expirationDate;
private int status;
/**
* @clientCardinality 1
* @supplierCardinality 0..*
*/
private DocumentAccess lnkUnnamed;
}
|