Prepping up for code donation to ASF
Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/39c82519 Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/39c82519 Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/39c82519 Branch: refs/heads/phase1 Commit: 39c82519f83c0a9a413e704d250c8001e1c63247 Parents: f90a040 Author: Mohit Soni <mohitsoni1...@gmail.com> Authored: Mon Aug 24 11:08:48 2015 -0700 Committer: Mohit Soni <mohitsoni1...@gmail.com> Committed: Mon Aug 24 11:08:48 2015 -0700 ---------------------------------------------------------------------- .../myriad/executor/ContainerTaskStatusRequest.java | 15 +++++++++++++++ .../ebay/myriad/executor/MyriadExecutorDefaults.java | 15 +++++++++++++++ .../java/com/ebay/myriad/executor/NMTaskConfig.java | 15 +++++++++++++++ .../com/ebay/myriad/executor/MyriadExecutor.java | 15 +++++++++++++++ .../main/java/com/ebay/myriad/DisruptorManager.java | 2 +- .../src/main/java/com/ebay/myriad/Main.java | 2 +- .../src/main/java/com/ebay/myriad/MesosModule.java | 2 +- .../src/main/java/com/ebay/myriad/MyriadModule.java | 2 +- .../java/com/ebay/myriad/api/ClustersResource.java | 2 +- .../com/ebay/myriad/api/ConfigurationResource.java | 2 +- .../com/ebay/myriad/api/SchedulerStateResource.java | 2 +- .../myriad/api/model/FlexDownClusterRequest.java | 2 +- .../ebay/myriad/api/model/FlexUpClusterRequest.java | 2 +- .../myriad/api/model/GetSchedulerStateResponse.java | 2 +- .../myriad/configuration/MyriadConfiguration.java | 2 +- .../com/ebay/myriad/health/HealthCheckUtils.java | 2 +- .../ebay/myriad/health/MesosDriverHealthCheck.java | 2 +- .../ebay/myriad/health/MesosMasterHealthCheck.java | 2 +- .../com/ebay/myriad/health/ZookeeperHealthCheck.java | 2 +- .../java/com/ebay/myriad/scheduler/MyriadDriver.java | 2 +- .../ebay/myriad/scheduler/MyriadDriverManager.java | 2 +- .../com/ebay/myriad/scheduler/MyriadOperations.java | 2 +- .../com/ebay/myriad/scheduler/MyriadScheduler.java | 2 +- .../java/com/ebay/myriad/scheduler/NMProfile.java | 2 +- .../com/ebay/myriad/scheduler/NMProfileManager.java | 2 +- .../java/com/ebay/myriad/scheduler/Rebalancer.java | 2 +- .../com/ebay/myriad/scheduler/SchedulerUtils.java | 2 +- .../com/ebay/myriad/scheduler/TaskTerminator.java | 2 +- .../java/com/ebay/myriad/scheduler/TaskUtils.java | 2 +- .../myriad/scheduler/event/DisconnectedEvent.java | 2 +- .../com/ebay/myriad/scheduler/event/ErrorEvent.java | 2 +- .../myriad/scheduler/event/ExecutorLostEvent.java | 2 +- .../scheduler/event/FrameworkMessageEvent.java | 2 +- .../myriad/scheduler/event/OfferRescindedEvent.java | 2 +- .../myriad/scheduler/event/ReRegisteredEvent.java | 2 +- .../ebay/myriad/scheduler/event/RegisteredEvent.java | 2 +- .../myriad/scheduler/event/ResourceOffersEvent.java | 2 +- .../ebay/myriad/scheduler/event/SlaveLostEvent.java | 2 +- .../myriad/scheduler/event/StatusUpdateEvent.java | 2 +- .../event/handlers/DisconnectedEventHandler.java | 2 +- .../scheduler/event/handlers/ErrorEventHandler.java | 2 +- .../event/handlers/ExecutorLostEventHandler.java | 2 +- .../event/handlers/FrameworkMessageEventHandler.java | 2 +- .../event/handlers/OfferRescindedEventHandler.java | 2 +- .../event/handlers/ReRegisteredEventHandler.java | 2 +- .../event/handlers/RegisteredEventHandler.java | 2 +- .../event/handlers/ResourceOffersEventHandler.java | 2 +- .../event/handlers/SlaveLostEventHandler.java | 2 +- .../event/handlers/StatusUpdateEventHandler.java | 2 +- .../src/main/java/com/ebay/myriad/state/Cluster.java | 2 +- .../main/java/com/ebay/myriad/state/NodeTask.java | 2 +- .../java/com/ebay/myriad/state/SchedulerState.java | 2 +- .../src/test/java/com/ebay/myriad/MesosModule.java | 15 +++++++++++++++ 53 files changed, 123 insertions(+), 48 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-commons/src/main/java/com/ebay/myriad/executor/ContainerTaskStatusRequest.java ---------------------------------------------------------------------- diff --git a/myriad-commons/src/main/java/com/ebay/myriad/executor/ContainerTaskStatusRequest.java b/myriad-commons/src/main/java/com/ebay/myriad/executor/ContainerTaskStatusRequest.java index f663c7a..7854b71 100644 --- a/myriad-commons/src/main/java/com/ebay/myriad/executor/ContainerTaskStatusRequest.java +++ b/myriad-commons/src/main/java/com/ebay/myriad/executor/ContainerTaskStatusRequest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 PayPal + * + * 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.ebay.myriad.executor; /** http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-commons/src/main/java/com/ebay/myriad/executor/MyriadExecutorDefaults.java ---------------------------------------------------------------------- diff --git a/myriad-commons/src/main/java/com/ebay/myriad/executor/MyriadExecutorDefaults.java b/myriad-commons/src/main/java/com/ebay/myriad/executor/MyriadExecutorDefaults.java index 8f8ba7a..4cb2929 100644 --- a/myriad-commons/src/main/java/com/ebay/myriad/executor/MyriadExecutorDefaults.java +++ b/myriad-commons/src/main/java/com/ebay/myriad/executor/MyriadExecutorDefaults.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 PayPal + * + * 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.ebay.myriad.executor; /** http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-commons/src/main/java/com/ebay/myriad/executor/NMTaskConfig.java ---------------------------------------------------------------------- diff --git a/myriad-commons/src/main/java/com/ebay/myriad/executor/NMTaskConfig.java b/myriad-commons/src/main/java/com/ebay/myriad/executor/NMTaskConfig.java index c733b20..090112b 100644 --- a/myriad-commons/src/main/java/com/ebay/myriad/executor/NMTaskConfig.java +++ b/myriad-commons/src/main/java/com/ebay/myriad/executor/NMTaskConfig.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 PayPal + * + * 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.ebay.myriad.executor; import java.util.Map; http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-executor/src/main/java/com/ebay/myriad/executor/MyriadExecutor.java ---------------------------------------------------------------------- diff --git a/myriad-executor/src/main/java/com/ebay/myriad/executor/MyriadExecutor.java b/myriad-executor/src/main/java/com/ebay/myriad/executor/MyriadExecutor.java index 1ea06ca..b7e7ea4 100644 --- a/myriad-executor/src/main/java/com/ebay/myriad/executor/MyriadExecutor.java +++ b/myriad-executor/src/main/java/com/ebay/myriad/executor/MyriadExecutor.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 PayPal + * + * 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.ebay.myriad.executor; import com.google.gson.Gson; http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/DisruptorManager.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/DisruptorManager.java b/myriad-scheduler/src/main/java/com/ebay/myriad/DisruptorManager.java index 685b90c..de37cac 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/DisruptorManager.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/DisruptorManager.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/Main.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/Main.java b/myriad-scheduler/src/main/java/com/ebay/myriad/Main.java index db4f6d9..64eb3be 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/Main.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/Main.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/MesosModule.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/MesosModule.java b/myriad-scheduler/src/main/java/com/ebay/myriad/MesosModule.java index 17c750e..e4b63d6 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/MesosModule.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/MesosModule.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/MyriadModule.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/MyriadModule.java b/myriad-scheduler/src/main/java/com/ebay/myriad/MyriadModule.java index 8f803b8..9532604 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/MyriadModule.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/MyriadModule.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/api/ClustersResource.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/api/ClustersResource.java b/myriad-scheduler/src/main/java/com/ebay/myriad/api/ClustersResource.java index fe8474f..5e9e24b 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/api/ClustersResource.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/api/ClustersResource.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/api/ConfigurationResource.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/api/ConfigurationResource.java b/myriad-scheduler/src/main/java/com/ebay/myriad/api/ConfigurationResource.java index 75a48d1..2b4c855 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/api/ConfigurationResource.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/api/ConfigurationResource.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/api/SchedulerStateResource.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/api/SchedulerStateResource.java b/myriad-scheduler/src/main/java/com/ebay/myriad/api/SchedulerStateResource.java index 85d373e..3b8189b 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/api/SchedulerStateResource.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/api/SchedulerStateResource.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexDownClusterRequest.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexDownClusterRequest.java b/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexDownClusterRequest.java index 758d62a..eaf4918 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexDownClusterRequest.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexDownClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexUpClusterRequest.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexUpClusterRequest.java b/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexUpClusterRequest.java index e81cb28..74406cd 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexUpClusterRequest.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/FlexUpClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/GetSchedulerStateResponse.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/GetSchedulerStateResponse.java b/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/GetSchedulerStateResponse.java index 2bd97e7..403dd8a 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/GetSchedulerStateResponse.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/api/model/GetSchedulerStateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/configuration/MyriadConfiguration.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/configuration/MyriadConfiguration.java b/myriad-scheduler/src/main/java/com/ebay/myriad/configuration/MyriadConfiguration.java index 4027189..ae0361e 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/configuration/MyriadConfiguration.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/configuration/MyriadConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/health/HealthCheckUtils.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/health/HealthCheckUtils.java b/myriad-scheduler/src/main/java/com/ebay/myriad/health/HealthCheckUtils.java index 1c3fd18..3e9da33 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/health/HealthCheckUtils.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/health/HealthCheckUtils.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosDriverHealthCheck.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosDriverHealthCheck.java b/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosDriverHealthCheck.java index 66c9690..4d2dd24 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosDriverHealthCheck.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosDriverHealthCheck.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosMasterHealthCheck.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosMasterHealthCheck.java b/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosMasterHealthCheck.java index eeb6aa7..c4f91f7 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosMasterHealthCheck.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/health/MesosMasterHealthCheck.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/health/ZookeeperHealthCheck.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/health/ZookeeperHealthCheck.java b/myriad-scheduler/src/main/java/com/ebay/myriad/health/ZookeeperHealthCheck.java index 466d142..b76d5fd 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/health/ZookeeperHealthCheck.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/health/ZookeeperHealthCheck.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriver.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriver.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriver.java index 15a661d..6d6712d 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriver.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriver.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriverManager.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriverManager.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriverManager.java index db2643a..f429a2a 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriverManager.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadDriverManager.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadOperations.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadOperations.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadOperations.java index 2fc6fd0..ab466cf 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadOperations.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadOperations.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadScheduler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadScheduler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadScheduler.java index 55665a6..8f06ac0 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadScheduler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/MyriadScheduler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfile.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfile.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfile.java index 7048f2e..fb93412 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfile.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfile.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfileManager.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfileManager.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfileManager.java index 317290b..a3133e1 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfileManager.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/NMProfileManager.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/Rebalancer.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/Rebalancer.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/Rebalancer.java index d425c1f..ba2bb1a 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/Rebalancer.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/Rebalancer.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/SchedulerUtils.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/SchedulerUtils.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/SchedulerUtils.java index 3d04bbb..36da5b1 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/SchedulerUtils.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/SchedulerUtils.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskTerminator.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskTerminator.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskTerminator.java index 94d670a..874b445 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskTerminator.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskTerminator.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskUtils.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskUtils.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskUtils.java index 68dcde5..319ca50 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskUtils.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/TaskUtils.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/DisconnectedEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/DisconnectedEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/DisconnectedEvent.java index 3d95412..2c99063 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/DisconnectedEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/DisconnectedEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ErrorEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ErrorEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ErrorEvent.java index 5bd2cac..82769a1 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ErrorEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ErrorEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ExecutorLostEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ExecutorLostEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ExecutorLostEvent.java index 0ce878f..b8eaa6b 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ExecutorLostEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ExecutorLostEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/FrameworkMessageEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/FrameworkMessageEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/FrameworkMessageEvent.java index fd73761..a325aa1 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/FrameworkMessageEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/FrameworkMessageEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/OfferRescindedEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/OfferRescindedEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/OfferRescindedEvent.java index dc1bff2..6ceec77 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/OfferRescindedEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/OfferRescindedEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ReRegisteredEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ReRegisteredEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ReRegisteredEvent.java index f04d9ee..f12ee85 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ReRegisteredEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ReRegisteredEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/RegisteredEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/RegisteredEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/RegisteredEvent.java index 96f7412..969ba6f 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/RegisteredEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/RegisteredEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ResourceOffersEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ResourceOffersEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ResourceOffersEvent.java index d36d482..b49409d 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ResourceOffersEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/ResourceOffersEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/SlaveLostEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/SlaveLostEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/SlaveLostEvent.java index 61171d1..99430a5 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/SlaveLostEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/SlaveLostEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/StatusUpdateEvent.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/StatusUpdateEvent.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/StatusUpdateEvent.java index 57ad431..55c77c8 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/StatusUpdateEvent.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/StatusUpdateEvent.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/DisconnectedEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/DisconnectedEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/DisconnectedEventHandler.java index 2b52070..a73382d 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/DisconnectedEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/DisconnectedEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ErrorEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ErrorEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ErrorEventHandler.java index a29fe3a..31ce13a 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ErrorEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ErrorEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ExecutorLostEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ExecutorLostEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ExecutorLostEventHandler.java index fa39e10..31ead7c 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ExecutorLostEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ExecutorLostEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/FrameworkMessageEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/FrameworkMessageEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/FrameworkMessageEventHandler.java index e00e6b8..72578a6 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/FrameworkMessageEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/FrameworkMessageEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/OfferRescindedEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/OfferRescindedEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/OfferRescindedEventHandler.java index f76a844..a725761 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/OfferRescindedEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/OfferRescindedEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ReRegisteredEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ReRegisteredEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ReRegisteredEventHandler.java index b4fdf02..fbb78e7 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ReRegisteredEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ReRegisteredEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/RegisteredEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/RegisteredEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/RegisteredEventHandler.java index 02f0f47..6f9b84b 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/RegisteredEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/RegisteredEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ResourceOffersEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ResourceOffersEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ResourceOffersEventHandler.java index fbe93d6..51730ac 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ResourceOffersEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/ResourceOffersEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/SlaveLostEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/SlaveLostEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/SlaveLostEventHandler.java index 8ac59c9..5fa503d 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/SlaveLostEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/SlaveLostEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/StatusUpdateEventHandler.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/StatusUpdateEventHandler.java b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/StatusUpdateEventHandler.java index de2df16..b04a2e3 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/StatusUpdateEventHandler.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/scheduler/event/handlers/StatusUpdateEventHandler.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/state/Cluster.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/state/Cluster.java b/myriad-scheduler/src/main/java/com/ebay/myriad/state/Cluster.java index 6518a4f..45febb0 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/state/Cluster.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/state/Cluster.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/state/NodeTask.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/state/NodeTask.java b/myriad-scheduler/src/main/java/com/ebay/myriad/state/NodeTask.java index 6c822b9..5b8b87d 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/state/NodeTask.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/state/NodeTask.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/main/java/com/ebay/myriad/state/SchedulerState.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/main/java/com/ebay/myriad/state/SchedulerState.java b/myriad-scheduler/src/main/java/com/ebay/myriad/state/SchedulerState.java index 3ddd7b9..ed172b9 100644 --- a/myriad-scheduler/src/main/java/com/ebay/myriad/state/SchedulerState.java +++ b/myriad-scheduler/src/main/java/com/ebay/myriad/state/SchedulerState.java @@ -1,5 +1,5 @@ /** - * Copyright 2012-2014 eBay Software Foundation, All Rights Reserved. + * Copyright 2015 PayPal * * 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 http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/39c82519/myriad-scheduler/src/test/java/com/ebay/myriad/MesosModule.java ---------------------------------------------------------------------- diff --git a/myriad-scheduler/src/test/java/com/ebay/myriad/MesosModule.java b/myriad-scheduler/src/test/java/com/ebay/myriad/MesosModule.java index b2448d2..34d49dc 100644 --- a/myriad-scheduler/src/test/java/com/ebay/myriad/MesosModule.java +++ b/myriad-scheduler/src/test/java/com/ebay/myriad/MesosModule.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 PayPal + * + * 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.ebay.myriad; import java.util.concurrent.FutureTask;