Class FakeInvocablesCreator
- java.lang.Object
-
- test.de.iip_ecosphere.platform.support.fakeAas.FakeInvocablesCreator
-
- All Implemented Interfaces:
de.iip_ecosphere.platform.support.aas.InvocablesCreator
public class FakeInvocablesCreator extends java.lang.Object implements de.iip_ecosphere.platform.support.aas.InvocablesCreatorA fake invocables creator that does nothing (in case that the fake AAS is active in basic component tests).- Author:
- Holger Eichelberger, SSE
-
-
Constructor Summary
Constructors Constructor Description FakeInvocablesCreator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.function.Supplier<java.lang.Object>createGetter(java.lang.String name)java.util.function.Function<java.lang.Object[],java.lang.Object>createInvocable(java.lang.String name)java.util.function.Consumer<java.lang.Object>createSetter(java.lang.String name)
-
-
-
Method Detail
-
createGetter
public java.util.function.Supplier<java.lang.Object> createGetter(java.lang.String name)
- Specified by:
createGetterin interfacede.iip_ecosphere.platform.support.aas.InvocablesCreator
-
createSetter
public java.util.function.Consumer<java.lang.Object> createSetter(java.lang.String name)
- Specified by:
createSetterin interfacede.iip_ecosphere.platform.support.aas.InvocablesCreator
-
createInvocable
public java.util.function.Function<java.lang.Object[],java.lang.Object> createInvocable(java.lang.String name)
- Specified by:
createInvocablein interfacede.iip_ecosphere.platform.support.aas.InvocablesCreator
-
-