com.siemens.sw360.moderation.TestModerationClient.java Source code

Java tutorial

Introduction

Here is the source code for com.siemens.sw360.moderation.TestModerationClient.java

Source

/*
 * Copyright Siemens AG, 2013-2015. Part of the SW360 Portal Project.
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License Version 2.0 as published by the
 * Free Software Foundation with classpath exception.
 *
 * 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 General Public License version 2.0 for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program (please see the COPYING file); if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

package com.siemens.sw360.moderation;

import com.siemens.sw360.datahandler.thrift.moderation.ModerationRequest;
import com.siemens.sw360.datahandler.thrift.moderation.ModerationService;
import com.siemens.sw360.datahandler.thrift.users.User;
import org.apache.thrift.TException;
import org.apache.thrift.protocol.TCompactProtocol;
import org.apache.thrift.protocol.TProtocol;
import org.apache.thrift.transport.THttpClient;

import java.io.IOException;
import java.util.List;

/**
 * Small client for testing a service
 * author: Gerrit.Grenzebach@tngtech.com
 */
public class TestModerationClient {

    public static void main(String[] args) throws TException, IOException {
        THttpClient thriftClient = new THttpClient("http://127.0.0.1:8080//moderation/thrift");
        TProtocol protocol = new TCompactProtocol(thriftClient);
        ModerationService.Iface client = new ModerationService.Client(protocol);

        List<ModerationRequest> requestsByModerator = client.getRequestsByModerator(
                new User().setId("").setEmail("cedric.bodet@tngtech.com").setDepartment("BB"));

        System.out
                .println("Fetched " + requestsByModerator.size() + " moderation requests from moderation service");

    }

}