Skip to content

Commit e0834d9

Browse files
committed
Javadoc
1 parent 7a02f5d commit e0834d9

File tree

4 files changed

+50
-50
lines changed

4 files changed

+50
-50
lines changed

commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/TCPLateralCacheAttributes.java

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public int getSocketTimeOut()
122122

123123
/**
124124
* Gets the tcpListenerHost attribute of the ILateralCacheAttributes object
125-
* <p>
125+
*
126126
* @return The tcpListenerHost value
127127
*/
128128
@Override
@@ -133,7 +133,7 @@ public String getTcpListenerHost()
133133

134134
/**
135135
* Gets the tcpListenerPort attribute of the ILateralCacheAttributes object
136-
* <p>
136+
*
137137
* @return The tcpListenerPort value
138138
*/
139139
@Override
@@ -144,7 +144,7 @@ public int getTcpListenerPort()
144144

145145
/**
146146
* Gets the tcpServer attribute of the ILateralCacheAttributes object
147-
* <p>
147+
*
148148
* @return The tcpServer value
149149
*/
150150
@Override
@@ -155,7 +155,7 @@ public String getTcpServer()
155155

156156
/**
157157
* Gets the tcpServers attribute of the ILateralCacheAttributes object
158-
* <p>
158+
*
159159
* @return The tcpServers value
160160
*/
161161
@Override
@@ -166,7 +166,7 @@ public String getTcpServers()
166166

167167
/**
168168
* The address to broadcast to if UDPDiscovery is enabled.
169-
* <p>
169+
*
170170
* @return the udpDiscoveryAddr.
171171
*/
172172
@Override
@@ -177,7 +177,7 @@ public String getUdpDiscoveryAddr()
177177

178178
/**
179179
* The port to use if UDPDiscovery is enabled.
180-
* <p>
180+
*
181181
* @return the udpDiscoveryPort.
182182
*/
183183
@Override
@@ -188,7 +188,7 @@ public int getUdpDiscoveryPort()
188188

189189
/**
190190
* The time-to-live for the UDP multicast packets
191-
* <p>
191+
*
192192
* @return the udpTTL.
193193
* @since 3.1
194194
*/
@@ -200,7 +200,7 @@ public int getUdpTTL()
200200

201201
/**
202202
* Is the lateral allowed to try and get from other laterals.
203-
* <p>
203+
*
204204
* @return true if the lateral will try to get
205205
*/
206206
@Override
@@ -211,7 +211,7 @@ public boolean isAllowGet()
211211

212212
/**
213213
* Is the lateral allowed to put objects to other laterals.
214-
* <p>
214+
*
215215
* @return true if puts are allowed
216216
*/
217217
@Override
@@ -226,7 +226,7 @@ public boolean isAllowPut()
226226
* then it will compare the hash code. if they are the same, it will not remove. This isn't
227227
* perfect since different objects can have the same hash code, but it is unlikely of objects of
228228
* the same type.
229-
* <p>
229+
*
230230
* @return boolean
231231
*/
232232
@Override
@@ -239,7 +239,7 @@ public boolean isFilterRemoveByHashCode()
239239
* Should the client send a remove command rather than a put when update is called. This is a
240240
* client option, not a receiver option. This allows you to prevent the lateral from serializing
241241
* objects.
242-
* <p>
242+
*
243243
* @return true if updates will result in a remove command being sent.
244244
*/
245245
@Override
@@ -249,8 +249,8 @@ public boolean isIssueRemoveOnPut()
249249
}
250250

251251
/**
252-
* Whether or not TCP laterals can try to find each other by multicast communication.
253-
* <p>
252+
* Tests whether or not TCP laterals can try to find each other by multicast communication.
253+
*
254254
* @return the udpDiscoveryEnabled.
255255
*/
256256
@Override
@@ -274,7 +274,7 @@ public void setAllowGet( final boolean allowGet )
274274

275275
/**
276276
* Is the lateral allowed to put objects to other laterals.
277-
* <p>
277+
*
278278
* @param allowPut
279279
*/
280280
@Override
@@ -289,7 +289,7 @@ public void setAllowPut( final boolean allowPut )
289289
* then it will compare the hash code. if they are the same, it will not remove. This isn't
290290
* perfect since different objects can have the same hash code, but it is unlikely of objects of
291291
* the same type.
292-
* <p>
292+
*
293293
* @param filter
294294
*/
295295
@Override
@@ -302,7 +302,7 @@ public void setFilterRemoveByHashCode( final boolean filter )
302302
* Should the client send a remove command rather than a put when update is called. This is a
303303
* client option, not a receiver option. This allows you to prevent the lateral from serializing
304304
* objects.
305-
* <p>
305+
*
306306
* @param issueRemoveOnPut
307307
*/
308308
@Override
@@ -331,7 +331,7 @@ public void setSocketTimeOut( final int socketTimeOut )
331331

332332
/**
333333
* Sets the tcpListenerHost attribute of the ILateralCacheAttributes object
334-
* <p>
334+
*
335335
* @param val
336336
* The new tcpListenerHost value
337337
*/
@@ -343,7 +343,7 @@ public void setTcpListenerHost( final String val )
343343

344344
/**
345345
* Sets the tcpListenerPort attribute of the ILateralCacheAttributes object
346-
* <p>
346+
*
347347
* @param val The new tcpListenerPort value
348348
*/
349349
@Override
@@ -354,7 +354,7 @@ public void setTcpListenerPort( final int val )
354354

355355
/**
356356
* Sets the tcpServer attribute of the ILateralCacheAttributes object
357-
* <p>
357+
*
358358
* @param val The new tcpServer value
359359
*/
360360
@Override

commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public interface ITCPLateralCacheAttributes
125125
boolean isIssueRemoveOnPut();
126126

127127
/**
128-
* Whether or not TCP laterals can try to find each other by multicast
128+
* Tests whether or not TCP laterals can try to find each other by multicast
129129
* communication.
130130
* <p>
131131
* @return the udpDiscoveryEnabled.

0 commit comments

Comments
 (0)