blob: e3a41d9287a8582c6dd72d3742b56ffb9ae2275c [file] [log] [blame]
/*
* 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.axis2.transport.base.endpoint;
import java.util.ArrayList;
import java.util.List;
public class URLEndpointsConfiguration {
public static final String URL_PATTERN = "urlPattern";
public static final String MESSAGE_BUILDERS = "messageBuilders";
public static final String MESSAGE_BUILDER = "messageBuilder";
public static final String CONTENT_TYPE = "contentType";
public static final String CLASS = "class";
public static final String PARAMETER = "parameter";
public static final String NAME = "name";
public static final String ENDPOINT = "endpoint";
private List<URLEndpoint> endpoints = new ArrayList<URLEndpoint>();
/**
* Return the endpoint matching the given URL.
* @param url url of the request
* @return the endpoint matching the given url
*/
public URLEndpoint getEndpoint(String url) {
for (URLEndpoint epr : endpoints) {
if (epr.isMatching(url)) {
return epr;
}
}
return null;
}
public List<URLEndpoint> getEndpoints() {
return endpoints;
}
public void addEndpoint(URLEndpoint endpoint) {
endpoints.add(endpoint);
}
}