Repository: ignite Updated Branches: refs/heads/master 267ace71a -> 24fac2da9
IGNITE-6640: Introduction of models import/export. Added missed licence. This closes #2968 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/24fac2da Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/24fac2da Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/24fac2da Branch: refs/heads/master Commit: 24fac2da9a64234e035750b630014494d9c9841e Parents: 267ace7 Author: Yury Babak <[email protected]> Authored: Thu Nov 2 12:52:59 2017 +0300 Committer: Igor Sapego <[email protected]> Committed: Thu Nov 2 12:52:59 2017 +0300 ---------------------------------------------------------------------- .../main/java/org/apache/ignite/ml/Exportable.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/24fac2da/modules/ml/src/main/java/org/apache/ignite/ml/Exportable.java ---------------------------------------------------------------------- diff --git a/modules/ml/src/main/java/org/apache/ignite/ml/Exportable.java b/modules/ml/src/main/java/org/apache/ignite/ml/Exportable.java index f30f46d..83b3578 100644 --- a/modules/ml/src/main/java/org/apache/ignite/ml/Exportable.java +++ b/modules/ml/src/main/java/org/apache/ignite/ml/Exportable.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 org.apache.ignite.ml; /**
