org.mobicents.xcap.client.uri.UriBuilder Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
/**
*
*/
package org.mobicents.xcap.client.uri;
import java.net.URI;
import java.net.URISyntaxException;
/**
* @author martins
*
*/
public class UriBuilder {
private String schemeAndAuthority;
private String xcapRoot;
private String documentSelector;
private String elementSelector;
private String terminalSelector;
private String namespaceBindings;
/**
* @return the schemeAndAuthority
*/
public String getSchemeAndAuthority() {
return schemeAndAuthority;
}
/**
* @param schemeAndAuthority the schemeAndAuthority to set
*/
public UriBuilder setSchemeAndAuthority(String schemeAndAuthority) {
this.schemeAndAuthority = schemeAndAuthority;
return this;
}
/**
* @return the xcapRoot
*/
public String getXcapRoot() {
return xcapRoot;
}
/**
*
* @param xcapRoot the xcapRoot to set, must end with /
* @return
* @throws IllegalArgumentException if xcap root ends with /
*/
public UriBuilder setXcapRoot(String xcapRoot) throws IllegalArgumentException {
if (xcapRoot.charAt(xcapRoot.length()-1) != '/') {
throw new IllegalArgumentException("xcap root must end with /");
}
this.xcapRoot = xcapRoot;
return this;
}
/**
* @return the documentSelector
*/
public String getDocumentSelector() {
return documentSelector;
}
/**
*
* @param documentSelector the documentSelector to set, must not start with /
* @return
* @throws IllegalArgumentException if documentSelector starts with /
*/
public UriBuilder setDocumentSelector(String documentSelector) throws IllegalArgumentException {
if (documentSelector.charAt(0) == '/') {
throw new IllegalArgumentException("document selector must not start with /");
}
this.documentSelector = documentSelector;
return this;
}
/**
* @return the elementSelector
*/
public String getElementSelector() {
return elementSelector;
}
/**
* @param elementSelector the elementSelector to set, must not start with /
* @return
* @throws IllegalArgumentException if elementSelector starts with /
*/
public UriBuilder setElementSelector(String elementSelector) throws IllegalArgumentException {
if (elementSelector.charAt(0) == '/') {
throw new IllegalArgumentException("element selector must not start with /");
}
this.elementSelector = elementSelector;
return this;
}
/**
* @return the terminalSelector
*/
public String getTerminalSelector() {
return terminalSelector;
}
/**
* @param terminalSelector the terminalSelector to set
* @return
* @throws IllegalArgumentException if terminalSelector starts with /
*/
public UriBuilder setTerminalSelector(String terminalSelector) throws IllegalArgumentException {
if (terminalSelector.charAt(0) == '/') {
throw new IllegalArgumentException("terminal selector must not start with /");
}
this.terminalSelector = terminalSelector;
return this;
}
/**
* @return the namespaceBindings
*/
public String getNamespaceBindings() {
return namespaceBindings;
}
/**
* @param namespaceBindings the namespaceBindings to set, must not start with ?
* @return
* @throws IllegalArgumentException if namespaceBindings starts with ?
*/
public UriBuilder setNamespaceBindings(String namespaceBindings) throws IllegalArgumentException {
if (namespaceBindings.charAt(0) == '?') {
throw new IllegalArgumentException("namespace bindings must not start with ?");
}
this.namespaceBindings = namespaceBindings;
return this;
}
private static final String RESOURCE_SELECTOR_SEPARATOR = "/~~/";
public URI toURI() throws URISyntaxException {
final StringBuilder sb = new StringBuilder(schemeAndAuthority);
if (xcapRoot != null) {
sb.append(xcapRoot);
}
sb.append(documentSelector);
if (elementSelector != null) {
sb.append(RESOURCE_SELECTOR_SEPARATOR).append(elementSelector);
if (terminalSelector != null) {
sb.append('/').append(terminalSelector);
}
if (namespaceBindings != null) {
sb.append('?').append(namespaceBindings);
}
}
return new URI(sb.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy