Package com.ibm.xsp.opensocial

Source Code of com.ibm.xsp.opensocial.DefaultContainerExtPoint

package com.ibm.xsp.opensocial;

import com.ibm.sbt.opensocial.domino.config.DefaultContainerConfig;
import com.ibm.sbt.opensocial.domino.config.OpenSocialContainerConfig;
import com.ibm.sbt.opensocial.domino.container.ContainerExtPoint;

public abstract class DefaultContainerExtPoint implements ContainerExtPoint {
  private OpenSocialContainerConfig containerConfig;
 
  public DefaultContainerExtPoint() {
    this.containerConfig = new DefaultContainerConfig();
  }

  @Override
  public OpenSocialContainerConfig getContainerConfig() {
    return this.containerConfig;
  }

}
TOP

Related Classes of com.ibm.xsp.opensocial.DefaultContainerExtPoint

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.