Several well-known adages in Object-oriented design suggest that the dependency structure of a package or module must never contain cycles, or in other words, must orchestrate a Directed Acyclic Graph (DAG).
There are several pros of eliminating cycles between packages:
ClassNotFoundError, are reduced to a minimum by virtue of the toned down coupling between packages.This noncompliant code snippet features two different packages named Account and User that consist of the classes AccountHolderClass and UserClass, respectively. The class UserClass extends from AccountHolderClass as an account holder can be any kind of user or owner. AccountHolderClass depends upon a few utility methods defined in UserClass and must declare its instance. Likewise, the UserClass depends on AccountHolderClass but instead chooses to extend from it. This vicious use is one recipe for a circular dependency.
package Account;
import User.*;
class AccountHolderClass {
private UserClass uc; // uses a class defined in package User
protected synchronized void depositFunds(String username, double amount) {
// use a utility method of UserClass to check if username exists
if(uc.exists(username)) {
// deposit the amount
}
}
protected double getBalance(String accountNumber) { /* return the account balance */ }
}
package User;
import Account.*;
class UserClass extends AccountHolderClass {
protected synchronized double getUserBalance(String accountNumber) {
// use a method of AccountHolderClass to get the account balance
return getBalance(accountNumber);
}
public boolean exists(String username) { /* check whether user exists*/ }
}
|
The tight coupling between the classes in the two separate packages can be weakened by introducing an interface called BankApplication in a third package Bank. The circular dependency is eliminated by ensuring that the AccountHolderClass does not use an instance of UserClass, but instead relies on the interface by importing the Bank package. In this solution, such functionality is achieved by introducing a parameter of the interface type BankApplication to the depositFunds method. This gives the AccountHolderClass a solid contract to bank upon. Additionally, UserClass implements the interface and provides concrete implementations of the methods while at the same time, inheriting the others from AccountHolderClass.
It might appear that the interface BankApplication contains the superfluous methods depositFunds() and getBalance(). They are present so that if the subclass overrides these superclass methods, the latter retains the capability of internally invoking the subclass' methods polymorphically (like calling ba.getBalance() here, with a custom implementation of the method in UserClass).
package Bank;
public interface BankApplication {
void depositFunds(BankApplication ba, String username, double amount);
double getBalance(String accountNumber);
double getUserBalance(String accountNumber);
boolean exists(String username);
}
package Account;
import Bank.*; // import from a third package
class AccountHolderClass {
public synchronized void depositFunds(BankApplication ba, String username, double amount) {
// use a utility method of UserClass to check if username exists
if(ba.exists(username)) {
// deposit the amount
}
}
public double getBalance(String accountNumber) { /* return the account balance */ return 1.0; }
}
package User;
import Account.*; // one way dependency
import Bank.*; // import from a third package
class UserClass extends AccountHolderClass implements BankApplication {
public synchronized double getUserBalance(String accountNumber) {
// use a method of AccountHolderClass to get the account balance
return getBalance(accountNumber);
}
public boolean exists(String username) { /* check if user exists*/ return true; }
}
package Implementer;
import Bank.*;
import Account.*;
import User.*;
class BankOperations {
private BankApplication ba;
public BankOperations(BankApplication ba) {
this.ba = ba;
}
public void doUserActions() {
System.out.println(ba.exists("user"));
System.out.println(ba.getUserBalance("1111"));
}
public static void main(String[] args) {
AccountHolderClass ac = new AccountHolderClass();
ac.depositFunds(new UserClass(), "user", 1.0); // pass an interface argument
BankOperations bo = new BankOperations(new UserClass());
bo.doUserActions();
}
}
|
Cyclic dependencies between packages can lead to fragile builds. A security vulnerability in any package will easily percolate to several other packages.
Recommendation |
Severity |
Likelihood |
Remediation Cost |
Priority |
Level |
|---|---|---|---|---|---|
MSC06-J |
low |
probable |
medium |
P4 |
L3 |
\[[Martin 96|AA. Java References#Martin 96]\] \[[Knoernschild 01|AA. Java References#Knoernschild 01]\] Chapter 1: "OO Principles and Patterns, 1.2.5 Acyclic Dependencies Principle" |
MSC05-J. Make sensitive classes noncloneable 49. Miscellaneous (MSC) MSC30-J. Generate truly random numbers