Skip to content

Commit 8931e41

Browse files
committed
Prepare the 5.2.1.0 release
- minor javadoc updates
1 parent 34e71fd commit 8931e41

7 files changed

+27
-27
lines changed

src/main/java/com/mc/hibernate/memcached/strategy/NonStrictReadWriteMemcachedEntityRegionAccessStrategy.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public boolean putFromLoad(SharedSessionContractImplementor session, Object key,
6161

6262
/**
6363
* {@inheritDoc}
64-
* <p/>
64+
* <p>
6565
* Since this is a non-strict read/write strategy item locking is not used.
6666
*/
6767
@Override
@@ -71,7 +71,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O
7171

7272
/**
7373
* {@inheritDoc}
74-
* <p/>
74+
* <p>
7575
* Since this is a non-strict read/write strategy item locking is not used.
7676
*/
7777
@Override
@@ -81,7 +81,7 @@ public void unlockItem(SharedSessionContractImplementor session, Object key, Sof
8181

8282
/**
8383
* {@inheritDoc}
84-
* <p/>
84+
* <p>
8585
* Returns <code>false</code> since this is an asynchronous cache access strategy.
8686
*/
8787
@Override
@@ -91,7 +91,7 @@ public boolean insert(SharedSessionContractImplementor session, Object key, Obje
9191

9292
/**
9393
* {@inheritDoc}
94-
* <p/>
94+
* <p>
9595
* Returns <code>false</code> since this is a non-strict read/write cache access strategy
9696
*/
9797
@Override
@@ -101,7 +101,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,
101101

102102
/**
103103
* {@inheritDoc}
104-
* <p/>
104+
* <p>
105105
* Removes the entry since this is a non-strict read/write cache strategy.
106106
*/
107107
@Override

src/main/java/com/mc/hibernate/memcached/strategy/NonStrictReadWriteMemcachedNaturalIdRegionAccessStrategy.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public boolean putFromLoad(SharedSessionContractImplementor session, Object key,
5555

5656
/**
5757
* {@inheritDoc}
58-
* <p/>
58+
* <p>
5959
* Since this is a non-strict read/write strategy item locking is not used.
6060
*/
6161
@Override
@@ -65,7 +65,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O
6565

6666
/**
6767
* {@inheritDoc}
68-
* <p/>
68+
* <p>
6969
* Since this is a non-strict read/write strategy item locking is not used.
7070
*/
7171
@Override
@@ -75,7 +75,7 @@ public void unlockItem(SharedSessionContractImplementor session, Object key, Sof
7575

7676
/**
7777
* {@inheritDoc}
78-
* <p/>
78+
* <p>
7979
* Returns <code>false</code> since this is an asynchronous cache access strategy.
8080
*/
8181
@Override
@@ -85,7 +85,7 @@ public boolean insert(SharedSessionContractImplementor session, Object key, Obje
8585

8686
/**
8787
* {@inheritDoc}
88-
* <p/>
88+
* <p>
8989
* Returns <code>false</code> since this is a non-strict read/write cache access strategy
9090
*/
9191
@Override
@@ -95,7 +95,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,
9595

9696
/**
9797
* {@inheritDoc}
98-
* <p/>
98+
* <p>
9999
* Removes the entry since this is a non-strict read/write cache strategy.
100100
*/
101101
@Override

src/main/java/com/mc/hibernate/memcached/strategy/ReadOnlyMemcachedCollectionRegionAccessStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O
5656

5757
/**
5858
* {@inheritDoc}
59-
* <p/>
59+
* <p>
6060
* A no-op since this cache is read-only
6161
*/
6262
@Override

src/main/java/com/mc/hibernate/memcached/strategy/ReadOnlyMemcachedEntityRegionAccessStrategy.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O
5656

5757
/**
5858
* {@inheritDoc}
59-
* <p/>
59+
* <p>
6060
* A no-op since this cache is read-only
6161
*/
6262
@Override
@@ -66,7 +66,7 @@ public void unlockItem(SharedSessionContractImplementor session, Object key, Sof
6666

6767
/**
6868
* {@inheritDoc}
69-
* <p/>
69+
* <p>
7070
* This cache is asynchronous hence a no-op
7171
*/
7272
@Override
@@ -82,7 +82,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,
8282

8383
/**
8484
* {@inheritDoc}
85-
* <p/>
85+
* <p>
8686
* Throws UnsupportedOperationException since this cache is read-only
8787
*
8888
* @throws UnsupportedOperationException always
@@ -95,7 +95,7 @@ public boolean update(SharedSessionContractImplementor session, Object key, Obje
9595

9696
/**
9797
* {@inheritDoc}
98-
* <p/>
98+
* <p>
9999
* Throws UnsupportedOperationException since this cache is read-only
100100
*
101101
* @throws UnsupportedOperationException always

src/main/java/com/mc/hibernate/memcached/strategy/ReadOnlyMemcachedNaturalIdRegionAccessStrategy.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O
5757

5858
/**
5959
* {@inheritDoc}
60-
* <p/>
60+
* <p>
6161
* A no-op since this cache is read-only
6262
*/
6363
@Override
@@ -67,7 +67,7 @@ public void unlockItem(SharedSessionContractImplementor session, Object key, Sof
6767

6868
/**
6969
* {@inheritDoc}
70-
* <p/>
70+
* <p>
7171
* This cache is asynchronous hence a no-op
7272
*/
7373
@Override
@@ -83,7 +83,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,
8383

8484
/**
8585
* {@inheritDoc}
86-
* <p/>
86+
* <p>
8787
* Throws UnsupportedOperationException since this cache is read-only
8888
*
8989
* @throws UnsupportedOperationException always
@@ -95,7 +95,7 @@ public boolean update(SharedSessionContractImplementor session, Object key, Obje
9595

9696
/**
9797
* {@inheritDoc}
98-
* <p/>
98+
* <p>
9999
* Throws UnsupportedOperationException since this cache is read-only
100100
*
101101
* @throws UnsupportedOperationException always

src/main/java/com/mc/hibernate/memcached/strategy/ReadWriteMemcachedEntityRegionAccessStrategy.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public ReadWriteMemcachedEntityRegionAccessStrategy(MemcachedEntityRegion region
3535

3636
/**
3737
* {@inheritDoc}
38-
* <p/>
38+
* <p>
3939
* A no-op since this is an asynchronous cache access strategy.
4040
*/
4141
@Override
@@ -45,7 +45,7 @@ public boolean insert(SharedSessionContractImplementor session, Object key, Obje
4545

4646
/**
4747
* {@inheritDoc}
48-
* <p/>
48+
* <p>
4949
* Inserts will only succeed if there is no existing value mapped to this key.
5050
*/
5151
@Override
@@ -66,7 +66,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,
6666

6767
/**
6868
* {@inheritDoc}
69-
* <p/>
69+
* <p>
7070
* A no-op since this is an asynchronous cache access strategy.
7171
*/
7272
@Override
@@ -77,7 +77,7 @@ public boolean update(SharedSessionContractImplementor session, Object key, Obje
7777

7878
/**
7979
* {@inheritDoc}
80-
* <p/>
80+
* <p>
8181
* Updates will only succeed if this entry was locked by this transaction and exclusively this transaction for the
8282
* duration of this transaction. It is important to also note that updates will fail if the soft-lock expired during
8383
* the course of this transaction.

src/main/java/com/mc/hibernate/memcached/strategy/ReadWriteMemcachedNaturalIdRegionAccessStrategy.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public ReadWriteMemcachedNaturalIdRegionAccessStrategy(MemcachedNaturalIdRegion
3636

3737
/**
3838
* {@inheritDoc}
39-
* <p/>
39+
* <p>
4040
* A no-op since this is an asynchronous cache access strategy.
4141
*/
4242
@Override
@@ -46,7 +46,7 @@ public boolean insert(SharedSessionContractImplementor session, Object key, Obje
4646

4747
/**
4848
* {@inheritDoc}
49-
* <p/>
49+
* <p>
5050
* Inserts will only succeed if there is no existing value mapped to this key.
5151
*/
5252
@Override
@@ -67,7 +67,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,
6767

6868
/**
6969
* {@inheritDoc}
70-
* <p/>
70+
* <p>
7171
* A no-op since this is an asynchronous cache access strategy.
7272
*/
7373
@Override
@@ -77,7 +77,7 @@ public boolean update(SharedSessionContractImplementor session, Object key, Obje
7777

7878
/**
7979
* {@inheritDoc}
80-
* <p/>
80+
* <p>
8181
* Updates will only succeed if this entry was locked by this transaction and exclusively this transaction for the
8282
* duration of this transaction. It is important to also note that updates will fail if the soft-lock expired during
8383
* the course of this transaction.

0 commit comments

Comments
 (0)