com.github.nfalco79.junit4osgi.registry.spi.TestRegistryEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit4osgi-registry Show documentation
Show all versions of junit4osgi-registry Show documentation
This bundle registers different test registry as OSGi service.
/*
* Copyright 2017 Nikolas Falco
* 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.
*/
package com.github.nfalco79.junit4osgi.registry.spi;
/**
* Describes the kind of event that the {@link TestRegistry} has triggered when
* a new bundle is to be installing or uninstalling.
*
* @author nikolasfalco
*/
public class TestRegistryEvent {
/**
* The event kind
*/
public enum TestRegistryEventType {
ADD, REMOVE
}
private TestRegistryEventType type;
private TestBean test;
/**
* Default constructor.
*
* @param type
* the event type
* @param test
* the event subject
*/
public TestRegistryEvent(TestRegistryEventType type, TestBean test) {
this.setType(type);
this.setTest(test);
}
/**
* Returns the event type.
*
* @return the {@link TestRegistryEventType} type
*/
public TestRegistryEventType getType() {
return type;
}
/**
* Sets the event type.
*
* @param type
* the event type
*/
public void setType(TestRegistryEventType type) {
this.type = type;
}
/**
* Returns the test subject of this event.
*
* @return a {@link TestBean}
*/
public TestBean getTest() {
return test;
}
/**
* Sets the test subject of this event.
*
* @param test
* a {@link TestBean}
*/
public void setTest(TestBean test) {
this.test = test;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy