org.apache.camel.component.iec60870.server.ServerComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-iec60870 Show documentation
Show all versions of camel-iec60870 Show documentation
Camel IEC 60870-5-104 support
/*
* 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.camel.component.iec60870.server;
import java.net.UnknownHostException;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.component.iec60870.AbstractIecComponent;
import org.apache.camel.component.iec60870.ConnectionId;
import org.apache.camel.component.iec60870.Constants;
import org.apache.camel.component.iec60870.ObjectAddress;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.annotations.Component;
import org.eclipse.neoscada.protocol.iec60870.server.data.DataModuleOptions;
@Component("iec60870-server")
public class ServerComponent extends AbstractIecComponent {
public ServerComponent(final CamelContext context) {
super(ServerOptions.class, new ServerOptions(), context);
}
public ServerComponent() {
super(ServerOptions.class, new ServerOptions());
}
@Override
protected void applyDataModuleOptions(final ServerOptions options, final Map parameters) {
if (parameters.get(Constants.PARAM_DATA_MODULE_OPTIONS) instanceof DataModuleOptions) {
options.setDataModuleOptions((DataModuleOptions) parameters.get(Constants.PARAM_DATA_MODULE_OPTIONS));
}
}
@Override
protected ServerConnectionMultiplexor createConnection(final ConnectionId id, final ServerOptions options) {
try {
return new ServerConnectionMultiplexor(new ServerInstance(id.getHost(), id.getPort(), options));
} catch (final UnknownHostException e) {
throw new RuntimeCamelException(e);
}
}
@Override
protected Endpoint createEndpoint(
final String uri, final ServerConnectionMultiplexor connection, final ObjectAddress address) {
return new ServerEndpoint(uri, this, connection, address);
}
/**
* Default connection options
*/
@Override
@Metadata
public void setDefaultConnectionOptions(final ServerOptions defaultConnectionOptions) {
super.setDefaultConnectionOptions(defaultConnectionOptions);
}
@Override
public ServerOptions getDefaultConnectionOptions() {
return super.getDefaultConnectionOptions();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy