In a typical IOC scenario, the container creates all the objects, wires them together by setting the necessary properties, and determines when methods will be invoked. The three implementation pattern types for IOC are:
Type 1 Services need to implement a dedicated interface through which they are provided with an object from which they can look up dependencies (for example, additional needed services).
Type 2 Dependencies are assigned through JavaBeans properties (for example, setter methods).
Type 3 Dependencies are provided as constructor parameters and are not exposed as JavaBeans properties.

/**
* Creation date: (7/19/2002 2:50:45 PM)
*
* @author: Cedric Walter
*/
public interface AuthentificationIF {
public boolean Authentificate(HttpServletRequest req, HttpServletResponse resp); public boolean hasAutorisation(HttpServletRequest req, HttpServletResponse resp);}
public abstract class AuthentificationA implements AuthentificationIF {
/**
* AuthentificationA constructor comment.
*/
public AuthentificationA() {
super(); }
/**
* Authentificate method comment.
*/
public abstract boolean Authentificate(
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp);
}
abstract class AuthentificationFactoryA {
private static java.util.Map factories = new java.util.HashMap(); /**
* ComputeFactory constructor comment.
*/
public AuthentificationFactoryA() {
super(); }
public static void addFactory(String id, AuthentificationFactoryA f) {
factories.put(id, f); }
public static final AuthentificationIF createAuthentification(String id)
throws FactoryCreationException {
if (!factories.containsKey(id)) {
try {
// Load dynamically
Class.forName(id);
}
catch (ClassNotFoundException e) {
throw new FactoryCreationException(id);
}
// verify that it has been stored
if (!factories.containsKey(id))
throw new FactoryCreationException(id);
}
return ((AuthentificationFactoryA) factories.get(id)).getAuthentification();
}
protected abstract AuthentificationIF getAuthentification();}
/**
* concrete class of the abstract factory
*/
public class MyAuthentificationFactory extends AuthentificationFactoryA {
public MyAuthentificationFactory() {
super(); }
/**
* not use since it is subclass
*/
protected AuthentificationIF getAuthentification() {
return null; }
}
/**
* @author: Cedric Walter
*/
public class NimiusAuthentification extends AuthentificationA implements
AuthentificationIF {
private static class Factory extends AuthentificationFactoryA {
protected AuthentificationIF getAuthentification() {
return new NimiusAuthentification(); }
}
static {
AuthentificationFactoryA.addFactory("com.waltercedric.gof.pattern.factory.NimiusAuthentification", new NimiusAuthentification.Factory()); }
/**
* Local constructor comment.
*/
public NimiusAuthentification() {
super(); }
/**
* Authenficate method comment.
*/
public boolean Authentificate(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp)
{
//do some stuff
return true; }
public boolean hasAutorisation(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp)
{
//do some stuff
return true; }
}
/**
* @author: Cedric Walter
*/
public class NoAuthentification extends AuthentificationA implements
AuthentificationIF {
private static class Factory extends AuthentificationFactoryA {
protected AuthentificationIF getAuthentification() {
return new NoAuthentification(); }
}
static {
AuthentificationFactoryA.addFactory( "com.waltercedric.gof.pattern.factory.NoAuthentification", new NoAuthentification.Factory()); }
/**
* Local constructor comment.
*/
public NoAuthentification() {
super(); }
/**
* Authenficate method comment.
*/
public boolean Authentificate(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp) {
return true; }
/**
* hasAutorisation method comment.
*/
public boolean hasAutorisation(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp) {
return true; }
}
/**
* @author: Cedric Walter
*/
public class ObtreeAuthentification extends AuthentificationA implements
AuthentificationIF {
private static class Factory extends AuthentificationFactoryA {
protected AuthentificationIF getAuthentification() {
return new ObtreeAuthentification(); }
}
static {
AuthentificationFactoryA.addFactory( "com.waltercedric.gof.pattern.factory.ObtreeAuthentification", new ObtreeAuthentification.Factory()); }
/**
* Local constructor comment.
*/
public ObtreeAuthentification() {
super(); }
/**
* Authenficate method comment.
*/
public boolean Authentificate(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp) {
return true; }
/**
* hasAutorisation method comment.
*/
public boolean hasAutorisation(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse resp) {
return true; }
}

/**
* Type Safe Enumeration: Colors elements: Red, Blue, Green, Yellow, White
*/
public final class Colors implements Comparable, Serializable {
/**
* The map of enumeration elements to names.
*/
private static HashMap nameLookup = new HashMap(5);
/**
* The array of enumeration elements.
*/
private static Colors[] ordinalLookup = new Colors[5];
/**
* The "Red" enumeration element
*/
public static final Colors Red = new Colors("Red", 0);
/**
* The "Blue" enumeration element
*/
public static final Colors Blue = new Colors("Blue", 1);
/**
* The "Green" enumeration element
*/
public static final Colors Green = new Colors("Green", 2);
/**
* The "Yellow" enumeration element
*/
public static final Colors Yellow = new Colors("Yellow", 3);
/**
* The "White" enumeration element
*/
public static final Colors White = new Colors("White", 4);
/**
* The string representation of the enumeration.
*/
private final String printName;
/**
* The ordinal value of the enumeration used for comparison purposes.
*/
private final int ordinal;
/**
* Create an enumeration element. Prevent instances of this class from being
* created externally.
*
* @param name
* the name of the enumeration element
* @param position
* the ordinal position of the enumeration element
*/
private Colors(String name, int position) {
this.ordinal = position;
this.printName = name;
ordinalLookup[position] = this;
nameLookup.put(name, this);
}
/**
* Compare two enumeration elements
*
* @param arg
* the object to compare this to
* @return the difference between the ordinal values
* @see java.lang.Comparable#compareTo(Object)
*/
public int compareTo(Object arg) {
return this.ordinal - ((Colors) arg).ordinal;
}
/**
* Return the string representation of the enumeration.
*
* @return the name of the enumeration element
*/
public String toString() {
return printName;
}
/**
* Resolve the enumeration element.
*
* @return the resolved enumeration element
* @throws ObjectStreamException
* if the enumeration element could not be resolved.
*/
private Object readResolve() throws ObjectStreamException {
return ordinalLookup[ordinal];
}
/**
* Return the first enumeration element
*
* @return the first enumeration element
*/
public static Colors first() {
return ordinalLookup[0];
}
/**
* Return the last enumeration element
*
* @return the last enumeration element
*/
public static Colors last() {
return ordinalLookup[ordinalLookup.length - 1];
}
/**
* Return the enumeration element preceding this element
*
* @return the enumeration element preceding this element
*/
public Colors predecessor() {
return (this == first()) ? null : ordinalLookup[ordinal - 1];
}
/**
* Return the enumeration element following this element
*
* @return the enumeration element following this element
*/
public Colors successor() {
return (this == last()) ? null : ordinalLookup[ordinal + 1];
}
/**
* Return the enumeration element with the given name
*
* @param name
* the name of the enumeration element to find
* @return the named enumeration element
*/
public static Colors valueOf(String name) {
return (Colors) nameLookup.get(name);
}
}

When is a singleton not a singleton? (Javaworld)
/**
* Represents a singleton.
*/
public class Singleton {
/**
* Holds the singleton instance.
*/
private static Singleton instance;
/**
* constructor must be private to avoid automatic creation of default
* constructor by the compiler
*
*/
private Singleton() {
super();
}
/**
* Returns the singleton instance.
*
* synchronized to prevent race problem
*
* @return the singleton instance
*/
public static synchronized Singleton getInstance() {
if (instance == null) {
instance = new Singleton();
}
return instance;
}
}

/** * The interfaceProductdefines interface to create parts of the * Product. */ public interface Builder { /** * Construct part of the complex Product. */ public void buildPart(); /** * Construct the Product. * * @return the constructed product */ public Product getProduct(); } /** * TheConcreteBuilderis the product of a concrete builder. * */ public class ConcreteBuilder implements Product { } /** * TheConcreteBuilderBuildercreates and assembles parts of * the Product. * */ public class ConcreteBuilderBuilder implements Builder { /** * Reference to Product being constructed */ private ConcreteBuilder concreteBuilder; /** * Construct part of the complex Product. */ public void buildPart() { // put your code here } /** * Construct the Product. * * @return the constructed product */ public Product getProduct() { return concreteBuilder; } } /** * TheConcreteBuilderClientinitialized the Director with a * Concrete Bulder to create the Product and gets result from the Builder. * */ public class ConcreteBuilderClient { /** * Use the Builder to create the Product. */ public void createProduct() { ConcreteBuilderBuilder builder = new ConcreteBuilderBuilder(); new Director(builder).construct(); Product product = builder.getProduct(); } } /** * The classDirectormanages Product creation using Builder. */ public class Director { /** * Reference to Builder currently used */ private Builder builder; /** * Create a newDirectorinstance. * * @param builder the builder which will create the product */ public Director(Builder builder) { this.builder = builder; } /** * Construct the Product using the Builder. */ public void construct() { builder.buildPart(); } } /** * The interfaceProductdefines a complex object that is * constructed part-by-part with Builder. */ public interface Product { }
Privacy Statement | Copyright Notice | Licenses
© 1999-2012 Waltercedric.com. Designed by Cédric Walter. Sitemap
Reproduction without explicit permission is prohibited. All Rights Reserved.
Disclaimer: The editor(s) reserve the right to edit any comments that are found to be abusive, offensive, contain profanity, serves as spam, is largely self-promotional, or displaying attempts to harbour irrelevant text links for any purpose.