org.ow2.petals.engine.sampleclient.RequestBean Maven / Gradle / Ivy
/**
* Copyright (c) 2005-2012 EBM WebSourcing, 2012-2016 Linagora
*
* This program/library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the License, or (at your
* option) any later version.
*
* This program/library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program/library; If not, see http://www.gnu.org/licenses/
* for the GNU Lesser General Public License version 2.1.
*/
package org.ow2.petals.engine.sampleclient;
/**
* @author Christophe Hamerling - EBM WebSourcing
*/
public class RequestBean {
private String mep;
private String interfaceName;
private String serviceName;
private String endpointName;
private String timeout;
private String message;
private String properties;
private String operation;
/**
*
*/
public RequestBean() {
}
/**
* @return the mep
*/
public String getMep() {
return mep;
}
/**
* @param mep the mep to set
*/
public void setMep(String mep) {
this.mep = mep;
}
/**
* @return the interfaceName
*/
public String getInterfaceName() {
return interfaceName;
}
/**
* @param interfaceName the interfaceName to set
*/
public void setInterfaceName(String interfaceName) {
this.interfaceName = interfaceName;
}
/**
* @return the serviceName
*/
public String getServiceName() {
return serviceName;
}
/**
* @param serviceName the serviceName to set
*/
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
/**
* @return the endpointName
*/
public String getEndpointName() {
return endpointName;
}
/**
* @param endpointName the endpointName to set
*/
public void setEndpointName(String endpointName) {
this.endpointName = endpointName;
}
/**
* @return the timeout
*/
public String getTimeout() {
return timeout;
}
/**
* @param timeout the timeout to set
*/
public void setTimeout(String timeout) {
this.timeout = timeout;
}
/**
* @return the message
*/
public String getMessage() {
return message;
}
/**
* @param message the message to set
*/
public void setMessage(String message) {
this.message = message;
}
/**
* @return the properties
*/
public String getProperties() {
return properties;
}
/**
* @param properties the properties to set
*/
public void setProperties(String properties) {
this.properties = properties;
}
/**
* @return the operation
*/
public String getOperation() {
return operation;
}
/**
* @param operation the operation to set
*/
public void setOperation(String operation) {
this.operation = operation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy