Package org.exoplatform.social.client.api

Examples of org.exoplatform.social.client.api.UnsupportedMethodException


  }

  @Override
  public RealtimeListAccess<RestActivity> getSpacesActivityStream(RestIdentity restIdentity, QueryParams queryParams)
                                                                                           throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here


  }

  @Override
  public RealtimeListAccess<RestActivity> getConnectionsActivityStream(RestIdentity restIdentity, QueryParams queryParams)
      throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

  @Override
  public RealtimeListAccess<RestActivity> getFeedActivityStream(
      RestIdentity restIdentity, QueryParams queryParams)
      throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

  }

  @Override
  public RestActivity get(String activityId, QueryParams queryParams)
      throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public RestActivity update(RestActivity existingInstance) throws SocialClientLibException {
    throw new UnsupportedMethodException();
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public RestComment getComment(String commentId) throws SocialClientLibException {
    throw new UnsupportedMethodException();
//    final String GET_ACTIVITY_REQUEST_URL = BASE_URL+commentId+".json";
//    try {
//      HttpResponse response = SocialHttpClientSupport.executeGet(GET_ACTIVITY_REQUEST_URL,POLICY.BASIC_AUTH);
//      int statusCode = response.getStatusLine().getStatusCode();
//      if(statusCode != ServiceException.HTTP_OK){
View Full Code Here

public class IdentityServiceImplV1Alpha1 extends ServiceBase<RestIdentity, IdentityService<RestIdentity>> implements IdentityService<RestIdentity> {
  private static final String BASE_URL = buildCommonRestPathFromContext(true);

  @Override
  public RestIdentity create(RestIdentity newInstance) throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

    }
  }

  @Override
  public RestIdentity update(RestIdentity existingInstance) throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

    throw new UnsupportedMethodException("Not Supported Yet.");
  }

  @Override
  public RestIdentity delete(RestIdentity existingInstance) throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

    return getIdentity(provider, remoteId).getId();
  }

  @Override
  public RestIdentity create(RestIdentity newInstance) throws SocialClientLibException {
    throw new UnsupportedMethodException("Not Supported Yet.");
  }
View Full Code Here

TOP

Related Classes of org.exoplatform.social.client.api.UnsupportedMethodException

Copyright © 2018 www.massapicom. 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.