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

org.bimserver.shared.interfaces.AdminInterfaceAdaptor Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

The newest version!
package org.bimserver.shared.interfaces;

/******************************************************************************
 * Copyright (C) 2009-2016  BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero 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 Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see {@literal}.
 *****************************************************************************/
import org.bimserver.shared.exceptions.UserException;
import org.bimserver.shared.exceptions.ServerException;

public class AdminInterfaceAdaptor implements org.bimserver.shared.interfaces.AdminInterface {

	public java.lang.Integer clearOutputFileCache() throws UserException, ServerException {
		return null;
	}
	
	public void disablePlugin(java.lang.String name) throws UserException, ServerException {
	}
	
	public void enablePlugin(java.lang.String name) throws UserException, ServerException {
	}
	
	public java.util.List getAllPlugins() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SBimServerInfo getBimServerInfo() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SDatabaseInformation getDatabaseInformation() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SJavaInfo getJavaInfo() throws UserException, ServerException {
		return null;
	}
	
	public java.util.Date getLastDatabaseReset() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SVersion getLatestVersion() throws UserException, ServerException {
		return null;
	}
	
	public java.util.List getLogs() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SMetrics getMetrics() throws UserException, ServerException {
		return null;
	}
	
	public java.util.List getMigrations() throws UserException, ServerException {
		return null;
	}
	
	public java.lang.String getProtocolBuffersFile(java.lang.String interfaceName) throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SServerInfo getServerInfo() throws UserException, ServerException {
		return null;
	}
	
	public java.lang.String getServerLog() throws UserException, ServerException {
		return null;
	}
	
	public java.util.Date getServerStartTime() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SSystemInfo getSystemInfo() throws UserException, ServerException {
		return null;
	}
	
	public org.bimserver.interfaces.objects.SVersion getVersion() throws UserException, ServerException {
		return null;
	}
	
	public void migrateDatabase() throws UserException, ServerException {
	}
	
	public void regenerateGeometry(java.lang.Long croid) throws UserException, ServerException {
	}
	
	public void setup(java.lang.String siteAddress, java.lang.String adminName, java.lang.String adminUsername, java.lang.String adminPassword) throws UserException, ServerException {
	}
	
	public java.lang.Boolean upgradePossible() throws UserException, ServerException {
		return null;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy