GtdBizManager.java :  » UnTagged » gtdsys » com » kingsoft » gtdsys » biz » impl » Android Open Source

Android Open Source » UnTagged » gtdsys 
gtdsys » com » kingsoft » gtdsys » biz » impl » GtdBizManager.java
/**
 * fileName  :  GtdBizManager.java
 * 
 * Author  :  Zhu Chongliang
 * 
 * Date    :  2010-09-24 12:59
 */
package com.kingsoft.gtdsys.biz.impl;

import com.kingsoft.gtdsys.biz.IGtdCollection;
import com.kingsoft.gtdsys.biz.IGtdCoordination;
import com.kingsoft.gtdsys.biz.IGtdOrganization;

public class GtdBizManager {
  
  private static GtdCollection   collectionApp   = null;
  private static GtdCoordination  coordinationApp  = null;
  private static GtdOrganization  organizationApp  = null;
  
  public static IGtdCollection getCollection() {
    if ( null == collectionApp ) {
      collectionApp = new GtdCollection();
    }
    
    return collectionApp;
  }
  
  public static IGtdCoordination getCoordination() {
    if ( null == coordinationApp ) {
      coordinationApp = new GtdCoordination();
    }
    
    return coordinationApp;
  }
  
  public static IGtdOrganization getOrganization() {
    if ( null == organizationApp ) {
      organizationApp = new GtdOrganization();
    }
    
    return organizationApp;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.