Example of a class implementing the
- By William Louth
- November 15, 2000
ENTERPRISE JAVA
Bridging the Gap Between Java Clients and EJBs Using XML
William Louth
Listing 4. Example of a class implementing the Name interface.
public class TrunkDetailsIconName implements Name {
private String BEARER = "bearer";
private String TRUNK = "trunk";
public String get(Object obj) {
TrunkDetails d = (TrunkDetails)obj;
return ((d.isBearer()) ? BEARER : TRUNK);
}
}