Skip to content

Commit ae86e76

Browse files
committed
Address comments
- Specify Liberty version in README - Update copyright year to 2019
1 parent af39329 commit ae86e76

File tree

14 files changed

+76
-10
lines changed

14 files changed

+76
-10
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ This repository contains Hazelcast DynaCache feature for Liberty Profile.
1313
In Liberty WAS, you can use dynamic cache engine (which is the default) in order to cache your data.
1414
With this feature, you can use Hazelcast as cache provider.
1515

16+
Tested with Liberty 16.0.0.3.
17+
1618
# Requirements
1719

1820
- Maven

hazelcast-dynacache-bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
~ Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
~ Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
55
~ you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/client/osgi/Activator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/client/osgi/HazelcastClientInternalOSGiService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/client/osgi/HazelcastClientOSGiService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/client/osgi/HazelcastClientOSGiServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/client/osgi/HazelcastOSGiClientInstance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/client/osgi/HazelcastOSGiClientInstanceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/ibm/dynacache/CacheEntryImpl.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package com.hazelcast.ibm.dynacache;
218

319
import com.ibm.websphere.cache.CacheEntry;

hazelcast-dynacache-bundle/src/main/java/com/hazelcast/ibm/dynacache/CacheFeatureSupportImpl.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package com.hazelcast.ibm.dynacache;
218

319
import com.ibm.wsspi.cache.CacheFeatureSupport;

0 commit comments

Comments
 (0)