You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ud...@apache.org on 2020/07/02 18:10:45 UTC

[geode] 09/29: GEODE-8041 - Create ManagementService interface. (#5062)

This is an automated email from the ASF dual-hosted git repository.

udo pushed a commit to branch feature/GEODE-8294
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 69837d74aea428aa9bbdb0afe210731b1088982e
Author: Patrick Johnson <pj...@pivotal.io>
AuthorDate: Wed May 6 14:50:06 2020 -0700

    GEODE-8041 - Create ManagementService interface. (#5062)
---
 .../services/management/ManagementService.java     | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/geode-common-services/src/main/java/org/apache/geode/services/management/ManagementService.java b/geode-common-services/src/main/java/org/apache/geode/services/management/ManagementService.java
new file mode 100644
index 0000000..3e9ca47
--- /dev/null
+++ b/geode-common-services/src/main/java/org/apache/geode/services/management/ManagementService.java
@@ -0,0 +1,39 @@
+/*
+ * 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.services.management;
+
+import java.util.Properties;
+
+import org.apache.geode.annotations.Experimental;
+import org.apache.geode.cache.Cache;
+
+/**
+ * Entry point for creating a cache and bootstrapping Geode using the BootstrappingService
+ *
+ * @since Geode 1.13.0
+ */
+@Experimental
+public interface ManagementService {
+
+  /**
+   * Creates a Geode Cache given some configuration.
+   *
+   * @param properties system properties to use when creating the Cache.
+   *
+   * @throws Exception is Cache cannot be created.
+   */
+  Cache createCache(Properties properties) throws Exception;
+}