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

com.github.quartzwebui.service.strategy.DefaultServiceStrategyURL Maven / Gradle / Ivy

The newest version!
/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.github.quartzwebui.service.strategy;

/**
 * 默认策略URL实现类
 * @author quxiucheng [[email protected]]
 */
public class DefaultServiceStrategyURL implements ServiceStrategyURL {


    private String URL;

    public DefaultServiceStrategyURL(String URL) {
        this.URL = URL;
    }


    public String getURL() {
        return URL;
    }

    public void setURL(String URL) {
        this.URL = URL;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy