Package com.ibm.sbt.services.client.connections.profiles.serializers

Examples of com.ibm.sbt.services.client.connections.profiles.serializers.ColleagueConnectionSerializer


  /*
   * This method is used by ProfileService wrapper methods to construct request body for Add operations
   * @return String
   */
  protected String constructAcceptInviteRequestBody(ColleagueConnection connectionEntry, String action) {
    ColleagueConnectionSerializer serializer = new ColleagueConnectionSerializer(connectionEntry);
    return serializer.acceptInvitePayload();
  }
View Full Code Here


   * @throws ProfileServiceException
   */
  protected String constructSendInviteRequestBody(String inviteMsg) throws ClientServicesException {
    ColleagueConnection colleagueConnection = new ColleagueConnection(this, null);
    colleagueConnection.setContent(inviteMsg);
    ColleagueConnectionSerializer serializer = new ColleagueConnectionSerializer(colleagueConnection);
    return serializer.sendInvitePayload();
  }
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.client.connections.profiles.serializers.ColleagueConnectionSerializer

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.