Commit 0338dab1 by yangliang

一体化采集添加实时向指纹系统推送人员信息操作

parent c00030b4
package com.founder.amsis.client.afis;
import java.net.MalformedURLException;
import java.util.Collection;
import java.util.HashMap;
import javax.xml.namespace.QName;
import org.codehaus.xfire.XFireRuntimeException;
import org.codehaus.xfire.aegis.AegisBindingProvider;
import org.codehaus.xfire.annotations.AnnotationServiceFactory;
import org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations;
import org.codehaus.xfire.client.XFireProxyFactory;
import org.codehaus.xfire.jaxb2.JaxbTypeRegistry;
import org.codehaus.xfire.service.Endpoint;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.soap.AbstractSoapBinding;
import org.codehaus.xfire.transport.TransportManager;
public class AMSISClient {
private static XFireProxyFactory proxyFactory = new XFireProxyFactory();
private HashMap endpoints = new HashMap();
private Service service0;
public AMSISClient() {
create0();
Endpoint AMSISHttpPortEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), new QName("http://afis.service.amsis.highland.com", "AMSISHttpBinding"), "http://192.168.128.244:7001/AMSISSERVICE/services/AMSIS");
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), AMSISHttpPortEP);
Endpoint AMSISPortTypeLocalEndpointEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalBinding"), "xfire.local://AMSIS");
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), AMSISPortTypeLocalEndpointEP);
}
public AMSISClient(String serviceUrl) {
create0();
Endpoint AMSISHttpPortEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), new QName("http://afis.service.amsis.highland.com", "AMSISHttpBinding"), serviceUrl);
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), AMSISHttpPortEP);
Endpoint AMSISPortTypeLocalEndpointEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalBinding"), "xfire.local://AMSIS");
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), AMSISPortTypeLocalEndpointEP);
}
public Object getEndpoint(Endpoint endpoint) {
try {
return proxyFactory.create((endpoint).getBinding(), (endpoint).getUrl());
} catch (MalformedURLException e) {
throw new XFireRuntimeException("Invalid URL", e);
}
}
public Object getEndpoint(QName name) {
Endpoint endpoint = ((Endpoint) endpoints.get((name)));
if ((endpoint) == null) {
throw new IllegalStateException("No such endpoint!");
}
return getEndpoint((endpoint));
}
public Collection getEndpoints() {
return endpoints.values();
}
private void create0() {
TransportManager tm = (org.codehaus.xfire.XFireFactory.newInstance().getXFire().getTransportManager());
HashMap props = new HashMap();
props.put("annotations.allow.interface", true);
AnnotationServiceFactory asf = new AnnotationServiceFactory(new Jsr181WebAnnotations(), tm, new AegisBindingProvider(new JaxbTypeRegistry()));
asf.setBindingCreationEnabled(false);
service0 = asf.create((com.founder.amsis.client.afis.AMSISPortType.class), props);
{
AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalBinding"), "urn:xfire:transport:local");
}
{
AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://afis.service.amsis.highland.com", "AMSISHttpBinding"), "http://schemas.xmlsoap.org/soap/http");
}
}
public AMSISPortType getAMSISHttpPort() {
return ((AMSISPortType)(this).getEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort")));
}
public AMSISPortType getAMSISHttpPort(String url) {
AMSISPortType var = getAMSISHttpPort();
org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);
return var;
}
public AMSISPortType getAMSISPortTypeLocalEndpoint() {
return ((AMSISPortType)(this).getEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint")));
}
public AMSISPortType getAMSISPortTypeLocalEndpoint(String url) {
AMSISPortType var = getAMSISPortTypeLocalEndpoint();
org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);
return var;
}
public static void main(String[] args) {
System.out.println("t11111");
AMSISClient client = new AMSISClient();
//create a default service endpoint
AMSISPortType service = client.getAMSISHttpPort();
// service.setPersonInfo(in0, in1, in2);
// service.save_PersonPic();
//TODO: Add custom client code here
//
//service.yourServiceOperationHere();
System.out.println("test client completed");
System.exit(0);
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "checkHPSeqno")
public class CheckHPSeqno {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "checkHPSeqnoResponse")
public class CheckHPSeqnoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getBKHitInfo")
public class GetBKHitInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getBKHitInfoResponse")
public class GetBKHitInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getLatHPSeqno")
public class GetLatHPSeqno {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getLatHPSeqnoResponse")
public class GetLatHPSeqnoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getLogicDB")
public class GetLogicDB {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getLogicDBResponse")
public class GetLogicDBResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "save_PersonPic")
public class SavePersonPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "save_PersonPicResponse")
public class SavePersonPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "setCaseInfo")
public class SetCaseInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setCaseInfoResponse")
public class SetCaseInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setEditInterface")
public class SetEditInterface {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setEditInterfaceResponse")
public class SetEditInterfaceResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATHPCPRPic")
public class SetLATHPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATHPCPRPicResponse")
public class SetLATHPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATHPORGPic")
public class SetLATHPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATHPORGPicResponse")
public class SetLATHPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATMNT")
public class SetLATMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATMNTResponse")
public class SetLATMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATORGPic")
public class SetLATORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATORGPicResponse")
public class SetLATORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATSCAN")
public class SetLATSCAN {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATSCANResponse")
public class SetLATSCANResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPFPCPRPic")
public class SetPFPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPFPCPRPicResponse")
public class SetPFPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPFPMNT")
public class SetPFPMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPFPMNTResponse")
public class SetPFPMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPFPORGPic")
public class SetPFPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPFPORGPicResponse")
public class SetPFPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPLPCPRPic")
public class SetPLPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPLPCPRPicResponse")
public class SetPLPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPLPMNT")
public class SetPLPMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPLPMNTResponse")
public class SetPLPMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPLPORGPic")
public class SetPLPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPLPORGPicResponse")
public class SetPLPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "setPersonInfo")
public class SetPersonInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPersonInfoResponse")
public class SetPersonInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPersonScan")
public class SetPersonScan {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPersonScanResponse")
public class SetPersonScanResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPsnOrCaseQueue")
public class SetPsnOrCaseQueue {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPsnOrCaseQueueResponse")
public class SetPsnOrCaseQueueResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setRFPCPRPic")
public class SetRFPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setRFPCPRPicResponse")
public class SetRFPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setRFPMNT")
public class SetRFPMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setRFPMNTResponse")
public class SetRFPMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setRFPORGPic")
public class SetRFPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setRFPORGPicResponse")
public class SetRFPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3"
})
@XmlRootElement(name = "synInfo")
public class SynInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
@XmlElement(required = true, nillable = true)
protected String in3;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
/**
* Gets the value of the in3 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn3() {
return in3;
}
/**
* Sets the value of the in3 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn3(String value) {
this.in3 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "synInfoResponse")
public class SynInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "updateXKTabStaus")
public class UpdateXKTabStaus {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "updateXKTabStausResponse")
public class UpdateXKTabStausResponse {
protected int out;
/**
* Gets the value of the out property.
*
*/
public int getOut() {
return out;
}
/**
* Sets the value of the out property.
*
*/
public void setOut(int value) {
this.out = value;
}
}
@javax.xml.bind.annotation.XmlSchema(namespace = "http://afis.service.amsis.highland.com", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package com.founder.amsis.service.afis;
......@@ -14,7 +14,7 @@ public class DefaultViewConfig implements WebMvcConfigurer {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/toLogin").setViewName("login/login_hainan");
registry.addViewController("/toLogin").setViewName("login/login");
registry.addViewController("/hncsLogin").setViewName("login/login_hncs");
registry.addViewController("/hnzzLogin").setViewName("login/login_hnzz");
registry.addViewController("/hnxtLogin").setViewName("login/login_hnxt");
......@@ -32,8 +32,8 @@ public class DefaultViewConfig implements WebMvcConfigurer {
registry.addViewController("/hainanLogin").setViewName("login/login_hainan");
registry.addViewController("/neimengLogin").setViewName("login/login_neimeng");
registry.addViewController("/noLogin").setViewName("login/login_hainan");
registry.addViewController("/").setViewName("login/login_hainan");
registry.addViewController("/noLogin").setViewName("login/login");
registry.addViewController("/").setViewName("login/login");
registry.addViewController("/toFjxz").setViewName("login/fjxz/common_fjxz");
registry.addViewController("/toCzsmxz").setViewName("login/fjxz/common_czsm");
registry.addViewController("/toObjectKJ").setViewName("rygl/objectKJ");
......
......@@ -46,8 +46,8 @@ function StartupSJCJ() {
// 替换全部'双引号'为'斜杆+双引号'
xmlinfo = xmlinfo.replace(/\"/g, "\\\"");
//alert(xmlinfo);
var rs = newActiveXObject("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9980";
var rs = newActiveXObject_XDH("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9981";
var param = "{\"autoSvrID\":\"XT_PHONECOLLECT.Document\",\"methodName\":\"StartupSJCJ\",\"xmlinfo\":\""+xmlinfo+"\"}";
$.ajax({
type: "post",
......@@ -152,8 +152,8 @@ function xdhSjcj() {
// 替换全部'双引号'为'斜杆+双引号'
xmlinfo = xmlinfo.replace(/\"/g, "\\\"");
//alert(xmlinfo);
var rs = newActiveXObject("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9980";
var rs = newActiveXObject_XDH("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9981";
var param = "{\"autoSvrID\":\"XT_PHONECOLLECT.Document\",\"methodName\":\"StartupSJCJ\",\"xmlinfo\":\""+xmlinfo+"\"}";
$.ajax({
type: "post",
......@@ -204,4 +204,35 @@ function jnsjcj() {
}catch (e){
alert("手机采集设备连接成功,请到采集设备上进行后续操作2!");
}
}
function newActiveXObject_XDH(ActiveXObjectName){
var rs;
var path = "http://127.0.0.1:9981";
var param = "{\"autoSvrID\":\"" + ActiveXObjectName + "\",\"methodName\":\"newActiveXObject\"}";
$.ajax({
type: "post",
url: path,//调用该路径的控件
async: false,
data: param,
contentType: "application/x-www-form-urlencoded",
dataType: "json",//解决跨域请求
crossDomain: true,
success: function(data) {
var rstemp = eval(data);
var status = rstemp.apiStatus;
if(status == "success"){
rs = status;
}else{
//alert("调用控件错误,错误状态:"+status);
rs = "";
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
//alert("头 = " + XMLHttpRequest.getResponseHeader('Access-Control-Allow-Origin'));
alert("请求创建调用控件失败,错误状态=="+XMLHttpRequest.status);
}
});
return rs;
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -41,7 +41,13 @@
<input type="hidden" id="jgssxdmStr" th:value="${ryxx.jgssxdm}"/>
<input type="hidden" id="xldmStr" th:value="${ryxx.xldm}"/>
<input type="hidden" id="hjdzXzqhdmStr" th:value="${ryxx.hjdzXzqhdm}"/>
<input type="hidden" id="hjdzDzmc" th:value="${ryxx.hjdzDzmc}"/>
<input type="hidden" id="xzzXzqhdmStr" th:value="${ryxx.xzzXzqhdm}"/>
<input type="hidden" id="xzzDzmc" th:value="${ryxx.xzzDzmc}"/>
<input type="hidden" id="ajlbdmStr" th:value="${ryxx.ajlbdm}"/>
<input type="hidden" id="rysxStr" th:value="${ryxx.rysx}"/>
<input type="hidden" id="zwcjdwdmStr" th:value="${ryxx.zwcjdwdm}"/>
<input type="hidden" id="zwcjr" th:value="${ryxx.zwcjr}"/>
<td class="td_r" style="width:10%;">人员编号</td>
<td class="td_bg" style="width:20%;" th:text="${ryxx.rybh}"></td>
<td class="td_r" style="width:10%;">姓名</td>
......@@ -70,13 +76,13 @@
<td class="td_r">常用证件类型</td>
<td id="cyzjdm" class="td_bg"></td>
<td class="td_r">证件号码</td>
<td class="td_bg" th:text="${ryxx.zjhm}">
<a href="javascript:void(0)" class="btn_hg">用采合一</a>
<td class="td_bg">
<span th:text="${ryxx.zjhm}"></span><span id="ryckcnt" class="bot" >0</span>
</td>
</tr>
<tr>
<td class="td_r">国籍</td>
<td id="gjdm" class="td_bg"></td>
<td class="td_r">籍贯</td>
<td id="jgssxdm" class="td_bg"></td>
<td class="td_r">民族</td>
<td id="mzdm" class="td_bg"></td>
</tr>
......@@ -87,20 +93,30 @@
<td class="td_bg" th:text="${ryxx.tzsx}"></td>
</tr>
<tr>
<td class="td_r">籍贯</td>
<td id="jgssxdm" class="td_bg"></td>
<td class="td_r">文化程度</td>
<td id="xldm" class="td_bg"></td>
<td class="td_r">户籍地详址</td>
<td id="hjdzXzqhdm" class="td_bg" colspan="3"></td>
</tr>
<tr>
<td class="td_r">现住址详址</td>
<td id="xzzXzqhdm" class="td_bg" colspan="3"></td>
</tr>
<tr>
<td class="td_r">户籍地址名称</td>
<td id="hjdzXzqhdm" class="td_bg"></td>
<td class="td_r">现住址名称</td>
<td id="xzzXzqhdm" class="td_bg"></td>
<td class="td_r">人员类型</td>
<td id="rysx" class="td_bg"></td>
<td class="td_r">涉案类别</td>
<td id="ajlbdm" class="td_bg" colspan="3"></td>
</tr>
<tr>
<td class="td_r">简要情况</td>
<td class="td_bg" colspan="5" th:text="${ryxx.jl}"></td>
<td class="td_r">犯罪描述</td>
<td class="td_bg" colspan="5" th:text="${ryxx.wffzjlms}"></td>
</tr>
<tr>
<td class="td_r">采集单位</td>
<td id="zwcjdwdm" class="td_bg"></td>
<td class="td_r">采集人</td>
<td id="zwcjrXm" class="td_bg" th:text="${ryxx.zwcjrXm}"></td>
<td class="td_r" style="width:10%;">采集时间</td>
<td id="zwcjsj" class="td_bg" th:value="${ryxx.zwcjsjStr}" style="width:20%;"></td>
</tr>
</table>
</div>
......@@ -720,12 +736,27 @@
$("#xbdm").html(codeFormatters($("#xbdmStr").val(),"CODE_XB"));
$("#cyzjdm").html(codeFormatters($("#cyzjdmStr").val(),"CODE_ZJ"));
$("#gjdm").html(codeFormatters($("#gjdmStr").val(),"CODE_GJ"));
//$("#gjdm").html(codeFormatters($("#gjdmStr").val(),"CODE_GJ"));
$("#mzdm").html(codeFormatters($("#mzdmStr").val(),"CODE_MZ"));
$("#xldm").html(codeFormatters($("#xldmStr").val(),"CODE_WHCD"));
$("#jgssxdm").html(codeFormatters($("#jgssxdmStr").val(),"CODE_XZQH"));
$("#hjdzXzqhdm").html(codeFormatters($("#hjdzXzqhdmStr").val(),"CODE_XZQH"));
$("#xzzXzqhdm").html(codeFormatters($("#xzzXzqhdmStr").val(),"CODE_XZQH"));
$("#hjdzXzqhdm").html(codeFormatters($("#hjdzXzqhdmStr").val(),"CODE_XZQH")+$("#hjdzDzmc").val());
$("#xzzXzqhdm").html(codeFormatters($("#xzzXzqhdmStr").val(),"CODE_XZQH")+$("#xzzDzmc").val());
$("#ajlbdm").html(codeFormatters($("#ajlbdmStr").val(),"CODE_AJLB"));
if($("#rysxStr").val()=="01"){
$("#rysx").html("警综犯罪嫌疑人");
}else if($("#rysxStr").val()=="02"){
$("#rysx").html("可疑人员");
}else if($("#rysxStr").val()=="03"){
$("#rysx").html("盘问人员");
}else if($("#rysxStr").val()=="04"){
$("#rysx").html("其他人员");
}
$("#zwcjdwdm").html(codeFormatters($("#zwcjdwdmStr").val(),"CODE_UNIT"));
if($("#zwcjrXm").val()==null||$("#zwcjrXm").val()==""){
$("#zwcjrXm").html($("#zwcjr").val());
}
getPmImage($("#pmzwbh").val(),$("#asjxgrybh").val(),$("#xyrzjhm").val());//平面
getGdImage($("#gdzwbh").val());//滚动
getZmzwImage($("#gdzwbh").val());//滚动
......
......@@ -384,7 +384,33 @@ function doQuery(){
}
return zwcjsjStr+"|"+jcsjStr;
}},
{title:"检查计时",field:"rjcsj",align:'center',width:100},
{title:"检查计时",field:"zwsx",align:'center',width:100,formatter:function(val,row,index){
var rybh=row.rybh;
var zwsx=row.zwsx;
if(zwsx==null||zwsx==""){
return "未计时";
}else{
var zwsxs = zwsx.split(":");
var cjsj=row.rcjsj;
var cjsjStr=row.cjsjStr;
var nowdate=new Date();
var time1 = new Date(Date.parse(cjsj)).getTime();
var time2 = new Date(Date.parse(nowdate)).getTime();
if(time1>time2){
return "系统时间不正确";
}else{
var m=parseInt((time2-time1)/1000);
var n = (parseInt(zwsxs[0])*60*60+parseInt(zwsxs[1]*60));
if(m>n){
return "<span class='bhg-btn'>检查超时</span>";
}else{
var timenum = n-m;
showNum(rybh,timenum);
return "<span id='"+rybh+"' class='hg-btn'>"+parseInt(timenum/60/60)+":"+parseInt(timenum/60)%60+":"+parseInt(timenum%60)+"</span>";
}
}
}
}},
{title:"检查人",field:"jcr",align:'center',width:85},
{title:"采集<Br/>次数",field:"rcjcs",align:'center',width:65}
];
......@@ -410,6 +436,20 @@ function doQuery(){
}
});
}
//封装一个处理单位数字的函数
function showNum(spanid,timenum) {
var rst = "";
timer = setInterval(function() {
timenum--;
if(timenum>0){
$("#"+spanid).html(parseInt(timenum/60/60)+":"+parseInt(timenum/60)%60+":"+parseInt(timenum%60));
}else{
$("#"+spanid).attr("class","bhg-btn");
$("#"+spanid).html("检查超时");
}
}, 1000)
}
function doClear(){
$("form[name='ryxxForm']") .find("input").val('');
$("#RCjdw").combotree("setValue",'');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment