org.lockss.laaws.rs.api.ArtifactsApiController Maven / Gradle / Ivy
package org.lockss.laaws.rs.api;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ArtifactsApiController implements ArtifactsApi {
private final ArtifactsApiDelegate delegate;
@org.springframework.beans.factory.annotation.Autowired
public ArtifactsApiController(ArtifactsApiDelegate delegate) {
this.delegate = delegate;
}
@Override
public ArtifactsApiDelegate getDelegate() {
return delegate;
}
}