All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.coolstuff.springframework.owncloud.service.impl.rest.OwncloudRestProperties Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
/*-
 * #%L
 * owncloud-spring-boot-starter
 * %%
 * Copyright (C) 2016 - 2017 by the original Authors
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public
 * License along with this program.  If not, see
 * .
 * #L%
 */
package software.coolstuff.springframework.owncloud.service.impl.rest;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.validation.annotation.Validated;
import software.coolstuff.springframework.owncloud.service.impl.OwncloudProperties;

import javax.validation.constraints.Min;
import java.util.concurrent.TimeUnit;

/**
 * advanced Properties for REST Implementation of the Owncloud Services
 *
 * @author mufasa1976
 */
@Validated
@Getter
@Setter
@ConfigurationProperties("owncloud")
public class OwncloudRestProperties extends OwncloudProperties {

  /**
   * advanced Properties for the REST Resource Service Implementation
   *
   * @author mufasa1976
   */
  @Validated
  @Getter
  @Setter
  public static class ResourceServiceProperties extends OwncloudProperties.ResourceServiceProperties {

    /**
     * Google-Cache Properties for the Sardine Library Cache
     *
     * @author mufasa1976
     */
    @Validated
    @Getter
    @Setter
    public static class CacheProperties {
      /** allowed update Concurrency */
      @Min(1)
      private Integer concurrencyLevel;
      /** When will the Entry be removed from the Cache after last Access */
      @Min(0)
      private Long expireAfterAccess;
      /** Time Unit for {@link #expireAfterAccess}. Default: SECONDS */
      private TimeUnit expireAfterAccessTimeUnit = TimeUnit.SECONDS;
      /** When will the Entry be removed from the Cache after last Write */
      @Min(0)
      private Long expireAfterWrite;
      /** Time Unit for {@link #expireAfterWrite}. Default: SECONDS */
      private TimeUnit expireAfterWriteTimeUnit = TimeUnit.SECONDS;
      /** Initial Capacity for the Cache */
      @Min(0)
      private Integer initialCapacity;
      /** maximum Entries for the Cache */
      @Min(0)
      private Long maximumSize;
      /** maximum Weight for the Cache */
      @Min(0)
      private Long maximumWeight;
      /** When will the Entry be refreshed after the last Write */
      @Min(1)
      private Long refreshAfterWrite;
      /** Time Unit for {@link #refreshAfterWrite}. Default: SECONDS */
      private TimeUnit refreshAfterWriteTimeUnit = TimeUnit.SECONDS;
    }

    /** Google-Cache Properties for the Sardine Library Cache */
    private CacheProperties sardineCache = new CacheProperties();
  }

  /** advanced Properties for the REST Resource Service Implementation */
  private ResourceServiceProperties resourceService = new ResourceServiceProperties();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy