Skip to content

Commit

Permalink
added @author tag to java files missing it; updated checkstyle dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ksclarke authored and Andrew Woods committed May 5, 2014
1 parent d53356e commit d82a27f
Show file tree
Hide file tree
Showing 115 changed files with 373 additions and 123 deletions.
16 changes: 9 additions & 7 deletions fcrepo-audit/src/main/java/org/fcrepo/audit/package-info.java
Expand Up @@ -13,12 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
This package provides functionality for auditing Fedora events. An <code> Auditor</code> records auditable Fedora
events.
Currently the implementation registers itself to Google Guava
<a href="http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/eventbus/EventBus.html">EventBus</a>
and uses Logback framework.
* This package provides functionality for auditing Fedora events. An <code> Auditor</code> records auditable Fedora
* events.
* Currently the implementation registers itself to Google Guava <a
* href="http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/eventbus/EventBus.html">EventBus</a>
* and uses Logback framework.
*
* @author eddies
*/

package org.fcrepo.audit;
package org.fcrepo.audit;
Expand Up @@ -42,6 +42,9 @@

/**
* Dublin Core output controller
*
* @author cbeer
* @author barmintor
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -22,6 +22,8 @@

/**
* Interface for retrieving a Dublin Core XML output from a node
*
* @author cbeer
*/
public interface DCGenerator {

Expand Down
Expand Up @@ -32,6 +32,8 @@
/**
* Derive a Dublin Core document from the JCR properties within the DC
* namespace.
*
* @author cbeer
*/
public class JcrPropertiesGenerator implements DCGenerator {

Expand Down
Expand Up @@ -31,6 +31,8 @@
/**
* Retrieve a Dublin Core document from a well-known datastream
* ( e.g. "DC")
*
* @author cbeer
*/
public class WellKnownDatastreamGenerator implements DCGenerator {

Expand Down
Expand Up @@ -27,6 +27,8 @@

/**
* If all other DC generators fail, just publish an empty XML document
*
* @author cbeer
*/
public class WorstCaseGenerator implements DCGenerator {

Expand Down
Expand Up @@ -13,8 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
This package provides implementation for Dublin Core reading/writing functionality.
* This package provides implementation for Dublin Core reading/writing functionality.
*
* @author osmandin
*/

package org.fcrepo.generator.dublincore;
package org.fcrepo.generator.dublincore;
Expand Up @@ -13,8 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
This package provides RESTful interface for Dublin Core generation.
* This package provides RESTful interface for Dublin Core generation.
*
* @author osmandin
*/

package org.fcrepo.generator;
package org.fcrepo.generator;
Expand Up @@ -88,6 +88,8 @@
/**
* Controller for manipulating binary streams in larger batches
* by using multipart requests and responses
*
* @author cbeer
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -58,6 +58,9 @@
/**
* Content controller for adding, reading, and manipulating
* binary streams
*
* @author awoods
* @author gregjan
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -46,6 +46,8 @@

/**
* Serialization for nodes
*
* @author awoods
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -125,6 +125,8 @@

/**
* CRUD operations on Fedora Nodes
*
* @author cbeer
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -48,6 +48,9 @@

/**
* Transactions over REST
*
* @author awoods
* @author gregjan
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -73,6 +73,8 @@

/**
* Endpoint for managing versions of nodes
*
* @author awoods
*/
@Component
@Scope("prototype")
Expand Down
26 changes: 14 additions & 12 deletions fcrepo-http-api/src/main/java/org/fcrepo/http/api/package-info.java
Expand Up @@ -13,16 +13,18 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
This package provides a RESTful API for several content management and
core repository services.
<ul>
<li>Fixity Service</li>
<li>Contract for repository management services (e.g. backup/restore)</li>
<li>Sitemap</li>
<li>Controllers for manipulating object and data streams</li>
</ul>
*/

package org.fcrepo.http.api;
/**
* This package provides a RESTful API for several content management and
* core repository services.
*
* <ul>
* <li>Fixity Service</li>
* <li>Contract for repository management services (e.g. backup/restore)</li>
* <li>Sitemap</li>
* <li>Controllers for manipulating object and data streams</li>
* </ul>
*
* @author osmandin
*/
package org.fcrepo.http.api;
Expand Up @@ -51,6 +51,8 @@
/**
* Utility endpoint for running SPARQL Update queries on any object in the
* repository
*
* @author awoods
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -39,6 +39,8 @@

/**
* Repository-wide backup endpoint
*
* @author cbeer
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -28,6 +28,9 @@
* This stub is a hack to mount the functionality of FedoraExport at the root of
* this webapp. Without it, the globbing from FedoraNodes would own this path
* instead.
*
* @author awoods
* @author daines
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -28,6 +28,9 @@
* This stub is a hack to mount the functionality of FedoraIdentifiers at the
* root of this webapp. Without it, the globbing from FedoraNodes would own this
* path instead.
*
* @author awoods
* @author cbeer
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -28,6 +28,8 @@
* This stub is a hack to mount the functionality of FedoraImport at the root of
* this webapp. Without it, the globbing from FedoraNodes would own this path
* instead.
*
* @author cbeer
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -44,6 +44,8 @@

/**
* Restore a backup of the repository
*
* @author cbeer
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -28,6 +28,8 @@
* This stub is a hack to mount the functionality of FedoraTransactions at the
* root of this webapp. Without it, the globbing from FedoraNodes would own this
* path instead.
*
* @author awoods
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -62,6 +62,10 @@
/**
* This class exposes the JCR workspace functionality. It may be
* too JCR-y in the long run, but this lets us exercise the functionality.
*
* @author awoods
* @author cbeer
* @author ajs6f
*/
@Component
@Scope("prototype")
Expand Down
Expand Up @@ -13,9 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
This package provides functionality for core repository management.

*/
/**
* This package provides functionality for core repository management.
*
* @author osmandin
*/

package org.fcrepo.http.api.repository;
package org.fcrepo.http.api.repository;
Expand Up @@ -22,6 +22,8 @@
/**
* JAX-RS provider for taking a dataset graph and returning some nice looking
* HTML
*
* @author awoods
*/
@Component
public class HtmlProvider extends BaseHtmlProvider {
Expand Down
Expand Up @@ -21,6 +21,8 @@
/**
* JAX-RS provider for taking an {@link RdfStream} and returning some nice looking
* HTML
*
* @author ajs6f
*/
@Component
public class StreamingHtmlProvider extends StreamingBaseHtmlProvider{
Expand Down
Expand Up @@ -59,6 +59,8 @@

/**
* Inject our HTTP API methods into the object graphs
*
* @author awoods
*/
@Component
public class HttpApiResources implements UriAwareResourceModelFactory {
Expand Down
Expand Up @@ -37,6 +37,8 @@

/**
* Utility for injecting HTTP-contextual data into a Dataset
*
* @author awoods
*/
@Component
public class HttpTripleUtil implements ApplicationContextAware {
Expand Down
Expand Up @@ -24,6 +24,8 @@
/**
* Comparator to sort a list of Quads by subject, predicate, and object
* to ensure a consistent order for human-readable output
*
* @author awoods
*/
public class QuadOrdering implements Comparator<Quad> {

Expand Down
Expand Up @@ -27,6 +27,8 @@
/**
* Helper to generate an RDF model for a FedoraResourceImpl that (likely) creates
* relations from our resource to other HTTP components
*
* @author awoods
*/
public interface UriAwareResourceModelFactory {

Expand Down
Expand Up @@ -24,6 +24,8 @@

/**
* COPY HTTP method
*
* @author cbeer
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Expand Up @@ -24,6 +24,8 @@

/**
* MOVE HTTP method
*
* @author cbeer
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Expand Up @@ -26,6 +26,8 @@

/**
* PATCH HTTP method
*
* @author awoods
*/
@Target({METHOD})
@Retention(RUNTIME)
Expand Down
Expand Up @@ -25,6 +25,8 @@

/**
* Range header parsing logic
*
* @author awoods
*/
public class Range {

Expand Down
Expand Up @@ -13,8 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
Annotations for working with
{@link org.fcrepo.http.api.FedoraNodes FedoraNodes}.*/

package org.fcrepo.http.commons.domain;
/**
* Annotations for working with {@link org.fcrepo.http.api.FedoraNodes FedoraNodes}.
*
* @author osmandin
*/
package org.fcrepo.http.commons.domain;
Expand Up @@ -29,6 +29,9 @@

/**
* Translate JCR AccessControlExceptions into HTTP 403 Forbidden errors
*
* @author awoods
* @author gregjan
*/
@Provider
public class AccessControlExceptionMapper implements
Expand Down

0 comments on commit d82a27f

Please sign in to comment.