added javadoc
This commit is contained in:
13
pom.xml
13
pom.xml
@@ -148,6 +148,19 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>javadoc</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals><goal>jar</goal></goals>
|
||||||
|
<configuration>
|
||||||
|
<show>public</show>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
@@ -7,6 +7,14 @@ import org.springframework.context.annotation.Configuration;
|
|||||||
import com.inteligr8.rs.ClientCxfConfiguration;
|
import com.inteligr8.rs.ClientCxfConfiguration;
|
||||||
import com.inteligr8.rs.ClientJerseyConfiguration;
|
import com.inteligr8.rs.ClientJerseyConfiguration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class provides a POJO & Spring-based implementation of the
|
||||||
|
* ClientConfiguration interface. 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 brian@inteligr8.com
|
||||||
|
*/
|
||||||
@Configuration
|
@Configuration
|
||||||
@ComponentScan
|
@ComponentScan
|
||||||
public class AcsClientConfiguration implements ClientCxfConfiguration, ClientJerseyConfiguration {
|
public class AcsClientConfiguration implements ClientCxfConfiguration, ClientJerseyConfiguration {
|
||||||
|
@@ -8,7 +8,12 @@ import com.inteligr8.rs.ClientCxfConfiguration;
|
|||||||
import com.inteligr8.rs.ClientCxfImpl;
|
import com.inteligr8.rs.ClientCxfImpl;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configured JAX-RS Client & WebTarget for ACS & CXF
|
* This class provides a POJO & Spring-based implementation of the Apache
|
||||||
|
* CXF client. 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 brian@inteligr8.com
|
||||||
*/
|
*/
|
||||||
@Component("acs.client.cxf")
|
@Component("acs.client.cxf")
|
||||||
@Lazy
|
@Lazy
|
||||||
|
@@ -8,7 +8,12 @@ import com.inteligr8.rs.ClientJerseyConfiguration;
|
|||||||
import com.inteligr8.rs.ClientJerseyImpl;
|
import com.inteligr8.rs.ClientJerseyImpl;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configured JAX-RS Client & WebTarget for ACS & Jersey
|
* This class provides a POJO & Spring-based implementation of the Apache
|
||||||
|
* CXF client. 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 brian@inteligr8.com
|
||||||
*/
|
*/
|
||||||
@Component("acs.client.jersey")
|
@Component("acs.client.jersey")
|
||||||
@Lazy
|
@Lazy
|
||||||
|
@@ -31,7 +31,10 @@ import com.inteligr8.rs.Client;
|
|||||||
import com.inteligr8.rs.ClientConfiguration;
|
import com.inteligr8.rs.ClientConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Alfresco Content Services Spring-ready API
|
* This class serves as the base implementation for the JAX-RS API for the ACS
|
||||||
|
* Public ReST API.
|
||||||
|
*
|
||||||
|
* @author brian@inteligr8.com
|
||||||
*/
|
*/
|
||||||
public abstract class AcsPublicRestApi {
|
public abstract class AcsPublicRestApi {
|
||||||
|
|
||||||
|
@@ -10,7 +10,10 @@ import com.inteligr8.rs.Client;
|
|||||||
import com.inteligr8.rs.ClientConfiguration;
|
import com.inteligr8.rs.ClientConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Alfresco Content Services Spring-ready API for CXF
|
* This class provides the Apache CXF client to the JAX-RS API for the ACS
|
||||||
|
* Public ReST API. It also provides extension API helpers.
|
||||||
|
*
|
||||||
|
* @author brian@inteligr8.com
|
||||||
*/
|
*/
|
||||||
@Component("acs.api.cxf")
|
@Component("acs.api.cxf")
|
||||||
@Lazy
|
@Lazy
|
||||||
|
@@ -10,7 +10,10 @@ import com.inteligr8.rs.Client;
|
|||||||
import com.inteligr8.rs.ClientConfiguration;
|
import com.inteligr8.rs.ClientConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Alfresco Content Services Spring-ready API for Jersey
|
* This class provides the Jersey client to the JAX-RS API for the ACS Public
|
||||||
|
* ReST API. It also provides extension API helpers.
|
||||||
|
*
|
||||||
|
* @author brian@inteligr8.com
|
||||||
*/
|
*/
|
||||||
@Component("acs.api.jersey")
|
@Component("acs.api.jersey")
|
||||||
@Lazy
|
@Lazy
|
||||||
|
Reference in New Issue
Block a user