All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.inteligr8.alfresco.activiti.ApsPublicRestJerseyApi Maven / Gradle / Ivy

Go to download

An APS API library for building REST API clients that support both the CXF and Jersey frameworks

There is a newer version: 3.0.4
Show newest version
package com.inteligr8.alfresco.activiti;

import com.inteligr8.alfresco.activiti.api.AppDefinitionsJerseyApi;
import com.inteligr8.alfresco.activiti.api.TemplatesJerseyApi;

/**
 * This interface appends Jersey implementation specific methods to the JAX-RS
 * API of the APS Public ReST API.  This is due to a lack of multi-part in the
 * JAX-RS specification.
 * 
 * @author [email protected]
 */
public interface ApsPublicRestJerseyApi extends ApsPublicRestApi {
	
	default AppDefinitionsJerseyApi getAppDefinitionsJerseyApi() {
		return this.getApi(AppDefinitionsJerseyApi.class);
	}
    
    default TemplatesJerseyApi getTemplatesJerseyApi() {
        return this.getApi(TemplatesJerseyApi.class);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy