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

joynr.infrastructure.GlobalDomainAccessControllerProvider Maven / Gradle / Ivy

/*
 *
 * Copyright (C) 2011 - 2018 BMW Car IT GmbH
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// #####################################################
//#######################################################
//###                                                 ###
//##    WARNING: This file is generated. DO NOT EDIT   ##
//##             All changes will be lost!             ##
//###                                                 ###
//#######################################################
// #####################################################
package joynr.infrastructure;

import io.joynr.provider.Promise;
import io.joynr.provider.AbstractDeferred;

import io.joynr.provider.JoynrInterface;
import io.joynr.JoynrVersion;

import joynr.infrastructure.DacTypes.ChangeType;
import joynr.infrastructure.DacTypes.MasterAccessControlEntry;
import joynr.infrastructure.DacTypes.MasterRegistrationControlEntry;
import joynr.infrastructure.DacTypes.OwnerAccessControlEntry;
import joynr.infrastructure.DacTypes.OwnerRegistrationControlEntry;

import io.joynr.provider.SubscriptionPublisherInjection;

interface GlobalDomainAccessControllerSubscriptionPublisherInjection extends SubscriptionPublisherInjection {}

@JoynrInterface(provides = GlobalDomainAccessController.class, provider = GlobalDomainAccessControllerProvider.class, name = "infrastructure/GlobalDomainAccessController")
@JoynrVersion(major = 0, minor = 1)
public interface GlobalDomainAccessControllerProvider extends GlobalDomainAccessControllerSubscriptionPublisherInjection {


	/**
	 * getMasterAccessControlEntries
	 * @param uid the parameter uid
	 * @return promise for asynchronous handling
	 */
	public Promise getMasterAccessControlEntries(
			String uid
	);

	/**
	 * getMasterAccessControlEntries
	 * @param domain the parameter domain
	 * @param interfaceName the parameter interfaceName
	 * @return promise for asynchronous handling
	 */
	public Promise getMasterAccessControlEntries(
			String domain,
			String interfaceName
	);

	/**
	 * getMediatorAccessControlEntries
	 * @param uid the parameter uid
	 * @return promise for asynchronous handling
	 */
	public Promise getMediatorAccessControlEntries(
			String uid
	);

	/**
	 * getMediatorAccessControlEntries
	 * @param domain the parameter domain
	 * @param interfaceName the parameter interfaceName
	 * @return promise for asynchronous handling
	 */
	public Promise getMediatorAccessControlEntries(
			String domain,
			String interfaceName
	);

	/**
	 * getOwnerAccessControlEntries
	 * @param uid the parameter uid
	 * @return promise for asynchronous handling
	 */
	public Promise getOwnerAccessControlEntries(
			String uid
	);

	/**
	 * getOwnerAccessControlEntries
	 * @param domain the parameter domain
	 * @param interfaceName the parameter interfaceName
	 * @return promise for asynchronous handling
	 */
	public Promise getOwnerAccessControlEntries(
			String domain,
			String interfaceName
	);

	/**
	 * getMasterRegistrationControlEntries
	 * @param uid the parameter uid
	 * @return promise for asynchronous handling
	 */
	public Promise getMasterRegistrationControlEntries(
			String uid
	);

	/**
	 * getMediatorRegistrationControlEntries
	 * @param uid the parameter uid
	 * @return promise for asynchronous handling
	 */
	public Promise getMediatorRegistrationControlEntries(
			String uid
	);

	/**
	 * getOwnerRegistrationControlEntries
	 * @param uid the parameter uid
	 * @return promise for asynchronous handling
	 */
	public Promise getOwnerRegistrationControlEntries(
			String uid
	);

	public class GetMasterAccessControlEntries1Deferred extends AbstractDeferred {
		public synchronized boolean resolve(MasterAccessControlEntry[] masterAces) {
			return super.resolve((Object)masterAces);
		}
	}

	public class GetMediatorAccessControlEntries1Deferred extends AbstractDeferred {
		public synchronized boolean resolve(MasterAccessControlEntry[] mediatorAces) {
			return super.resolve((Object)mediatorAces);
		}
	}

	public class GetOwnerAccessControlEntries1Deferred extends AbstractDeferred {
		public synchronized boolean resolve(OwnerAccessControlEntry[] ownerAces) {
			return super.resolve((Object)ownerAces);
		}
	}

	public class GetMasterRegistrationControlEntriesDeferred extends AbstractDeferred {
		public synchronized boolean resolve(MasterRegistrationControlEntry[] masterRces) {
			return super.resolve((Object)masterRces);
		}
	}

	public class GetMediatorRegistrationControlEntriesDeferred extends AbstractDeferred {
		public synchronized boolean resolve(MasterRegistrationControlEntry[] mediatorRces) {
			return super.resolve((Object)mediatorRces);
		}
	}

	public class GetOwnerRegistrationControlEntriesDeferred extends AbstractDeferred {
		public synchronized boolean resolve(OwnerRegistrationControlEntry[] ownerRces) {
			return super.resolve((Object)ownerRces);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy