forked from apache/geode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GEODE-7107: Introduce HttpService interface (apache#3963)
- This allows for Jetty to be optional on the classpath.
- Loading branch information
1 parent
083f1ba
commit feb7567
Showing
21 changed files
with
174 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
geode-core/src/main/java/org/apache/geode/cache/internal/HttpService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* 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.geode.cache.internal; | ||
|
||
import java.nio.file.Path; | ||
import java.util.Map; | ||
|
||
import org.apache.geode.internal.cache.InternalCache; | ||
|
||
/** | ||
* This interface provides access to the simple http service exposed on the Geode | ||
* {@link InternalCache}. An instance can be retrieved by calling | ||
* {@code InternalCache.getHttpService()}. | ||
*/ | ||
public interface HttpService { | ||
|
||
/** | ||
* Stop the service. This should also stop any transitively managed components. Starting the | ||
* service is implicitly handled by {@link #addWebApplication(String, Path, Map)} | ||
*/ | ||
void stop(); | ||
|
||
/** | ||
* Add a new web application in the form of a war file. This method is also implicitly | ||
* responsible for starting the container if necessary. | ||
* | ||
* @param webAppContext the context path to be exposed for the web application | ||
* @param warFilePath the absolute path to the war file | ||
* @param attributeNameValuePairs attributes to be set on the servlet context | ||
*/ | ||
void addWebApplication(String webAppContext, Path warFilePath, | ||
Map<String, Object> attributeNameValuePairs) throws Exception; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.