Java tutorial
/** * Copyright 2009 The Regents of the University of California * Licensed under the Educational Community License, Version 2.0 * (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.osedu.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing * permissions and limitations under the License. * */ package org.opencastproject.remotetest.server.resource; import org.opencastproject.remotetest.Main; import org.opencastproject.remotetest.util.TrustedHttpClient; import org.apache.http.HttpResponse; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.message.BasicNameValuePair; import java.util.ArrayList; import java.util.List; /** * Composer REST resources */ public class ComposerResources { public static final String getServiceUrl() { return Main.getBaseUrl() + "/composer/ffmpeg/"; } public static HttpResponse profiles(TrustedHttpClient client) { return client.execute(new HttpGet(getServiceUrl() + "profiles")); } public static HttpResponse encode(TrustedHttpClient client, String mediapackage, String audioSourceTrackId, String videoSourceTrackId, String profileId) throws Exception { HttpPost post = new HttpPost(getServiceUrl() + "encode"); List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>(); params.add(new BasicNameValuePair("mediapackage", mediapackage)); params.add(new BasicNameValuePair("audioSourceTrackId", audioSourceTrackId)); params.add(new BasicNameValuePair("videoSourceTrackId", videoSourceTrackId)); params.add(new BasicNameValuePair("profileId", profileId)); post.setEntity(new UrlEncodedFormEntity(params)); return client.execute(post); } public static HttpResponse receipt(TrustedHttpClient client, String id) { return client.execute(new HttpGet(getServiceUrl() + "receipt" + id)); } public static HttpResponse image(TrustedHttpClient client, String mediapackage, String time, String sourceTrackId, String profileId) throws Exception { HttpPost post = new HttpPost(getServiceUrl() + "encode"); List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>(); params.add(new BasicNameValuePair("mediapackage", mediapackage)); params.add(new BasicNameValuePair("sourceTrackId", sourceTrackId)); params.add(new BasicNameValuePair("time", time)); params.add(new BasicNameValuePair("profileId", profileId)); post.setEntity(new UrlEncodedFormEntity(params)); return client.execute(post); } }