Skip to content

Commit

Permalink
Prepare the 5.2.1.0 release
Browse files Browse the repository at this point in the history
- minor javadoc updates
  • Loading branch information
mihaicostin committed Aug 1, 2016
1 parent 34e71fd commit 8931e41
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public boolean putFromLoad(SharedSessionContractImplementor session, Object key,

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

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

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

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

/**
* {@inheritDoc}
* <p/>
* <p>
* Removes the entry since this is a non-strict read/write cache strategy.
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public boolean putFromLoad(SharedSessionContractImplementor session, Object key,

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

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

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

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

/**
* {@inheritDoc}
* <p/>
* <p>
* Removes the entry since this is a non-strict read/write cache strategy.
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O

/**
* {@inheritDoc}
* <p/>
* <p>
* A no-op since this cache is read-only
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O

/**
* {@inheritDoc}
* <p/>
* <p>
* A no-op since this cache is read-only
*/
@Override
Expand All @@ -66,7 +66,7 @@ public void unlockItem(SharedSessionContractImplementor session, Object key, Sof

/**
* {@inheritDoc}
* <p/>
* <p>
* This cache is asynchronous hence a no-op
*/
@Override
Expand All @@ -82,7 +82,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,

/**
* {@inheritDoc}
* <p/>
* <p>
* Throws UnsupportedOperationException since this cache is read-only
*
* @throws UnsupportedOperationException always
Expand All @@ -95,7 +95,7 @@ public boolean update(SharedSessionContractImplementor session, Object key, Obje

/**
* {@inheritDoc}
* <p/>
* <p>
* Throws UnsupportedOperationException since this cache is read-only
*
* @throws UnsupportedOperationException always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public SoftLock lockItem(SharedSessionContractImplementor session, Object key, O

/**
* {@inheritDoc}
* <p/>
* <p>
* A no-op since this cache is read-only
*/
@Override
Expand All @@ -67,7 +67,7 @@ public void unlockItem(SharedSessionContractImplementor session, Object key, Sof

/**
* {@inheritDoc}
* <p/>
* <p>
* This cache is asynchronous hence a no-op
*/
@Override
Expand All @@ -83,7 +83,7 @@ public boolean afterInsert(SharedSessionContractImplementor session, Object key,

/**
* {@inheritDoc}
* <p/>
* <p>
* Throws UnsupportedOperationException since this cache is read-only
*
* @throws UnsupportedOperationException always
Expand All @@ -95,7 +95,7 @@ public boolean update(SharedSessionContractImplementor session, Object key, Obje

/**
* {@inheritDoc}
* <p/>
* <p>
* Throws UnsupportedOperationException since this cache is read-only
*
* @throws UnsupportedOperationException always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public ReadWriteMemcachedEntityRegionAccessStrategy(MemcachedEntityRegion region

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

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

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

/**
* {@inheritDoc}
* <p/>
* <p>
* Updates will only succeed if this entry was locked by this transaction and exclusively this transaction for the
* duration of this transaction. It is important to also note that updates will fail if the soft-lock expired during
* the course of this transaction.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ReadWriteMemcachedNaturalIdRegionAccessStrategy(MemcachedNaturalIdRegion

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

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

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

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

0 comments on commit 8931e41

Please sign in to comment.