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

com.inteligr8.alfresco.acs.AcsClientJerseyImpl Maven / Gradle / Ivy

The newest version!
/*
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version.
 *
 * 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 for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see .
 */
package com.inteligr8.alfresco.acs;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;

import com.inteligr8.rs.ClientJerseyImpl;

/**
 * This class provides a POJO & Spring-based implementation of the Jersey
 * client configured for APS.  You can use it outside of the Spring context,
 * but you will need the spring-context and spring-beans libraries in your
 * non-Spring application.
 * 
 * @author [email protected]
 */
@Component("acs.client.jersey")
@Lazy
public class AcsClientJerseyImpl extends ClientJerseyImpl {
	
	/**
	 * This constructor is for Spring and POJO use
	 */
	@Autowired
	public AcsClientJerseyImpl(AcsClientJerseyConfiguration config) {
		super(config);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy