aboutsummaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.common/src/main/java/org/eclipse/winery/common/ids/Namespace.java
blob: a848c144d29c5fa6ec8dbf49753c1349f01e22fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*******************************************************************************
 * Copyright (c) 2013,2015 University of Stuttgart.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     Oliver Kopp - initial API and implementation
 *******************************************************************************/
package org.eclipse.winery.common.ids;

import org.apache.commons.lang3.StringUtils;
import org.eclipse.winery.common.StringEncodedAndDecoded;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Namespace extends StringEncodedAndDecoded {
	
	private static final Logger logger = LoggerFactory.getLogger(Namespace.class);
	
	
	public Namespace(String uri, boolean URLencoded) {
		super(uri, URLencoded);
		if (StringUtils.isEmpty(uri)) {
			Namespace.logger.error("Empty URI has been passed to Namespace constructor.");
			// throw new IllegalArgumentException("uri must not be empty or null.");
		}
	}
	
}