Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
nameblue

This section describes how an audit trail implicit viewing access entity can be created

What does this section cover?

Table of Contents

...

In order for an entity to be considered as implicit, it has to meet the following conditions:

1. Data Object Class

The entity's DO class must:

  1. Implement ICRMDOImplicitAccessibleEntity interface
  2. Implement interface's getMasterDO() method. Note that getMasterDO() method must always return a data object whose class:
    1.  Extends CRMDOMasterEntity and 
    2. Implements ICRMDOExplicitAccessibleEntity
Expand
titleExample 1

In this case, because CRMDOAccounts receivable CRMDOAccountReceivable extends CRMDOMasterEntity and implements ICRMDOExplicitAccessibleEntity, it accountReceivable can be returned by getMasterDO() method.

Code Block
languagejava
titleCUSTOMCRMDORental
collapsetrue
public class CUSTOMCRMDORental extends CRMDO implements ICRMDOImplicitAccessibleEntity {
 
	private CUSTOMCRMDORentalType type;
	private CUSTOMRentalState state;
	private CRMDOAccountReceivable accountReceivable;
	private Date effectiveDate;
	private Date expirationDate;
	private CRMDOPrivacyLevel privacyLevel;
	
	private Set<CUSTOMCRMDORentalItem> items;
	public CUSTOMRentalState getState() {
		return state;
	}
	public void setState(CUSTOMRentalState state) {
		setChange("state", this.state, state);
		this.state = state;
	}
	public CRMDOAccountReceivable getAccountReceivable() {
		return accountReceivable;
	}
	public void setAccountReceivable(CRMDOAccountReceivable accountReceivable) {
		setChange("accountReceivable", this.accountReceivable, accountReceivable);
		this.accountReceivable = accountReceivable;
	}
	public Date getEffectiveDate() {
		return effectiveDate;
	}
	public void setEffectiveDate(Date effectiveDate) {
		setChange("effectiveDate", this.effectiveDate, effectiveDate);
		this.effectiveDate = effectiveDate;
	}
	public Date getExpirationDate() {
		return expirationDate;
	}
	public void setExpirationDate(Date expirationDate) {
		setChange("expirationDate", this.expirationDate, expirationDate);
		this.expirationDate = expirationDate;
	}
	public Set<CUSTOMCRMDORentalItem> getItems() {
		return items;
	}
	public void setItems(Set<CUSTOMCRMDORentalItem> items) {
		setChange("items", this.items, items);
		this.items = items;
	}
	public CRMDOPrivacyLevel getPrivacyLevel() {
		return privacyLevel;
	}
	public void setPrivacyLevel(CRMDOPrivacyLevel privacyLevel) {
		setChange("privacyLevel", this.privacyLevel, privacyLevel);
		this.privacyLevel = privacyLevel;
	}
	public CUSTOMCRMDORentalType getType() {
		return type;
	}
	public void setType(CUSTOMCRMDORentalType type) {
		setChange("type", this.type, type);
		this.type = type;
	}
	@Override
	public ICRMDOExplicitAccessibleEntity getMasterDO() {
		return this.accountReceivable;
	}
}

...