Skip to content

Commit

Permalink
Merge pull request #2805 from katysaintin/master
Browse files Browse the repository at this point in the history
[Codeathon]Fix errors on javadoc generation on all the project see issue #2795
  • Loading branch information
shroffk authored Sep 5, 2023
2 parents 97745da + ca78126 commit 049575e
Show file tree
Hide file tree
Showing 215 changed files with 933 additions and 517 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public AppInstance create() {
}

/**
* Support the launching of alarmLogtable using resource alarmLog://?<search_string>
* Support the launching of alarmLogtable using resource {@literal alarmLog://?<search_string>}
* e.g.
* -resource alarmLog://?pv=SR*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public static Producer<String, String> connectProducer(final String kafka_server
* @param kafka_servers - Sever to connect to.
* @param topics List of topics to aggregate.
* @param aggregate_topic - Name of topic to aggregate to.
* @param kafka_props File name to load additional settings for the kafka stream
* @param properties_file File name to load additional settings for the kafka stream
* @return aggregate_stream - KafkaStreams
* @author Evan Smith
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,17 @@ public interface ChannelFinderClient {

/**
* Returns a channel that exactly matches the channelName
* <tt>channelName</tt>.
* <code>channelName</code>.
*
* @param channelName
* - name of the required channel.
* @return {@link Channel} with name <tt>channelName</tt> or null
* @return {@link Channel} with name <code>channelName</code> or null
* @throws ChannelFinderException - channelfinder exception
*/
public Channel getChannel(String channelName) throws ChannelFinderException;

/**
* Destructively set a single channel <tt>channel</tt>, if the channel
* Destructively set a single channel <code>channel</code>, if the channel
* already exists it will be replaced with the given channel.
*
* @param channel
Expand All @@ -76,7 +76,7 @@ public interface ChannelFinderClient {


/**
* Destructively set a Tag <tt>tag</tt> with no associated channels to the
* Destructively set a Tag <code>tag</code> with no associated channels to the
* database.
*
* @param tag
Expand All @@ -85,7 +85,7 @@ public interface ChannelFinderClient {
public void set(Tag.Builder tag);

/**
* Destructively set tag <tt>tag</tt> to channel <tt>channelName</tt> and
* Destructively set tag <code>tag</code> to channel <code>channelName</code> and
* remove the tag from all other channels.
*
* @param tag
Expand All @@ -98,7 +98,7 @@ public void set(Tag.Builder tag, String channelName)
throws ChannelFinderException;

/**
* Set tag <tt>tag</tt> on the set of channels {channels} and remove it from
* Set tag <code>tag</code> on the set of channels {channels} and remove it from
* all others.
*
* @param tag
Expand All @@ -112,16 +112,16 @@ public void set(Tag.Builder tag, Collection<String> channelNames)
throws ChannelFinderException;

/**
* Destructively set a new property <tt>property</tt>.
* Destructively set a new property <code>property</code>.
*
* @param prop
* - the property to be set.
*/
public void set(Property.Builder prop) throws ChannelFinderException;

/**
* Destructively set property <tt>prop</tt> and add it to the channel
* <tt>channelName</tt> and remove it from all others.
* Destructively set property <code>prop</code> and add it to the channel
* <code>channelName</code> and remove it from all others.
*
* @param prop
* - property to be set.
Expand All @@ -131,10 +131,10 @@ public void set(Tag.Builder tag, Collection<String> channelNames)
public void set(Property.Builder prop, String channelName);

/**
* Destructively set property <tt>prop</tt> and add it to the channels
* <tt>channelNames</tt> removing it from all other channels. By default all
* Destructively set property <code>prop</code> and add it to the channels
* <code>channelNames</code> removing it from all other channels. By default all
* channels will contain the property with the same value specified in the
* <tt>prop</tt>.<br>
* <code>prop</code>.<br>
* to individually set the value for each channel use channelPropertyMap.
*
* @param prop
Expand All @@ -146,8 +146,8 @@ public void set(Tag.Builder tag, Collection<String> channelNames)
public void set(Property.Builder prop, Collection<String> channelNames);

/**
* Destructively set the property <tt>prop</tt> and add it to the channels
* specified in the <tt>channelPropertyMap</tt>, where the map key is the
* Destructively set the property <code>prop</code> and add it to the channels
* specified in the <code>channelPropertyMap</code>, where the map key is the
* channel name and the associated value is the property value to be used
* for that channel.
*
Expand All @@ -160,16 +160,16 @@ public void set(Property.Builder prop,
Map<String, String> channelPropertyMap);

/**
* Update existing channel with <tt>channel</tt>.
* Update existing channel with <code>channel</code>.
*
* @param channel - channel builder
* @throws ChannelFinderException - channelfinder exception
*/
public void update(Channel.Builder channel) throws ChannelFinderException;

/**
* Update Tag <tt>tag </tt> by adding it to Channel with name
* <tt>channelName</tt>, without affecting the other instances of this tag.
* Update Tag <code>tag </code> by adding it to Channel with name
* <code>channelName</code>, without affecting the other instances of this tag.
*
* @param tag
* the tag to be added
Expand All @@ -182,8 +182,8 @@ public void update(Tag.Builder tag, String channelName)

/**
*
* Update the Tag <tt>tag</tt> by adding it to the set of the channels with
* names <tt>channelNames</tt>, without affecting the other instances of
* Update the Tag <code>tag</code> by adding it to the set of the channels with
* names <code>channelNames</code>, without affecting the other instances of
* this tag.
*
* @param tag
Expand All @@ -196,8 +196,8 @@ public void update(Tag.Builder tag, Collection<String> channelNames)
throws ChannelFinderException;

/**
* Update Property <tt>property</tt> by adding it to the channel
* <tt>channelName</tt>, without affecting the other channels.
* Update Property <code>property</code> by adding it to the channel
* <code>channelName</code>, without affecting the other channels.
*
* @param property
* - the property to be updated
Expand All @@ -210,8 +210,8 @@ public void update(Property.Builder property, String channelName)
throws ChannelFinderException;

/**
* Update the channels identified with <tt>channelNames</tt> with the
* property <tt>property</tt>
* Update the channels identified with <code>channelNames</code> with the
* property <code>property</code>
*
* @param property - property builder
* @param channelNames - list of channel names
Expand All @@ -221,7 +221,7 @@ public void update(Property.Builder property,
Collection<String> channelNames) throws ChannelFinderException;

/**
* Update the property <tt>property</tt> on all channels specified in the
* Update the property <code>property</code> on all channels specified in the
* channelPropValueMap, where the key in the map is the channel name and the
* value is the value for that property
*
Expand All @@ -234,44 +234,44 @@ public void update(Property.Builder property,
throws ChannelFinderException;

/**
* Search for channels who's name match the pattern <tt>pattern</tt>.<br>
* Search for channels who's name match the pattern <code>pattern</code>.<br>
* The pattern can contain wildcard char * or ?.<br>
*
* @param pattern
* - the search pattern for the channel names
* @return A Collection of channels who's name match the pattern
* <tt>pattern</tt>
* <code>pattern</code>
* @throws ChannelFinderException - channelfinder exception
*/
public Collection<Channel> findByName(String pattern)
throws ChannelFinderException;

/**
* Search for channels with tags who's name match the pattern
* <tt>pattern</tt>.<br>
* <code>pattern</code>.<br>
* The pattern can contain wildcard char * or ?.<br>
*
* @param pattern
* - the search pattern for the tag names
* @return A Collection of channels which contain tags who's name match the
* pattern <tt>pattern</tt>
* pattern <code>pattern</code>
* @throws ChannelFinderException - channelfinder exception
*/
public Collection<Channel> findByTag(String pattern)
throws ChannelFinderException;

/**
* Search for channels with properties who's Value match the pattern
* <tt>pattern</tt>.<br>
* <code>pattern</code>.<br>
* The pattern can contain wildcard char * or ?.<br>
*
* @param property
* - the name of the property.
* @param pattern
* - the seatch pattern for the property value.
* @return A collection of channels containing the property with name
* <tt>propertyName</tt> who's value matches the pattern
* <tt> pattern</tt>.
* <code>propertyName</code> who's value matches the pattern
* <code> pattern</code>.
* @throws ChannelFinderException - channelfinder exception
*/
public Collection<Channel> findByProperty(String property,
Expand All @@ -283,7 +283,7 @@ public Collection<Channel> findByProperty(String property,
* Tags=tagNamePattern Each criteria is logically ANDed, || seperated values
* are logically ORed
*
* Query for channels based on the Query string <tt>query</tt> example:
* Query for channels based on the Query string <code>query</code> example:
* find("SR* Cell=1,2 Tags=GolderOrbit,myTag)<br>
*
* this will return all channels with names starting with SR AND have
Expand Down Expand Up @@ -356,7 +356,7 @@ public void deleteProperty(String propertyName)
throws ChannelFinderException;

/**
* Delete the channel identified by <tt>channel</tt>
* Delete the channel identified by <code>channel</code>
*
* @param channelName
* channel to be removed
Expand All @@ -365,7 +365,7 @@ public void deleteProperty(String propertyName)
public void deleteChannel(String channelName) throws ChannelFinderException;

/**
* Delete the set of channels identified by <tt>channels</tt>
* Delete the set of channels identified by <code>channels</code>
*
* @param channels - list of channel builders
* @throws ChannelFinderException - channelfinder exception
Expand All @@ -375,53 +375,53 @@ public void delete(Collection<Channel.Builder> channels)
throws ChannelFinderException;

/**
* Delete tag <tt>tag</tt> from the channel with the name
* <tt>channelName</tt>
* Delete tag <code>tag</code> from the channel with the name
* <code>channelName</code>
*
* @param tag
* - the tag to be deleted.
* @param channelName
* - the channel from which to delete the tag <tt>tag</tt>
* - the channel from which to delete the tag <code>tag</code>
* @throws ChannelFinderException - channelfinder exception
*/
public void delete(Tag.Builder tag, String channelName)
throws ChannelFinderException;

/**
* Remove the tag <tt>tag </tt> from all the channels <tt>channelNames</tt>
* Remove the tag <code>tag </code> from all the channels <code>channelNames</code>
*
* @param tag
* - the tag to be deleted.
* @param channelNames
* - the channels from which to delete the tag <tt>tag</tt>
* - the channels from which to delete the tag <code>tag</code>
* @throws ChannelFinderException - channelfinder exception
*/
public void delete(Tag.Builder tag, Collection<String> channelNames)
throws ChannelFinderException;

/**
* Remove property <tt>property</tt> from the channel with name
* <tt>channelName</tt>
* Remove property <code>property</code> from the channel with name
* <code>channelName</code>
*
* @param property
* - the property to be deleted.
* @param channelName
* - the channel from which to delete the property
* <tt>property</tt>
* <code>property</code>
* @throws ChannelFinderException - channelfinder exception
*/
public void delete(Property.Builder property, String channelName)
throws ChannelFinderException;

/**
* Remove the property <tt>property</tt> from the set of channels
* <tt>channelNames</tt>
* Remove the property <code>property</code> from the set of channels
* <code>channelNames</code>
*
* @param property
* - the property to be deleted.
* @param channelNames
* - the channels from which to delete the property
* <tt>property</tt>
* <code>property</code>
* @throws ChannelFinderException - channelfinder exception
*/
public void delete(Property.Builder property,
Expand Down
Loading

0 comments on commit 049575e

Please sign in to comment.