From 4ba21213a06430558997b58c54611d3228a7c12d Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Sun, 9 Aug 2015 10:47:57 -0400 Subject: [PATCH] Add missing license headers in alto-commons Change-Id: Ib3b5d2223719f61b42eb5cd5caa951bcc5c8931b Signed-off-by: Thanh Ha --- .../org/opendaylight/alto/commons/helper/Converter.java | 8 ++++++++ .../opendaylight/alto/commons/helper/ServiceHelper.java | 8 ++++++++ .../opendaylight/alto/commons/helper/TypeWrapper.java | 8 ++++++++ .../types/converter/RFC2ModelCostMapConverter.java | 9 +++++++++ .../types/converter/RFC2ModelCostMapDataConverter.java | 8 ++++++++ .../types/converter/RFC2ModelCostMapMetaConverter.java | 8 ++++++++ .../RFC2ModelEndpointAddressGroupConverter.java | 8 ++++++++ .../converter/RFC2ModelEndpointPropMapConverter.java | 8 ++++++++ .../types/converter/RFC2ModelNetworkMapConverter.java | 8 ++++++++ .../converter/RFC2ModelNetworkMapDataConverter.java | 8 ++++++++ .../converter/YANGJSON2RFCAddressGroupConverter.java | 8 ++++++++ .../types/converter/YANGJSON2RFCCostMapConverter.java | 8 ++++++++ .../types/converter/YANGJSON2RFCNetworkMapConverter.java | 8 ++++++++ .../alto/commons/types/model150404/MediaType.java | 1 + .../alto/commons/types/model150404/ModelCostMap.java | 8 ++++++++ .../alto/commons/types/model150404/ModelCostMapData.java | 8 ++++++++ .../alto/commons/types/model150404/ModelCostMapMeta.java | 8 ++++++++ .../alto/commons/types/model150404/ModelCostType.java | 8 ++++++++ .../commons/types/model150404/ModelDependentVtag.java | 8 ++++++++ .../alto/commons/types/model150404/ModelDstCosts.java | 8 ++++++++ .../alto/commons/types/model150404/ModelEndpoint.java | 8 ++++++++ .../types/model150404/ModelEndpointAddressGroup.java | 8 ++++++++ .../types/model150404/ModelEndpointProperties.java | 8 ++++++++ .../types/model150404/ModelEndpointPropertyMap.java | 8 ++++++++ .../types/model150404/ModelEndpointPropertyMeta.java | 8 ++++++++ .../alto/commons/types/model150404/ModelJSONMapper.java | 8 ++++++++ .../alto/commons/types/model150404/ModelNetworkMap.java | 8 ++++++++ .../alto/commons/types/model150404/ModelProperties.java | 8 ++++++++ .../alto/commons/types/rfc7285/Extensible.java | 8 ++++++++ .../alto/commons/types/rfc7285/FormatValidator.java | 8 ++++++++ .../alto/commons/types/rfc7285/MediaType.java | 1 + .../alto/commons/types/rfc7285/RFC7285CostMap.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285CostType.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285Endpoint.java | 8 ++++++++ .../types/rfc7285/RFC7285EndpointPropertyMap.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285IRD.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285JSONMapper.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285NetworkMap.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285QueryPairs.java | 8 ++++++++ .../alto/commons/types/rfc7285/RFC7285VersionTag.java | 8 ++++++++ 40 files changed, 307 insertions(+) diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/Converter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/Converter.java index afd9da1b..c7667278 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/Converter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/Converter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.helper; public abstract class Converter { diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/ServiceHelper.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/ServiceHelper.java index 1bfa61ac..16972613 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/ServiceHelper.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/ServiceHelper.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.helper; import java.util.Dictionary; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/TypeWrapper.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/TypeWrapper.java index 16bcc263..0d5e0dea 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/TypeWrapper.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/helper/TypeWrapper.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.helper; public class TypeWrapper { diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapConverter.java index 14a0b2ac..1f911465 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapConverter.java @@ -1,4 +1,13 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; + import java.util.LinkedList; import org.opendaylight.alto.commons.helper.Converter; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapDataConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapDataConverter.java index a212c781..351f2aba 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapDataConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapDataConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapMetaConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapMetaConverter.java index 0eda12f7..15f89890 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapMetaConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelCostMapMetaConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import org.opendaylight.alto.commons.helper.Converter; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointAddressGroupConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointAddressGroupConverter.java index 29c21467..796f63d1 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointAddressGroupConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointAddressGroupConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import java.util.List; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointPropMapConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointPropMapConverter.java index f4db5914..64ad2552 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointPropMapConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelEndpointPropMapConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import java.io.IOException; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapConverter.java index dfe9bef2..12550150 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import org.opendaylight.alto.commons.helper.Converter; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapDataConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapDataConverter.java index 69734018..3f337330 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapDataConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/RFC2ModelNetworkMapDataConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import java.util.Map; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCAddressGroupConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCAddressGroupConverter.java index 5e42549c..64b0c2d4 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCAddressGroupConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCAddressGroupConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import org.opendaylight.alto.commons.helper.Converter; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCCostMapConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCCostMapConverter.java index 6f477dd7..b742bfc8 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCCostMapConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCCostMapConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import org.opendaylight.alto.commons.helper.Converter; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCNetworkMapConverter.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCNetworkMapConverter.java index 4b36788d..6e24ed63 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCNetworkMapConverter.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/converter/YANGJSON2RFCNetworkMapConverter.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.converter; import org.opendaylight.alto.commons.helper.Converter; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/MediaType.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/MediaType.java index 92231b73..8f641a51 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/MediaType.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/MediaType.java @@ -5,6 +5,7 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ + package org.opendaylight.alto.commons.types.model150404; class MediaType { diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMap.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMap.java index dc926c3d..fcb3e899 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMap.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMap.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapData.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapData.java index 27af6a43..7c12ef3a 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapData.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapData.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapMeta.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapMeta.java index c7afe3f4..c8bd1ba2 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapMeta.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostMapMeta.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostType.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostType.java index ac37f53d..f10b20b9 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostType.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelCostType.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import org.opendaylight.yang.gen.v1.urn.opendaylight.alto.service.types.rev150404.CostMetric; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDependentVtag.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDependentVtag.java index 766b9b69..d496bfa7 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDependentVtag.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDependentVtag.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import org.opendaylight.yang.gen.v1.urn.opendaylight.alto.service.types.rev150404.ResourceId; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDstCosts.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDstCosts.java index 05506773..4fe52ec6 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDstCosts.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelDstCosts.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import org.opendaylight.yang.gen.v1.urn.opendaylight.alto.rev150404.cost.map.map.DstCosts; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpoint.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpoint.java index f17cb66e..1041df63 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpoint.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpoint.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import org.opendaylight.yang.gen.v1.urn.opendaylight.alto.rev150404.network.map.Map; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointAddressGroup.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointAddressGroup.java index 0ced11fa..7ce015c1 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointAddressGroup.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointAddressGroup.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointProperties.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointProperties.java index c87a7904..7535d884 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointProperties.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMap.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMap.java index 3d479394..10d15c90 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMap.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMap.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMeta.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMeta.java index 780f981f..117640b9 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMeta.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelEndpointPropertyMeta.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.util.LinkedList; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelJSONMapper.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelJSONMapper.java index 0dc3d304..9615ce5f 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelJSONMapper.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelJSONMapper.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import java.io.IOException; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelNetworkMap.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelNetworkMap.java index 7d844e59..da6b5d07 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelNetworkMap.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelNetworkMap.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import org.opendaylight.yang.gen.v1.urn.opendaylight.alto.rev150404.NetworkMap; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelProperties.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelProperties.java index f8a634a4..73aa0eb3 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelProperties.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/model150404/ModelProperties.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.model150404; import org.opendaylight.yang.gen.v1.urn.opendaylight.alto.service.types.rev150404.EndpointPropertyType; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/Extensible.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/Extensible.java index 48322758..d1f5fec5 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/Extensible.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/Extensible.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.Map; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/FormatValidator.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/FormatValidator.java index 5f2bd27d..d4e33b2c 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/FormatValidator.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/FormatValidator.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.regex.Pattern; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/MediaType.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/MediaType.java index 67d5636d..69bb72ae 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/MediaType.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/MediaType.java @@ -5,6 +5,7 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ + package org.opendaylight.alto.commons.types.rfc7285; public class MediaType { diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostMap.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostMap.java index 914267b3..176f8689 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostMap.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostMap.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.List; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostType.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostType.java index a3aa9278..378dbaef 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostType.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285CostType.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285Endpoint.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285Endpoint.java index 3dafddc4..8507ba63 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285Endpoint.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285Endpoint.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285EndpointPropertyMap.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285EndpointPropertyMap.java index 4adda919..c66fd6e1 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285EndpointPropertyMap.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285EndpointPropertyMap.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.LinkedHashMap; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285IRD.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285IRD.java index 79d072e0..7364400c 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285IRD.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285IRD.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.List; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285JSONMapper.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285JSONMapper.java index ebd2d699..0a6bd2ad 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285JSONMapper.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285JSONMapper.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.Arrays; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285NetworkMap.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285NetworkMap.java index 3d3d8f42..da97493c 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285NetworkMap.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285NetworkMap.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.LinkedHashMap; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285QueryPairs.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285QueryPairs.java index 2f0a265b..8a00aa54 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285QueryPairs.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285QueryPairs.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import java.util.List; diff --git a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285VersionTag.java b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285VersionTag.java index 3aebb7d7..f16befec 100644 --- a/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285VersionTag.java +++ b/alto-commons/src/main/java/org/opendaylight/alto/commons/types/rfc7285/RFC7285VersionTag.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2015 Yale University and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.alto.commons.types.rfc7285; import com.fasterxml.jackson.annotation.JsonProperty; -- 2.36.6