From 342491b44e51715ff617c1216744113d825cb25b Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Wed, 21 Jan 2015 11:55:01 +0900 Subject: [PATCH] update copy right --- .../interceptor/WeakAtomicReferenceArray.java | 16 ++++++++++++++++ .../bootstrap/interceptor/AtomicMaxUpdater.java | 16 ++++++++++++++++ .../interceptor/InterceptorRegistryTest.java | 16 ++++++++++++++++ .../WeakAtomicReferenceArrayTest.java | 16 ++++++++++++++++ .../bootstrap/instrument/Attachment.java | 16 ++++++++++++++++ .../bootstrap/instrument/AttachmentFactory.java | 16 ++++++++++++++++ .../bootstrap/instrument/AttachmentScope.java | 16 ++++++++++++++++ .../instrument/DefaultScopeDefinition.java | 16 ++++++++++++++++ .../bootstrap/instrument/ScopeDefinition.java | 16 ++++++++++++++++ .../navercorp/pinpoint/common/util/Clock.java | 16 ++++++++++++++++ .../pinpoint/common/util/MockClock.java | 16 ++++++++++++++++ .../pinpoint/common/util/SystemClock.java | 16 ++++++++++++++++ .../modifier/redis/BinaryJedisModifier.java | 16 ++++++++++++++++ .../modifier/redis/JedisClientModifier.java | 16 ++++++++++++++++ .../profiler/modifier/redis/JedisModifier.java | 16 ++++++++++++++++ .../redis/JedisMultiKeyPipelineBaseModifier.java | 16 ++++++++++++++++ .../redis/JedisPipelineBaseModifier.java | 16 ++++++++++++++++ .../modifier/redis/JedisPipelineModifier.java | 16 ++++++++++++++++ .../modifier/redis/filter/JedisMethodNames.java | 16 ++++++++++++++++ .../redis/filter/JedisPipelineMethodNames.java | 16 ++++++++++++++++ .../redis/filter/NameBasedMethodFilter.java | 16 ++++++++++++++++ .../JedisClientConstructorInterceptor.java | 16 ++++++++++++++++ .../interceptor/JedisConstructorInterceptor.java | 16 ++++++++++++++++ .../interceptor/JedisMethodInterceptor.java | 16 ++++++++++++++++ .../JedisPipelineConstructorInterceptor.java | 16 ++++++++++++++++ .../JedisPipelineMethodInterceptor.java | 16 ++++++++++++++++ .../JedisPipelineSetClientMethodInterceptor.java | 16 ++++++++++++++++ .../profiler/util/AttachmentSimpleScope.java | 16 ++++++++++++++++ .../util/AttachmentSimpleScopeFactory.java | 16 ++++++++++++++++ .../pinpoint/profiler/util/ScopeFactory.java | 16 ++++++++++++++++ .../pinpoint/profiler/util/ScopePool.java | 16 ++++++++++++++++ .../pinpoint/profiler/util/SimpleScope.java | 16 ++++++++++++++++ .../profiler/util/SimpleScopeFactory.java | 16 ++++++++++++++++ .../interceptor/JavaAssistTestObject.java | 16 ++++++++++++++++ .../modifier/redis/JedisModifierTest.java | 16 ++++++++++++++++ .../profiler/util/AttachmentSimpleScopeTest.java | 16 ++++++++++++++++ .../profiler/util/ThreadLocalScopePoolTest.java | 16 ++++++++++++++++ .../client/PinpointClientSocketHandshaker.java | 16 ++++++++++++++++ .../navercorp/pinpoint/rpc/util/ListUtils.java | 16 ++++++++++++++++ .../rpc/client/ClientMessageListenerTest.java | 16 ++++++++++++++++ .../pinpoint/rpc/util/ListUtilsTest.java | 16 ++++++++++++++++ .../pinpoint/rpc/util/PinpointRPCTestUtils.java | 16 ++++++++++++++++ 42 files changed, 672 insertions(+) diff --git a/bootstrap-core/src/main/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArray.java b/bootstrap-core/src/main/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArray.java index 2b2232662..25f55d886 100644 --- a/bootstrap-core/src/main/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArray.java +++ b/bootstrap-core/src/main/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArray.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.interceptor; import java.util.concurrent.atomic.AtomicReferenceArray; diff --git a/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/AtomicMaxUpdater.java b/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/AtomicMaxUpdater.java index 2bf675183..da77c0b4f 100644 --- a/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/AtomicMaxUpdater.java +++ b/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/AtomicMaxUpdater.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.interceptor; import java.util.concurrent.atomic.AtomicInteger; diff --git a/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/InterceptorRegistryTest.java b/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/InterceptorRegistryTest.java index 208577960..6034528fe 100644 --- a/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/InterceptorRegistryTest.java +++ b/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/InterceptorRegistryTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.interceptor; import org.junit.Assert; diff --git a/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArrayTest.java b/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArrayTest.java index b08d0accb..509432f72 100644 --- a/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArrayTest.java +++ b/bootstrap-core/src/test/java/com/navercorp/pinpoint/bootstrap/interceptor/WeakAtomicReferenceArrayTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.interceptor; import junit.framework.Assert; diff --git a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/Attachment.java b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/Attachment.java index 1e125bc1b..7b243278c 100644 --- a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/Attachment.java +++ b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/Attachment.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.instrument; /** diff --git a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentFactory.java b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentFactory.java index 5e59c4815..4a7b2ef43 100644 --- a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentFactory.java +++ b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.instrument; /** diff --git a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentScope.java b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentScope.java index 77927a818..91e9cf78d 100644 --- a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentScope.java +++ b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/AttachmentScope.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.instrument; /** diff --git a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/DefaultScopeDefinition.java b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/DefaultScopeDefinition.java index a929b5238..524a2f2b4 100644 --- a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/DefaultScopeDefinition.java +++ b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/DefaultScopeDefinition.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.instrument; /** diff --git a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/ScopeDefinition.java b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/ScopeDefinition.java index a5f636798..5c4604300 100644 --- a/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/ScopeDefinition.java +++ b/bootstrap/src/main/java/com/navercorp/pinpoint/bootstrap/instrument/ScopeDefinition.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.bootstrap.instrument; /** diff --git a/commons/src/main/java/com/navercorp/pinpoint/common/util/Clock.java b/commons/src/main/java/com/navercorp/pinpoint/common/util/Clock.java index 645b8bdd2..34520b3f2 100644 --- a/commons/src/main/java/com/navercorp/pinpoint/common/util/Clock.java +++ b/commons/src/main/java/com/navercorp/pinpoint/common/util/Clock.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.common.util; /** diff --git a/commons/src/main/java/com/navercorp/pinpoint/common/util/MockClock.java b/commons/src/main/java/com/navercorp/pinpoint/common/util/MockClock.java index 8bae2fb26..b41d89adb 100644 --- a/commons/src/main/java/com/navercorp/pinpoint/common/util/MockClock.java +++ b/commons/src/main/java/com/navercorp/pinpoint/common/util/MockClock.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.common.util; /** diff --git a/commons/src/main/java/com/navercorp/pinpoint/common/util/SystemClock.java b/commons/src/main/java/com/navercorp/pinpoint/common/util/SystemClock.java index aecf49a79..51504d362 100644 --- a/commons/src/main/java/com/navercorp/pinpoint/common/util/SystemClock.java +++ b/commons/src/main/java/com/navercorp/pinpoint/common/util/SystemClock.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.common.util; /** diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/BinaryJedisModifier.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/BinaryJedisModifier.java index 22aa0f424..d9bcc5071 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/BinaryJedisModifier.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/BinaryJedisModifier.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import java.security.ProtectionDomain; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisClientModifier.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisClientModifier.java index a9607e72e..22db5685a 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisClientModifier.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisClientModifier.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import java.security.ProtectionDomain; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifier.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifier.java index 27676863e..ec2d65cdf 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifier.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifier.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import java.security.ProtectionDomain; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisMultiKeyPipelineBaseModifier.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisMultiKeyPipelineBaseModifier.java index cd5faad40..50a6c9fc0 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisMultiKeyPipelineBaseModifier.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisMultiKeyPipelineBaseModifier.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import com.navercorp.pinpoint.bootstrap.Agent; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineBaseModifier.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineBaseModifier.java index d43c3fad3..7e5be2f19 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineBaseModifier.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineBaseModifier.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import java.security.ProtectionDomain; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineModifier.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineModifier.java index 57a1a646e..319a13434 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineModifier.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisPipelineModifier.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import java.security.ProtectionDomain; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisMethodNames.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisMethodNames.java index 7bda52469..2c15e50ba 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisMethodNames.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisMethodNames.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.filter; import java.util.Arrays; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisPipelineMethodNames.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisPipelineMethodNames.java index e9c116dc2..82aec16af 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisPipelineMethodNames.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/JedisPipelineMethodNames.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.filter; import java.util.Arrays; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/NameBasedMethodFilter.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/NameBasedMethodFilter.java index 5ff637c3a..d2f337d5d 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/NameBasedMethodFilter.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/filter/NameBasedMethodFilter.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.filter; import java.lang.reflect.Modifier; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisClientConstructorInterceptor.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisClientConstructorInterceptor.java index bbd5073fe..f7fe573db 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisClientConstructorInterceptor.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisClientConstructorInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.interceptor; import java.util.HashMap; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisConstructorInterceptor.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisConstructorInterceptor.java index e6783e503..a5d276c49 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisConstructorInterceptor.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisConstructorInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.interceptor; import java.net.URI; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisMethodInterceptor.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisMethodInterceptor.java index 2b6bd60a6..bb1d24aff 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisMethodInterceptor.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisMethodInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.interceptor; import java.util.Map; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineConstructorInterceptor.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineConstructorInterceptor.java index c27dc0724..87990f880 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineConstructorInterceptor.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineConstructorInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.interceptor; import java.util.HashMap; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineMethodInterceptor.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineMethodInterceptor.java index 069f81054..85d37f2d5 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineMethodInterceptor.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineMethodInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.interceptor; import java.util.Map; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineSetClientMethodInterceptor.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineSetClientMethodInterceptor.java index 52d7909e8..e8c77f39b 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineSetClientMethodInterceptor.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/modifier/redis/interceptor/JedisPipelineSetClientMethodInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis.interceptor; import java.util.HashMap; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScope.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScope.java index a4a5355ed..6250136b6 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScope.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScope.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.AttachmentFactory; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeFactory.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeFactory.java index fc60e289f..c4b26f8a9 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeFactory.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.AttachmentFactory; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopeFactory.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopeFactory.java index 5288648b7..4956c4bfe 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopeFactory.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopeFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.Scope; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopePool.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopePool.java index 7d4d14369..450373130 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopePool.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/ScopePool.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.Scope; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScope.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScope.java index 47484816f..7c88fc50b 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScope.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScope.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.Scope; diff --git a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScopeFactory.java b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScopeFactory.java index 3aade4d28..92e95f2d2 100644 --- a/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScopeFactory.java +++ b/profiler/src/main/java/com/navercorp/pinpoint/profiler/util/SimpleScopeFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.Scope; diff --git a/profiler/src/test/java/com/navercorp/pinpoint/profiler/interceptor/JavaAssistTestObject.java b/profiler/src/test/java/com/navercorp/pinpoint/profiler/interceptor/JavaAssistTestObject.java index ded250c2c..f1abf2c0b 100644 --- a/profiler/src/test/java/com/navercorp/pinpoint/profiler/interceptor/JavaAssistTestObject.java +++ b/profiler/src/test/java/com/navercorp/pinpoint/profiler/interceptor/JavaAssistTestObject.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.interceptor; /** diff --git a/profiler/src/test/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifierTest.java b/profiler/src/test/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifierTest.java index 99c32699c..f76f92641 100644 --- a/profiler/src/test/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifierTest.java +++ b/profiler/src/test/java/com/navercorp/pinpoint/profiler/modifier/redis/JedisModifierTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.modifier.redis; import static org.junit.Assert.*; diff --git a/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeTest.java b/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeTest.java index ea7cf1df8..1a3a2c148 100644 --- a/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeTest.java +++ b/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/AttachmentSimpleScopeTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.AttachmentFactory; diff --git a/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/ThreadLocalScopePoolTest.java b/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/ThreadLocalScopePoolTest.java index 1b117a3ef..93368cd36 100644 --- a/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/ThreadLocalScopePoolTest.java +++ b/profiler/src/test/java/com/navercorp/pinpoint/profiler/util/ThreadLocalScopePoolTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.profiler.util; import com.navercorp.pinpoint.bootstrap.instrument.AttachmentFactory; diff --git a/rpc/src/main/java/com/navercorp/pinpoint/rpc/client/PinpointClientSocketHandshaker.java b/rpc/src/main/java/com/navercorp/pinpoint/rpc/client/PinpointClientSocketHandshaker.java index d5d7b6b5e..c30f80d1a 100644 --- a/rpc/src/main/java/com/navercorp/pinpoint/rpc/client/PinpointClientSocketHandshaker.java +++ b/rpc/src/main/java/com/navercorp/pinpoint/rpc/client/PinpointClientSocketHandshaker.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.rpc.client; import java.util.Map; diff --git a/rpc/src/main/java/com/navercorp/pinpoint/rpc/util/ListUtils.java b/rpc/src/main/java/com/navercorp/pinpoint/rpc/util/ListUtils.java index 91584a2df..5bb8fe1b7 100644 --- a/rpc/src/main/java/com/navercorp/pinpoint/rpc/util/ListUtils.java +++ b/rpc/src/main/java/com/navercorp/pinpoint/rpc/util/ListUtils.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.rpc.util; import java.util.List; diff --git a/rpc/src/test/java/com/navercorp/pinpoint/rpc/client/ClientMessageListenerTest.java b/rpc/src/test/java/com/navercorp/pinpoint/rpc/client/ClientMessageListenerTest.java index 8ce6335df..1e11c2c4d 100644 --- a/rpc/src/test/java/com/navercorp/pinpoint/rpc/client/ClientMessageListenerTest.java +++ b/rpc/src/test/java/com/navercorp/pinpoint/rpc/client/ClientMessageListenerTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.rpc.client; import java.io.IOException; diff --git a/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/ListUtilsTest.java b/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/ListUtilsTest.java index 1c17a0003..ad6817faa 100644 --- a/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/ListUtilsTest.java +++ b/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/ListUtilsTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.rpc.util; import java.util.ArrayList; diff --git a/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/PinpointRPCTestUtils.java b/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/PinpointRPCTestUtils.java index 6784b8e77..d72015513 100644 --- a/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/PinpointRPCTestUtils.java +++ b/rpc/src/test/java/com/navercorp/pinpoint/rpc/util/PinpointRPCTestUtils.java @@ -1,3 +1,19 @@ +/* + * Copyright 2014 NAVER Corp. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.navercorp.pinpoint.rpc.util; import java.io.IOException;