Optimize imports.

Format source code.
This commit is contained in:
John Blum
2019-06-09 18:07:40 -07:00
parent 9054cf84ea
commit 567b231954
6 changed files with 19 additions and 7 deletions

View File

@@ -13,7 +13,6 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.geode.boot.autoconfigure;
import java.util.Optional;
@@ -21,6 +20,7 @@ import java.util.Optional;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.GemFireCache;
import org.apache.geode.cache.client.ClientCache;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.context.annotation.Bean;

View File

@@ -13,12 +13,12 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.geode.boot.autoconfigure;
import org.apache.geode.cache.GemFireCache;
import org.apache.geode.cache.client.ClientCache;
import org.apache.geode.distributed.Locator;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;

View File

@@ -20,8 +20,7 @@ import java.util.Properties;
import org.apache.geode.cache.GemFireCache;
import org.apache.geode.cache.client.ClientCache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
@@ -45,6 +44,9 @@ import org.springframework.geode.core.env.VcapPropertySource;
import org.springframework.geode.core.env.support.CloudCacheService;
import org.springframework.lang.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Spring Boot {@link EnableAutoConfiguration auto-configuration} enabling Apache Geode's Security functionality,
* and specifically Authentication between a client and server using Spring Data Geode Security annotations.

View File

@@ -13,10 +13,10 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.geode.boot.autoconfigure;
import org.apache.geode.cache.GemFireCache;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;

View File

@@ -13,7 +13,6 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.geode.boot.autoconfigure.configuration;
import java.util.Properties;
@@ -44,6 +43,18 @@ import org.springframework.geode.boot.autoconfigure.configuration.support.Servic
* @see java.util.Properties
* @see org.springframework.boot.context.properties.ConfigurationProperties
* @see org.springframework.boot.context.properties.NestedConfigurationProperty
* @see org.springframework.geode.boot.autoconfigure.configuration.support.CacheProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.ClusterProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.DiskStoreProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.EntityProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.LocatorProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.LoggingProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.ManagementProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.ManagerProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.PdxProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.PoolProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.SecurityProperties
* @see org.springframework.geode.boot.autoconfigure.configuration.support.ServiceProperties
* @since 1.0.0
*/
@SuppressWarnings("unused")

View File

@@ -13,7 +13,6 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.geode.core.env;
import static org.springframework.data.gemfire.util.RuntimeExceptionFactory.newIllegalArgumentException;