blob: 7d80258d7e60519c4b995efc76c9564e0d2506da [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.felix.scrplugin.om;
import java.util.*;
import org.apache.felix.scrplugin.IssueLog;
import org.apache.maven.plugin.MojoExecutionException;
/**
* <code>Service</code>...
*
*/
public class Service {
protected boolean isServicefactory;
/** The list of implemented interfaces. */
protected final List<Interface> interfaces = new ArrayList<Interface>();
/**
* Default constructor.
*/
public Service() {
// nothing to do
}
public boolean isServicefactory() {
return this.isServicefactory;
}
public void setServicefactory(String servicefactory) {
if ( servicefactory != null ) {
this.isServicefactory = Boolean.valueOf(servicefactory).booleanValue();
}
}
public void setServicefactory(boolean flag) {
this.isServicefactory = flag;
}
public List<Interface> getInterfaces() {
return this.interfaces;
}
/**
* Search for an implemented interface.
* @param name The name of the interface.
* @return The interface if it is implemented by this service or null.
*/
public Interface findInterface(String name) {
final Iterator<Interface> i = this.getInterfaces().iterator();
while ( i.hasNext() ) {
final Interface current = i.next();
if ( current.getInterfacename().equals(name) ) {
return current;
}
}
return null;
}
/**
* Add an interface to the list of interfaces.
* @param interf The interface.
*/
public void addInterface(Interface interf) {
// add interface only once
if ( this.findInterface(interf.getInterfacename()) == null ) {
this.interfaces.add(interf);
}
}
/**
* Validate the service.
* If errors occur a message is added to the issues list,
* warnings can be added to the warnings list.
*/
public void validate(final int specVersion, final IssueLog iLog)
throws MojoExecutionException {
for(final Interface interf : this.getInterfaces()) {
interf.validate(specVersion, iLog);
}
}
}