NIFI-584 remove javadoc author tags.

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
Sean Busbey 2015-05-06 00:56:44 -07:00 committed by Aldrin Piri
parent e1aa4890a0
commit c12778f17f
224 changed files with 0 additions and 224 deletions

View File

@ -38,7 +38,6 @@ import java.lang.annotation.Target;
* eligible to be scheduled in Event-Driven mode.
* </p>
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -36,7 +36,6 @@ import java.lang.annotation.Target;
* effects on external services which could not be rolled back and thus all the
* processes could be safely repeated (implied idempotent behavior).
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -41,7 +41,6 @@ import java.lang.annotation.Target;
* ProcessSession.commit() to ensure data is persisted before deleting the data
* from a remote source.
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -29,7 +29,6 @@ import java.lang.annotation.Target;
* concurrent execution of its onTrigger() method. By default, Processors are
* assumed to be safe for concurrent execution.
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -30,7 +30,6 @@ import java.lang.annotation.Target;
* default, Processors are triggered only when all destinations report that they
* have available space (i.e., none of the outgoing Connections is full).
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -32,7 +32,6 @@ import java.lang.annotation.Target;
* only be triggered if they have work in their queue or they present this
* annotation.
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -30,7 +30,6 @@ import java.lang.annotation.Target;
* description to be provided. This description can be provided to a user in
* logs, UI, etc.
*
* @author none
*/
@Documented
@Target({ElementType.TYPE})

View File

@ -43,7 +43,6 @@ import java.lang.annotation.Target;
* component will not be added to the flow.
* </p>
*
* @author none
*/
@Documented
@Target({ElementType.METHOD})

View File

@ -46,7 +46,6 @@ import org.apache.nifi.processor.ProcessContext;
* of type {@link ProcessContext}.
* </p>
*
* @author none
*/
@Documented
@Target({ElementType.METHOD})

View File

@ -58,7 +58,6 @@ import java.lang.annotation.Target;
* will continue until the method succeeds, and the component will then be
* scheduled to run after this method return successfully.
*
* @author none
*/
@Documented
@Target({ElementType.METHOD})

View File

@ -44,7 +44,6 @@ import org.apache.nifi.processor.ProcessContext;
* {@link ProcessContext} if the component is a Processor.
* </p>
*
* @author none
*/
@Documented
@Target({ElementType.METHOD})

View File

@ -57,7 +57,6 @@ import org.apache.nifi.processor.ProcessContext;
* component is a Processor.
* </p>
*
* @author none
*/
@Documented
@Target({ElementType.METHOD})

View File

@ -26,7 +26,6 @@ import java.lang.annotation.Target;
/**
*
*
* @author none
*/
@Documented
@Target({ElementType.FIELD, ElementType.METHOD})

View File

@ -19,7 +19,6 @@ package org.apache.nifi.authorization.exception;
/**
* Represents the exceptional case when an AuthorityProvider fails instantiated.
*
* @author unattributed
*/
public class ProviderCreationException extends RuntimeException {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.authorization.exception;
/**
* Represents the exceptional case when an AuthorityProvider fails destruction.
*
* @author unattributed
*/
public class ProviderDestructionException extends RuntimeException {

View File

@ -22,7 +22,6 @@ import java.util.Objects;
*
* Immutable - thread safe
*
* @author unattributed
*/
public class ValidationResult {

View File

@ -18,7 +18,6 @@ package org.apache.nifi.components;
/**
*
* @author unattributed
*/
public interface Validator {

View File

@ -30,7 +30,6 @@ import java.lang.annotation.Target;
* arguments or a single argument of type
* {@link nifi.controller.ConfigurationContext ConfigurationContext}.
*
* @author none
*
* @deprecated This annotation has been replaced by those in the
* {@link org.apache.nifi.annotation.lifecycle} package.

View File

@ -18,7 +18,6 @@ package org.apache.nifi.controller.repository;
/**
*
* @author none
*/
public enum RepositoryRecordType {

View File

@ -25,7 +25,6 @@ package org.apache.nifi.controller.repository.claim;
* <p>
* Must be thread safe</p>
*
* @author none
*/
public interface ContentClaim extends Comparable<ContentClaim> {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.controller.status;
/**
* @author unattributed
*/
public class ConnectionStatus implements Cloneable {

View File

@ -23,7 +23,6 @@ import java.util.List;
import java.util.Map;
/**
* @author unattributed
*/
public class ProcessGroupStatus implements Cloneable {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.controller.status;
import java.util.concurrent.TimeUnit;
/**
* @author unattributed
*/
public class ProcessorStatus implements Cloneable {

View File

@ -24,7 +24,6 @@ import java.util.Comparator;
* so if features of that content are necessary for prioritization it should be
* extracted to be used as an attribute of the flow file.
*
* @author none
*/
public interface FlowFilePrioritizer extends Comparator<FlowFile> {
}

View File

@ -46,7 +46,6 @@ import org.apache.nifi.processor.exception.ProcessException;
* default no-args constructor to facilitate the java service loader
* mechanism.</p>
*
* @author none
*/
public interface Processor extends ConfigurableComponent {

View File

@ -18,7 +18,6 @@ package org.apache.nifi.processor;
/**
*
* @author
*/
public class QueueSize {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.processor;
/**
* An immutable object for holding information about a type of relationship.
*
* @author unattributed
*/
public final class Relationship implements Comparable<Relationship> {

View File

@ -27,7 +27,6 @@ import java.lang.annotation.Target;
* Annotation that may be placed on a processor allowing for a description to be
* provided. This description can be provided to a user in logs, UI, etc.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.documentation.CapabilityDescription}
* annotation.

View File

@ -38,7 +38,6 @@ import java.lang.annotation.Target;
* eligible to be scheduled in Event-Driven mode.
* </p>
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.behavior.EventDriven} annotation.
*/

View File

@ -31,7 +31,6 @@ import java.lang.annotation.Target;
* If any method annotated with this annotation throws, the processor will not
* be added to the graph.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.lifecycle.OnAdded} annotation.
*/

View File

@ -32,7 +32,6 @@ import java.lang.annotation.Target;
* If any method annotated with this annotation throws, the processor will not
* be removed from the graph.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.lifecycle.OnRemoved} annotation.
*/

View File

@ -34,7 +34,6 @@ import java.lang.annotation.Target;
* If any method annotated with this annotation throws, the processor will not
* be scheduled to run.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.lifecycle.OnScheduled} annotation.
*/

View File

@ -28,7 +28,6 @@ import java.lang.annotation.Target;
* should be called whenever the flow is being shutdown. This will be called at
* most once for each processor instance in a process lifetime.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.lifecycle.OnShutdown} annotation.
*/

View File

@ -45,7 +45,6 @@ import java.lang.annotation.Target;
* longer scheduled to run, see the {@link OnUnscheduled} annotation.
* </p>
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.lifecycle.OnStopped} annotation.
*/

View File

@ -36,7 +36,6 @@ import java.lang.annotation.Target;
* If any method annotated with this annotation throws, the processor will not
* be scheduled to run.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.lifecycle.OnUnscheduled} annotation.
*/

View File

@ -35,7 +35,6 @@ import java.lang.annotation.Target;
* which could not be rolled back and thus all the processes could be safely
* repeated (implied idempotent behavior).
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.behavior.SideEffectFree} annotation.
*/

View File

@ -40,7 +40,6 @@ import java.lang.annotation.Target;
* ProcessSession.commit() to ensure data is persisted before deleting the data
* from a remote source.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.behavior.SupportsBatching} annotation.
*/

View File

@ -29,7 +29,6 @@ import java.lang.annotation.Target;
* method. By default processors are assumed to be thread safe for concurrent
* execution.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.behavior.TriggerSerially} annotation.
*/

View File

@ -29,7 +29,6 @@ import java.lang.annotation.Target;
* for incoming FlowFiles. By default processors are triggered only when all
* destinations report that they have available space.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.behavior.TriggerWhenAnyDestinationAvailable}
* annotation.

View File

@ -31,7 +31,6 @@ import java.lang.annotation.Target;
* have non-self incoming edges will only be triggered if they have work in
* their queue or they present this annotation.
*
* @author none
* @deprecated This Annotation has been replaced by the
* {@link org.apache.nifi.annotation.behavior.TriggerWhenEmpty} annotation.
*/

View File

@ -20,7 +20,6 @@ package org.apache.nifi.processor.exception;
* Indicates an issue occurred while accessing the content of a FlowFile, such
* as an IOException.
*
* @author none
*/
public class FlowFileAccessException extends RuntimeException {

View File

@ -22,7 +22,6 @@ package org.apache.nifi.processor.exception;
* session. In any event this exception indicates a logic or programming error
* within the processor interacting with the offending session.
*
* @author none
*/
public class FlowFileHandlingException extends ProcessException {

View File

@ -24,7 +24,6 @@ package org.apache.nifi.processor.exception;
* framework and it is not something any processor or the framework can recover
* so it must discard the object.
*
* @author none
*/
public class MissingFlowFileException extends RuntimeException {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.processor.exception;
/**
* Indicates an issue occurred in user code while processing a FlowFile.
*
* @author none
*/
public class ProcessException extends RuntimeException {

View File

@ -21,7 +21,6 @@ import java.io.InputStream;
/**
*
* @author unattributed
*/
public interface InputStreamCallback {

View File

@ -21,7 +21,6 @@ import java.io.OutputStream;
/**
*
* @author unattributed
*/
public interface OutputStreamCallback {

View File

@ -22,7 +22,6 @@ import java.io.Serializable;
* A model object representing a revision. Equality is defined as either a
* matching version number or matching non-empty client IDs.
*
* @author unattributed
* @Immutable
* @Threadsafe
*/

View File

@ -32,7 +32,6 @@ import org.apache.nifi.processor.Relationship;
/**
* Holder for provenance relevant information
* <p/>
* @author none
*/
public final class StandardProvenanceEventRecord implements ProvenanceEventRecord {

View File

@ -21,7 +21,6 @@ import org.slf4j.Marker;
/**
*
* @author unattributed
*/
public class NiFiLog implements Logger {

View File

@ -23,7 +23,6 @@ import org.apache.commons.lang3.builder.ToStringStyle;
* Enumeration capturing essential information about the various encryption
* methods that might be supported.
*
* @author none
*/
public enum EncryptionMethod {

View File

@ -37,7 +37,6 @@ import javax.net.ssl.TrustManagerFactory;
* A factory for creating SSL contexts using the application's security
* properties.
*
* @author unattributed
*/
public final class SslContextFactory {

View File

@ -29,7 +29,6 @@ import org.apache.commons.lang3.builder.ToStringStyle;
/**
*
* @author none
*/
public abstract class AbstractStreamConsumer implements StreamConsumer {

View File

@ -18,7 +18,6 @@ package org.apache.nifi.io.nio.consumer;
/**
*
* @author none
*/
public interface StreamConsumerFactory {

View File

@ -41,7 +41,6 @@ import org.slf4j.LoggerFactory;
/**
* Implements a listener for TCP/IP messages sent over unicast socket.
*
* @author unattributed
*/
public abstract class SocketListener {

View File

@ -23,7 +23,6 @@ import java.net.InetSocketAddress;
* unique case-sensitive service name and a socket address where it is
* available.
*
* @author unattributed
*/
public interface DiscoverableService {

View File

@ -23,7 +23,6 @@ import org.apache.commons.lang3.StringUtils;
* A basic implementation of the DiscoverableService interface. To services are
* considered equal if they have the same case-sensitive service name.
*
* @author unattributed
*/
public class DiscoverableServiceImpl implements DiscoverableService {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.io.socket.multicast;
/**
* @author unattributed
*/
public final class MulticastConfiguration {

View File

@ -22,7 +22,6 @@ import java.net.InetSocketAddress;
* Defines the interface for discovering services based on name. Services are
* expected to be exposed via socket address and port.
*
* @author unattributed
*/
public interface MulticastServiceDiscovery extends ServiceDiscovery {

View File

@ -21,7 +21,6 @@ import java.net.InetSocketAddress;
/**
* Defines the interface for broadcasting a service via multicast.
*
* @author unattributed
*/
public interface MulticastServicesBroadcaster extends ServicesBroadcaster {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.io.socket.multicast;
/**
* @author unattributed
*/
public enum MulticastTimeToLive {

View File

@ -23,7 +23,6 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author unattributed
*/
public final class MulticastUtils {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.io.socket.multicast;
/**
* Defines a generic interface for discovering services.
*
* @author unattributed
*/
public interface ServiceDiscovery {

View File

@ -22,7 +22,6 @@ import java.util.Set;
* Defines the interface for broadcasting a collection of services for client
* discovery.
*
* @author unattributed
*/
public interface ServicesBroadcaster {

View File

@ -37,7 +37,6 @@ import org.slf4j.LoggerFactory;
/**
*
* @author none
*/
public final class ServerMain {

View File

@ -24,7 +24,6 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author none
*/
public class TCPClient {

View File

@ -24,7 +24,6 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author none
*/
public class UDPClient {

View File

@ -23,7 +23,6 @@ import org.apache.nifi.io.nio.consumer.AbstractStreamConsumer;
/**
*
* @author none
*/
public class UselessStreamConsumer extends AbstractStreamConsumer {

View File

@ -41,7 +41,6 @@ import org.slf4j.Logger;
/**
* A utility class containing a few useful static methods to do typical IO operations.
*
* @author unattributed
*/
public class FileUtils {

View File

@ -23,7 +23,6 @@ import org.apache.nifi.util.search.SearchTerm;
/**
*
* @author
*/
public class Node {

View File

@ -51,7 +51,6 @@ import com.sun.jersey.client.urlconnection.HTTPSProperties;
/**
* Common utilities related to web development.
*
* @author unattributed
*/
public final class WebUtils {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.XmlRootElement;
import org.apache.nifi.cluster.authorization.protocol.message.ProtocolMessage.MessageType;
/**
* @author unattributed
*/
@XmlRootElement(name = "doesDnExistMessage")
public class DoesDnExistMessage extends ProtocolMessage {

View File

@ -22,7 +22,6 @@ import javax.xml.bind.annotation.XmlRootElement;
import org.apache.nifi.authorization.Authority;
/**
* @author unattributed
*/
@XmlRootElement(name = "getAuthoritiesMessage")
public class GetAuthoritiesMessage extends ProtocolMessage {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.cluster.authorization.protocol.message;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author unattributed
*/
@XmlRootElement(name = "getGroupForUserMessage")
public class GetGroupForUserMessage extends ProtocolMessage {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.cluster.authorization.protocol.message;
/**
* @author unattributed
*/
public abstract class ProtocolMessage {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
/**
* @author unattributed
*/
public final class JaxbProtocolUtils {

View File

@ -22,7 +22,6 @@ import org.apache.nifi.cluster.authorization.protocol.message.GetAuthoritiesMess
import org.apache.nifi.cluster.authorization.protocol.message.GetGroupForUserMessage;
/**
* @author unattributed
*/
@XmlRegistry
public class ObjectFactory {

View File

@ -23,7 +23,6 @@ import org.apache.nifi.cluster.protocol.jaxb.message.ConnectionRequestAdapter;
* A node's request to connect to the cluster. The request contains a proposed
* identifier.
*
* @author unattributed
*/
@XmlJavaTypeAdapter(ConnectionRequestAdapter.class)
public class ConnectionRequest {

View File

@ -24,7 +24,6 @@ import org.apache.nifi.cluster.protocol.jaxb.message.HeartbeatAdapter;
/**
* A heartbeat for indicating the status of a node to the cluster.
*
* @author unattributed
*/
@XmlJavaTypeAdapter(HeartbeatAdapter.class)
public class Heartbeat {

View File

@ -29,7 +29,6 @@ import org.apache.commons.lang3.StringUtils;
* This class overrides hashCode and equals and considers two instances to be
* equal if they have the equal IDs.
*
* @author unattributed
* @Immutable
* @Threadsafe
*/

View File

@ -21,7 +21,6 @@ package org.apache.nifi.cluster.protocol;
*
* @param <T> The type of protocol message.
*
* @author unattributed
*/
public interface ProtocolContext<T> {

View File

@ -20,7 +20,6 @@ package org.apache.nifi.cluster.protocol;
* The base exception for problems encountered while communicating within the
* cluster.
*
* @author unattributed
*/
public class ProtocolException extends RuntimeException {

View File

@ -24,7 +24,6 @@ import java.io.OutputStream;
*
* @param <T> The type of protocol message.
*
* @author unattributed
*/
public interface ProtocolMessageMarshaller<T> {

View File

@ -19,7 +19,6 @@ package org.apache.nifi.cluster.protocol;
/**
* Represents the exceptional case when a service's address is not known.
*
* @author unattributed
*/
public class UnknownServiceAddressException extends RuntimeException {

View File

@ -35,7 +35,6 @@ import org.apache.nifi.reporting.BulletinRepository;
* A wrapper class for consolidating a protocol sender and listener for the
* cluster manager.
*
* @author unattributed
*/
public class ClusterManagerProtocolSenderListener implements ClusterManagerProtocolSender, ProtocolListener {

View File

@ -40,7 +40,6 @@ import org.slf4j.LoggerFactory;
* which case, no service discovery occurs and the caller will always receive
* the configured service.
*
* @author unattributed
*/
public class ClusterServiceLocator implements ServiceDiscovery {

View File

@ -50,7 +50,6 @@ import org.slf4j.LoggerFactory;
* The instance must be stopped before termination of the JVM to ensure proper
* resource clean-up.
*
* @author unattributed
*/
public class ClusterServicesBroadcaster implements MulticastServicesBroadcaster {

View File

@ -55,7 +55,6 @@ import org.slf4j.LoggerFactory;
* instance must be stopped before termination of the JVM to ensure proper
* resource clean-up.
*
* @author unattributed
*/
public class MulticastProtocolListener extends MulticastListener implements ProtocolListener {

View File

@ -49,7 +49,6 @@ import org.slf4j.LoggerFactory;
/**
* Implements a listener for protocol messages sent over unicast socket.
*
* @author unattributed
*/
public class SocketProtocolListener extends SocketListener implements ProtocolListener {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.nifi.cluster.protocol.NodeIdentifier;
/**
* @author unattributed
*/
public class AdaptedConnectionRequest {

View File

@ -22,7 +22,6 @@ import org.apache.nifi.cluster.protocol.NodeIdentifier;
import org.apache.nifi.cluster.protocol.StandardDataFlow;
/**
* @author unattributed
*/
public class AdaptedConnectionResponse {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.cluster.protocol.jaxb.message;
/**
* @author unattributed
*/
public class AdaptedCounter {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.cluster.protocol.jaxb.message;
/**
* @author unattributed
*/
public class AdaptedDataFlow {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.nifi.cluster.protocol.NodeIdentifier;
/**
* @author unattributed
*/
public class AdaptedHeartbeat {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.nifi.cluster.protocol.NodeIdentifier;
/**
* @author unattributed
*/
public class AdaptedNodeBulletins {

View File

@ -17,7 +17,6 @@
package org.apache.nifi.cluster.protocol.jaxb.message;
/**
* @author unattributed
*/
public class AdaptedNodeIdentifier {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.adapters.XmlAdapter;
import org.apache.nifi.cluster.protocol.ConnectionRequest;
/**
* @author unattributed
*/
public class ConnectionRequestAdapter extends XmlAdapter<AdaptedConnectionRequest, ConnectionRequest> {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.adapters.XmlAdapter;
import org.apache.nifi.cluster.protocol.ConnectionResponse;
/**
* @author unattributed
*/
public class ConnectionResponseAdapter extends XmlAdapter<AdaptedConnectionResponse, ConnectionResponse> {

View File

@ -21,7 +21,6 @@ import javax.xml.bind.annotation.adapters.XmlAdapter;
import org.apache.nifi.cluster.protocol.StandardDataFlow;
/**
* @author unattributed
*/
public class DataFlowAdapter extends XmlAdapter<AdaptedDataFlow, StandardDataFlow> {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.annotation.adapters.XmlAdapter;
import org.apache.nifi.cluster.protocol.Heartbeat;
/**
* @author unattributed
*/
public class HeartbeatAdapter extends XmlAdapter<AdaptedHeartbeat, Heartbeat> {

View File

@ -20,7 +20,6 @@ import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
/**
* @author unattributed
*/
public final class JaxbProtocolUtils {

Some files were not shown because too many files have changed in this diff Show More