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

org.vrspace.server.config.WorldConfig Maven / Gradle / Ivy

There is a newer version: 0.7.5
Show newest version
package org.vrspace.server.config;

import java.util.HashMap;
import java.util.Map;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

import lombok.Data;
import lombok.NoArgsConstructor;

@Configuration
@ConfigurationProperties("org.vrspace.server")
@Data
@NoArgsConstructor
public class WorldConfig {
  private Map world = new HashMap<>();

  @Data
  @NoArgsConstructor
  public static class WorldProperties {
    private String type;
    private String name;
    private String url;
    private String portalMesh;
    private String portalThumbnail;
    private String portalScript;
    private boolean available;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy