Package org.exoplatform.social.client.core

Source Code of org.exoplatform.social.client.core.ClientServiceFactoryImplV1Alpha3

/*
* Copyright (C) 2003-2011 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.exoplatform.social.client.core;

import org.exoplatform.social.client.api.ClientServiceFactory;
import org.exoplatform.social.client.api.service.ActivityService;
import org.exoplatform.social.client.api.service.IdentityService;
import org.exoplatform.social.client.api.service.VersionService;
import org.exoplatform.social.client.core.service.ActivityServiceImplV1Alpha3;
import org.exoplatform.social.client.core.service.IdentityServiceImplV1Alpha3;
import org.exoplatform.social.client.core.service.VersionServiceImpl;

/**
* Implementation for {@link org.exoplatform.social.client.api.ClientServiceFactory} for Social Rest APIs v1-alpha3
*
* @author <a href="http://hoatle.net">hoatle (hoatlevan at gmail dot com)</a>
* @since Oct 7, 2011
* @since 1.0.0-alpha2
*/
public class ClientServiceFactoryImplV1Alpha3 implements ClientServiceFactory {

  private VersionService versionService;
  private ActivityService activityService;
  private IdentityService identityService;

  /**
   * {@inheritDoc}
   */
  @Override
  public VersionService createVersionService() {
    if (versionService == null) {
      versionService = new VersionServiceImpl();
    }
    return versionService;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public ActivityService createActivityService() {
    if (activityService == null) {
      activityService = new ActivityServiceImplV1Alpha3();
    }
    return activityService;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public IdentityService createIdentityService() {
    if (identityService == null) {
      identityService = new IdentityServiceImplV1Alpha3();
    }
    return identityService;
  }

}
TOP

Related Classes of org.exoplatform.social.client.core.ClientServiceFactoryImplV1Alpha3

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.