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

org.webpieces.plugins.properties.PropertiesGuiDescriptor Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.plugins.properties;

import java.util.ArrayList;
import java.util.List;

import org.webpieces.plugins.backend.spi.BackendGuiDescriptor;
import org.webpieces.plugins.backend.spi.MenuCategory;
import org.webpieces.plugins.backend.spi.PageDescriptor;

public class PropertiesGuiDescriptor implements BackendGuiDescriptor {

	@Override
	public List getWireIntoGuiDescriptors() {
		List descriptors = new ArrayList<>();
		descriptors.add(new PageDescriptor(MenuCategory.MANAGEMENT, "Modify Server Properties", PropertiesRouteId.MAIN_PROPERTIES, true));
		
		return descriptors;
	}

	@Override
	public String getPluginName() {
		return PropertiesPlugin.class.getName();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy