org.nhind.config.common.ConfigurationService Maven / Gradle / Ivy
package org.nhind.config.common;
import javax.annotation.Generated;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by Apache CXF 2.7.3
* 2014-07-01T09:12:06.803-04:00
* Generated source version: 2.7.3
*
*/
@WebService(targetNamespace = "http://nhind.org/config/common", name = "ConfigurationService")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00", comments = "Apache CXF 2.7.3")
public interface ConfigurationService {
@RequestWrapper(localName = "refreshTrustBundle", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RefreshTrustBundle")
@WebMethod(action = "urn:RefreshTrustBundle")
@ResponseWrapper(localName = "refreshTrustBundleResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RefreshTrustBundleResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void refreshTrustBundle(
@WebParam(name = "id", targetNamespace = "")
long id
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addTrustBundle", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddTrustBundle")
@WebMethod(action = "urn:AddTrustBundle")
@ResponseWrapper(localName = "addTrustBundleResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddTrustBundleResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addTrustBundle(
@WebParam(name = "bundle", targetNamespace = "")
org.nhind.config.common.TrustBundle bundle
) throws ConfigurationServiceException;
@RequestWrapper(localName = "updateLastUpdateError", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateLastUpdateError")
@WebMethod(action = "urn:UpdateLastUpdateError")
@ResponseWrapper(localName = "updateLastUpdateErrorResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateLastUpdateErrorResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateLastUpdateError(
@WebParam(name = "trustBundleId", targetNamespace = "")
long trustBundleId,
@WebParam(name = "attemptTime", targetNamespace = "")
javax.xml.datatype.XMLGregorianCalendar attemptTime,
@WebParam(name = "error", targetNamespace = "")
org.nhind.config.common.BundleRefreshError error
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "contains", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.Contains")
@WebMethod(action = "urn:Contains")
@ResponseWrapper(localName = "containsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ContainsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public boolean contains(
@WebParam(name = "cert", targetNamespace = "")
org.nhind.config.common.Certificate cert
);
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDomains", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDomains")
@WebMethod(action = "urn:GetDomains")
@ResponseWrapper(localName = "getDomainsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDomainsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getDomains(
@WebParam(name = "names", targetNamespace = "")
java.util.List names,
@WebParam(name = "status", targetNamespace = "")
org.nhind.config.common.EntityStatus status
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addCertificates", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddCertificates")
@WebMethod(action = "urn:AddCertificates")
@ResponseWrapper(localName = "addCertificatesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddCertificatesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addCertificates(
@WebParam(name = "certs", targetNamespace = "")
java.util.List certs
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getTrustBundleByName", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundleByName")
@WebMethod(action = "urn:GetTrustBundleByName")
@ResponseWrapper(localName = "getTrustBundleByNameResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundleByNameResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.TrustBundle getTrustBundleByName(
@WebParam(name = "bundleName", targetNamespace = "")
java.lang.String bundleName
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addPolicyGroup", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddPolicyGroup")
@WebMethod(action = "urn:AddPolicyGroup")
@ResponseWrapper(localName = "addPolicyGroupResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddPolicyGroupResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addPolicyGroup(
@WebParam(name = "policyGroup", targetNamespace = "")
org.nhind.config.common.CertPolicyGroup policyGroup
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDNSByName", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByName")
@WebMethod(action = "urn:GetDNSByName")
@ResponseWrapper(localName = "getDNSByNameResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByNameResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getDNSByName(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name
) throws ConfigurationServiceException;
@RequestWrapper(localName = "disassociateTrustBundlesFromDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociateTrustBundlesFromDomain")
@WebMethod(action = "urn:DisassociateTrustBundlesFromDomain")
@ResponseWrapper(localName = "disassociateTrustBundlesFromDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociateTrustBundlesFromDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void disassociateTrustBundlesFromDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeDNSByRecordId", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDNSByRecordId")
@WebMethod(action = "urn:RemoveDNSByRecordId")
@ResponseWrapper(localName = "removeDNSByRecordIdResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDNSByRecordIdResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeDNSByRecordId(
@WebParam(name = "recordId", targetNamespace = "")
long recordId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addDNS", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddDNS")
@WebMethod(action = "urn:AddDNS")
@ResponseWrapper(localName = "addDNSResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddDNSResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addDNS(
@WebParam(name = "records", targetNamespace = "")
java.util.List records
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDomain")
@WebMethod(action = "urn:GetDomain")
@ResponseWrapper(localName = "getDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.Domain getDomain(
@WebParam(name = "id", targetNamespace = "")
java.lang.Long id
);
@RequestWrapper(localName = "updateTrustBundleSigningCertificate", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateTrustBundleSigningCertificate")
@WebMethod(action = "urn:UpdateTrustBundleSigningCertificate")
@ResponseWrapper(localName = "updateTrustBundleSigningCertificateResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateTrustBundleSigningCertificateResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateTrustBundleSigningCertificate(
@WebParam(name = "trustBundleIds", targetNamespace = "")
long trustBundleIds,
@WebParam(name = "signingCert", targetNamespace = "")
org.nhind.config.common.Certificate signingCert
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getAddressCount", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAddressCount")
@WebMethod(action = "urn:GetAddressCount")
@ResponseWrapper(localName = "getAddressCountResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAddressCountResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public int getAddressCount() throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getTrustBundles", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundles")
@WebMethod(action = "urn:GetTrustBundles")
@ResponseWrapper(localName = "getTrustBundlesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundlesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getTrustBundles(
@WebParam(name = "fetchAnchors", targetNamespace = "")
boolean fetchAnchors
) throws ConfigurationServiceException;
@RequestWrapper(localName = "updateDNS", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateDNS")
@WebMethod(action = "urn:UpdateDNS")
@ResponseWrapper(localName = "updateDNSResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateDNSResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateDNS(
@WebParam(name = "recordId", targetNamespace = "")
long recordId,
@WebParam(name = "record", targetNamespace = "")
org.nhind.config.common.DnsRecord record
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getAnchor", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAnchor")
@WebMethod(action = "urn:GetAnchor")
@ResponseWrapper(localName = "getAnchorResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAnchorResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.Anchor getAnchor(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "thumbprint", targetNamespace = "")
java.lang.String thumbprint,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addAnchor", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddAnchor")
@WebMethod(action = "urn:AddAnchor")
@ResponseWrapper(localName = "addAnchorResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddAnchorResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addAnchor(
@WebParam(name = "anchor", targetNamespace = "")
java.util.List anchor
) throws ConfigurationServiceException;
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@WebResult(name = "addDomainResponse", targetNamespace = "http://nhind.org/config/common", partName = "parameters")
@WebMethod(action = "urn:AddDomain")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public AddDomainResponse addDomain(
@WebParam(partName = "parameters", name = "addDomain", targetNamespace = "http://nhind.org/config/common")
AddDomain parameters
) throws ConfigurationServiceException;
@RequestWrapper(localName = "updateAddress", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateAddress")
@WebMethod(action = "urn:UpdateAddress")
@ResponseWrapper(localName = "updateAddressResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateAddressResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateAddress(
@WebParam(name = "address", targetNamespace = "")
org.nhind.config.common.Address address
) throws ConfigurationServiceException;
@RequestWrapper(localName = "associatePolicyGroupToDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AssociatePolicyGroupToDomain")
@WebMethod(action = "urn:AssociatePolicyGroupToDomain")
@ResponseWrapper(localName = "associatePolicyGroupToDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AssociatePolicyGroupToDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void associatePolicyGroupToDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId,
@WebParam(name = "policyGroupId", targetNamespace = "")
long policyGroupId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addAddress", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddAddress")
@WebMethod(action = "urn:AddAddress")
@ResponseWrapper(localName = "addAddressResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddAddressResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addAddress(
@WebParam(name = "address", targetNamespace = "")
java.util.List address
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeCertificates", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveCertificates")
@WebMethod(action = "urn:RemoveCertificates")
@ResponseWrapper(localName = "removeCertificatesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveCertificatesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeCertificates(
@WebParam(name = "certificateIds", targetNamespace = "")
java.util.List certificateIds
) throws ConfigurationServiceException;
@RequestWrapper(localName = "setCertificateStatus", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SetCertificateStatus")
@WebMethod(action = "urn:SetCertificateStatus")
@ResponseWrapper(localName = "setCertificateStatusResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SetCertificateStatusResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void setCertificateStatus(
@WebParam(name = "certificateIds", targetNamespace = "")
java.util.List certificateIds,
@WebParam(name = "status", targetNamespace = "")
org.nhind.config.common.EntityStatus status
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDomain")
@WebMethod(action = "urn:RemoveDomain")
@ResponseWrapper(localName = "removeDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeDomain(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDNSCount", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSCount")
@WebMethod(action = "urn:GetDNSCount")
@ResponseWrapper(localName = "getDNSCountResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSCountResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public int getDNSCount() throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getCertificate", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetCertificate")
@WebMethod(action = "urn:GetCertificate")
@ResponseWrapper(localName = "getCertificateResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetCertificateResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.Certificate getCertificate(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "thumbprint", targetNamespace = "")
java.lang.String thumbprint,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "listAnchors", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListAnchors")
@WebMethod(action = "urn:ListAnchors")
@ResponseWrapper(localName = "listAnchorsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListAnchorsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List listAnchors(
@WebParam(name = "lastAnchorId", targetNamespace = "")
java.lang.Long lastAnchorId,
@WebParam(name = "maxResults", targetNamespace = "")
int maxResults,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeDomainById", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDomainById")
@WebMethod(action = "urn:RemoveDomainById")
@ResponseWrapper(localName = "removeDomainByIdResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDomainByIdResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeDomainById(
@WebParam(name = "id", targetNamespace = "")
java.lang.Long id
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getTrustBundleById", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundleById")
@WebMethod(action = "urn:GetTrustBundleById")
@ResponseWrapper(localName = "getTrustBundleByIdResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundleByIdResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.TrustBundle getTrustBundleById(
@WebParam(name = "id", targetNamespace = "")
long id
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getSettingByName", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetSettingByName")
@WebMethod(action = "urn:GetSettingByName")
@ResponseWrapper(localName = "getSettingByNameResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetSettingByNameResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.Setting getSettingByName(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyGroupsByDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupsByDomain")
@WebMethod(action = "urn:GetPolicyGroupsByDomain")
@ResponseWrapper(localName = "getPolicyGroupsByDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupsByDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getPolicyGroupsByDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getAnchors", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAnchors")
@WebMethod(action = "urn:GetAnchors")
@ResponseWrapper(localName = "getAnchorsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAnchorsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getAnchors(
@WebParam(name = "anchorId", targetNamespace = "")
java.util.List anchorId,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "deleteTrustBundles", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeleteTrustBundles")
@WebMethod(action = "urn:DeleteTrustBundles")
@ResponseWrapper(localName = "deleteTrustBundlesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeleteTrustBundlesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void deleteTrustBundles(
@WebParam(name = "trustBundleIds", targetNamespace = "")
java.util.List trustBundleIds
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getSettingsByNames", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetSettingsByNames")
@WebMethod(action = "urn:GetSettingsByNames")
@ResponseWrapper(localName = "getSettingsByNamesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetSettingsByNamesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getSettingsByNames(
@WebParam(name = "names", targetNamespace = "")
java.util.List names
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getIncomingAnchors", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetIncomingAnchors")
@WebMethod(action = "urn:GetIncomingAnchors")
@ResponseWrapper(localName = "getIncomingAnchorsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetIncomingAnchorsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getIncomingAnchors(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeCertificatesForOwner", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveCertificatesForOwner")
@WebMethod(action = "urn:RemoveCertificatesForOwner")
@ResponseWrapper(localName = "removeCertificatesForOwnerResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveCertificatesForOwnerResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeCertificatesForOwner(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDomainCount", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDomainCount")
@WebMethod(action = "urn:GetDomainCount")
@ResponseWrapper(localName = "getDomainCountResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDomainCountResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public int getDomainCount() throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDNSByType", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByType")
@WebMethod(action = "urn:GetDNSByType")
@ResponseWrapper(localName = "getDNSByTypeResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByTypeResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getDNSByType(
@WebParam(name = "type", targetNamespace = "")
int type
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getCertificates", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetCertificates")
@WebMethod(action = "urn:GetCertificates")
@ResponseWrapper(localName = "getCertificatesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetCertificatesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getCertificates(
@WebParam(name = "certificateIds", targetNamespace = "")
java.util.List certificateIds,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeAnchors", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveAnchors")
@WebMethod(action = "urn:RemoveAnchors")
@ResponseWrapper(localName = "removeAnchorsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveAnchorsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeAnchors(
@WebParam(name = "anchorId", targetNamespace = "")
java.util.List anchorId
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyGroupByName", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupByName")
@WebMethod(action = "urn:GetPolicyGroupByName")
@ResponseWrapper(localName = "getPolicyGroupByNameResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupByNameResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.CertPolicyGroup getPolicyGroupByName(
@WebParam(name = "policyGroupName", targetNamespace = "")
java.lang.String policyGroupName
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removePolicyUseFromGroup", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemovePolicyUseFromGroup")
@WebMethod(action = "urn:RemovePolicyUseFromGroup")
@ResponseWrapper(localName = "removePolicyUseFromGroupResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemovePolicyUseFromGroupResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removePolicyUseFromGroup(
@WebParam(name = "policyGroupReltnId", targetNamespace = "")
long policyGroupReltnId
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDNSByRecordIds", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByRecordIds")
@WebMethod(action = "urn:GetDNSByRecordIds")
@ResponseWrapper(localName = "getDNSByRecordIdsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByRecordIdsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getDNSByRecordIds(
@WebParam(name = "recordIds", targetNamespace = "")
java.util.List recordIds
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicies", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicies")
@WebMethod(action = "urn:GetPolicies")
@ResponseWrapper(localName = "getPoliciesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPoliciesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getPolicies() throws ConfigurationServiceException;
@RequestWrapper(localName = "removeDNSByRecordIds", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDNSByRecordIds")
@WebMethod(action = "urn:RemoveDNSByRecordIds")
@ResponseWrapper(localName = "removeDNSByRecordIdsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDNSByRecordIdsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeDNSByRecordIds(
@WebParam(name = "recordIds", targetNamespace = "")
java.util.List recordIds
) throws ConfigurationServiceException;
@RequestWrapper(localName = "updateSetting", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateSetting")
@WebMethod(action = "urn:UpdateSetting")
@ResponseWrapper(localName = "updateSettingResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateSettingResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateSetting(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name,
@WebParam(name = "value", targetNamespace = "")
java.lang.String value
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeAddress", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveAddress")
@WebMethod(action = "urn:RemoveAddress")
@ResponseWrapper(localName = "removeAddressResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveAddressResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeAddress(
@WebParam(name = "emailAddress", targetNamespace = "")
java.lang.String emailAddress
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getAddresss", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAddresss")
@WebMethod(action = "urn:GetAddresss")
@ResponseWrapper(localName = "getAddresssResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAddresssResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getAddresss(
@WebParam(name = "emailAddress", targetNamespace = "")
java.util.List emailAddress,
@WebParam(name = "status", targetNamespace = "")
org.nhind.config.common.EntityStatus status
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "listAddresss", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListAddresss")
@WebMethod(action = "urn:ListAddresss")
@ResponseWrapper(localName = "listAddresssResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListAddresssResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List listAddresss(
@WebParam(name = "lastEmailAddress", targetNamespace = "")
java.lang.String lastEmailAddress,
@WebParam(name = "maxResults", targetNamespace = "")
int maxResults
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyGroupDomainReltns", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupDomainReltns")
@WebMethod(action = "urn:GetPolicyGroupDomainReltns")
@ResponseWrapper(localName = "getPolicyGroupDomainReltnsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupDomainReltnsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getPolicyGroupDomainReltns() throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyGroups", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroups")
@WebMethod(action = "urn:GetPolicyGroups")
@ResponseWrapper(localName = "getPolicyGroupsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getPolicyGroups() throws ConfigurationServiceException;
@RequestWrapper(localName = "addPolicyUseToGroup", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddPolicyUseToGroup")
@WebMethod(action = "urn:AddPolicyUseToGroup")
@ResponseWrapper(localName = "addPolicyUseToGroupResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddPolicyUseToGroupResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addPolicyUseToGroup(
@WebParam(name = "policyGroupId", targetNamespace = "")
long policyGroupId,
@WebParam(name = "policyId", targetNamespace = "")
long policyId,
@WebParam(name = "policyUse", targetNamespace = "")
org.nhind.config.common.CertPolicyUse policyUse,
@WebParam(name = "incoming", targetNamespace = "")
boolean incoming,
@WebParam(name = "outgoing", targetNamespace = "")
boolean outgoing
) throws ConfigurationServiceException;
@RequestWrapper(localName = "deletePolicyGroups", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeletePolicyGroups")
@WebMethod(action = "urn:DeletePolicyGroups")
@ResponseWrapper(localName = "deletePolicyGroupsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeletePolicyGroupsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void deletePolicyGroups(
@WebParam(name = "policyGroupIds", targetNamespace = "")
java.util.List policyGroupIds
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeDNS", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDNS")
@WebMethod(action = "urn:RemoveDNS")
@ResponseWrapper(localName = "removeDNSResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveDNSResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeDNS(
@WebParam(name = "records", targetNamespace = "")
java.util.List records
) throws ConfigurationServiceException;
@RequestWrapper(localName = "disassociatePolicyGroupFromDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociatePolicyGroupFromDomain")
@WebMethod(action = "urn:DisassociatePolicyGroupFromDomain")
@ResponseWrapper(localName = "disassociatePolicyGroupFromDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociatePolicyGroupFromDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void disassociatePolicyGroupFromDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId,
@WebParam(name = "policyGroupId", targetNamespace = "")
long policyGroupId
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDNSByNameAndType", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByNameAndType")
@WebMethod(action = "urn:GetDNSByNameAndType")
@ResponseWrapper(localName = "getDNSByNameAndTypeResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByNameAndTypeResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getDNSByNameAndType(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name,
@WebParam(name = "type", targetNamespace = "")
int type
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyGroupById", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupById")
@WebMethod(action = "urn:GetPolicyGroupById")
@ResponseWrapper(localName = "getPolicyGroupByIdResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyGroupByIdResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.CertPolicyGroup getPolicyGroupById(
@WebParam(name = "policyGroupId", targetNamespace = "")
long policyGroupId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addSetting", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddSetting")
@WebMethod(action = "urn:AddSetting")
@ResponseWrapper(localName = "addSettingResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddSettingResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addSetting(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name,
@WebParam(name = "value", targetNamespace = "")
java.lang.String value
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getAllSettings", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAllSettings")
@WebMethod(action = "urn:GetAllSettings")
@ResponseWrapper(localName = "getAllSettingsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAllSettingsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getAllSettings() throws ConfigurationServiceException;
@RequestWrapper(localName = "deleteSetting", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeleteSetting")
@WebMethod(action = "urn:DeleteSetting")
@ResponseWrapper(localName = "deleteSettingResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeleteSettingResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void deleteSetting(
@WebParam(name = "names", targetNamespace = "")
java.util.List names
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyById", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyById")
@WebMethod(action = "urn:GetPolicyById")
@ResponseWrapper(localName = "getPolicyByIdResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyByIdResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.CertPolicy getPolicyById(
@WebParam(name = "policyId", targetNamespace = "")
long policyId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "disassociateTrustBundleFromDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociateTrustBundleFromDomain")
@WebMethod(action = "urn:DisassociateTrustBundleFromDomain")
@ResponseWrapper(localName = "disassociateTrustBundleFromDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociateTrustBundleFromDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void disassociateTrustBundleFromDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId,
@WebParam(name = "trustBundleId", targetNamespace = "")
long trustBundleId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "removeAnchorsForOwner", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveAnchorsForOwner")
@WebMethod(action = "urn:RemoveAnchorsForOwner")
@ResponseWrapper(localName = "removeAnchorsForOwnerResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.RemoveAnchorsForOwnerResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void removeAnchorsForOwner(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner
) throws ConfigurationServiceException;
@RequestWrapper(localName = "updatePolicyAttributes", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdatePolicyAttributes")
@WebMethod(action = "urn:UpdatePolicyAttributes")
@ResponseWrapper(localName = "updatePolicyAttributesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdatePolicyAttributesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updatePolicyAttributes(
@WebParam(name = "policyId", targetNamespace = "")
long policyId,
@WebParam(name = "policyName", targetNamespace = "")
java.lang.String policyName,
@WebParam(name = "policyLexicon", targetNamespace = "")
org.nhind.config.common.PolicyLexicon policyLexicon,
@WebParam(name = "policyData", targetNamespace = "")
byte[] policyData
) throws ConfigurationServiceException;
@RequestWrapper(localName = "deletePolicies", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeletePolicies")
@WebMethod(action = "urn:DeletePolicies")
@ResponseWrapper(localName = "deletePoliciesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DeletePoliciesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void deletePolicies(
@WebParam(name = "policyIds", targetNamespace = "")
java.util.List policyIds
) throws ConfigurationServiceException;
@RequestWrapper(localName = "associateTrustBundleToDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AssociateTrustBundleToDomain")
@WebMethod(action = "urn:AssociateTrustBundleToDomain")
@ResponseWrapper(localName = "associateTrustBundleToDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AssociateTrustBundleToDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void associateTrustBundleToDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId,
@WebParam(name = "trustBundleId", targetNamespace = "")
long trustBundleId,
@WebParam(name = "incoming", targetNamespace = "")
boolean incoming,
@WebParam(name = "outgoing", targetNamespace = "")
boolean outgoing
) throws ConfigurationServiceException;
@RequestWrapper(localName = "setAnchorStatusForOwner", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SetAnchorStatusForOwner")
@WebMethod(action = "urn:SetAnchorStatusForOwner")
@ResponseWrapper(localName = "setAnchorStatusForOwnerResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SetAnchorStatusForOwnerResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void setAnchorStatusForOwner(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "status", targetNamespace = "")
org.nhind.config.common.EntityStatus status
) throws ConfigurationServiceException;
@RequestWrapper(localName = "disassociatePolicyGroupFromDomains", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociatePolicyGroupFromDomains")
@WebMethod(action = "urn:DisassociatePolicyGroupFromDomains")
@ResponseWrapper(localName = "disassociatePolicyGroupFromDomainsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociatePolicyGroupFromDomainsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void disassociatePolicyGroupFromDomains(
@WebParam(name = "policyGroupId", targetNamespace = "")
long policyGroupId
) throws ConfigurationServiceException;
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@WebResult(name = "updateDomainResponse", targetNamespace = "http://nhind.org/config/common", partName = "parameters")
@WebMethod(action = "urn:UpdateDomain")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public UpdateDomainResponse updateDomain(
@WebParam(partName = "parameters", name = "updateDomain", targetNamespace = "http://nhind.org/config/common")
UpdateDomain parameters
) throws ConfigurationServiceException;
@RequestWrapper(localName = "disassociatePolicyGroupsFromDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociatePolicyGroupsFromDomain")
@WebMethod(action = "urn:DisassociatePolicyGroupsFromDomain")
@ResponseWrapper(localName = "disassociatePolicyGroupsFromDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociatePolicyGroupsFromDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void disassociatePolicyGroupsFromDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId
) throws ConfigurationServiceException;
@RequestWrapper(localName = "addPolicy", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddPolicy")
@WebMethod(action = "urn:AddPolicy")
@ResponseWrapper(localName = "addPolicyResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.AddPolicyResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void addPolicy(
@WebParam(name = "policy", targetNamespace = "")
org.nhind.config.common.CertPolicy policy
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "searchDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SearchDomain")
@WebMethod(action = "urn:SearchDomain")
@ResponseWrapper(localName = "searchDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SearchDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List searchDomain(
@WebParam(name = "name", targetNamespace = "")
java.lang.String name,
@WebParam(name = "status", targetNamespace = "")
org.nhind.config.common.EntityStatus status
);
@RequestWrapper(localName = "updateGroupAttributes", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateGroupAttributes")
@WebMethod(action = "urn:UpdateGroupAttributes")
@ResponseWrapper(localName = "updateGroupAttributesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateGroupAttributesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateGroupAttributes(
@WebParam(name = "policyGroupId", targetNamespace = "")
long policyGroupId,
@WebParam(name = "policyGroupName", targetNamespace = "")
java.lang.String policyGroupName
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getAnchorsForOwner", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAnchorsForOwner")
@WebMethod(action = "urn:GetAnchorsForOwner")
@ResponseWrapper(localName = "getAnchorsForOwnerResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetAnchorsForOwnerResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getAnchorsForOwner(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "setCertificateStatusForOwner", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SetCertificateStatusForOwner")
@WebMethod(action = "urn:SetCertificateStatusForOwner")
@ResponseWrapper(localName = "setCertificateStatusForOwnerResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.SetCertificateStatusForOwnerResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void setCertificateStatusForOwner(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "status", targetNamespace = "")
org.nhind.config.common.EntityStatus status
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getDNSByRecordId", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByRecordId")
@WebMethod(action = "urn:GetDNSByRecordId")
@ResponseWrapper(localName = "getDNSByRecordIdResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetDNSByRecordIdResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.DnsRecord getDNSByRecordId(
@WebParam(name = "recordId", targetNamespace = "")
long recordId
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getTrustBundlesByDomain", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundlesByDomain")
@WebMethod(action = "urn:GetTrustBundlesByDomain")
@ResponseWrapper(localName = "getTrustBundlesByDomainResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetTrustBundlesByDomainResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getTrustBundlesByDomain(
@WebParam(name = "domainId", targetNamespace = "")
long domainId,
@WebParam(name = "fetchAnchors", targetNamespace = "")
boolean fetchAnchors
) throws ConfigurationServiceException;
@RequestWrapper(localName = "disassociateTrustBundleFromDomains", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociateTrustBundleFromDomains")
@WebMethod(action = "urn:DisassociateTrustBundleFromDomains")
@ResponseWrapper(localName = "disassociateTrustBundleFromDomainsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.DisassociateTrustBundleFromDomainsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void disassociateTrustBundleFromDomains(
@WebParam(name = "trustBundleId", targetNamespace = "")
long trustBundleId
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getOutgoingAnchors", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetOutgoingAnchors")
@WebMethod(action = "urn:GetOutgoingAnchors")
@ResponseWrapper(localName = "getOutgoingAnchorsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetOutgoingAnchorsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getOutgoingAnchors(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getPolicyByName", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyByName")
@WebMethod(action = "urn:GetPolicyByName")
@ResponseWrapper(localName = "getPolicyByNameResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetPolicyByNameResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public org.nhind.config.common.CertPolicy getPolicyByName(
@WebParam(name = "policyName", targetNamespace = "")
java.lang.String policyName
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getCertificatesForOwner", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetCertificatesForOwner")
@WebMethod(action = "urn:GetCertificatesForOwner")
@ResponseWrapper(localName = "getCertificatesForOwnerResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.GetCertificatesForOwnerResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List getCertificatesForOwner(
@WebParam(name = "owner", targetNamespace = "")
java.lang.String owner,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "listDomains", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListDomains")
@WebMethod(action = "urn:listDomains")
@ResponseWrapper(localName = "listDomainsResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListDomainsResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List listDomains(
@WebParam(name = "names", targetNamespace = "")
java.lang.String names,
@WebParam(name = "maxResults", targetNamespace = "")
int maxResults
) throws ConfigurationServiceException;
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "listCertificates", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListCertificates")
@WebMethod(action = "urn:ListCertificates")
@ResponseWrapper(localName = "listCertificatesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.ListCertificatesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public java.util.List listCertificates(
@WebParam(name = "lastCertificateId", targetNamespace = "")
long lastCertificateId,
@WebParam(name = "maxResutls", targetNamespace = "")
int maxResutls,
@WebParam(name = "options", targetNamespace = "")
org.nhind.config.common.CertificateGetOptions options
) throws ConfigurationServiceException;
@RequestWrapper(localName = "updateTrustBundleAttributes", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateTrustBundleAttributes")
@WebMethod(action = "urn:UpdateTrustBundleAttributes")
@ResponseWrapper(localName = "updateTrustBundleAttributesResponse", targetNamespace = "http://nhind.org/config/common", className = "org.nhind.config.common.UpdateTrustBundleAttributesResponse")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2014-07-01T09:12:06.803-04:00")
public void updateTrustBundleAttributes(
@WebParam(name = "trustBundleId", targetNamespace = "")
long trustBundleId,
@WebParam(name = "trustBundleName", targetNamespace = "")
java.lang.String trustBundleName,
@WebParam(name = "trustBundleURL", targetNamespace = "")
java.lang.String trustBundleURL,
@WebParam(name = "signingCert", targetNamespace = "")
org.nhind.config.common.Certificate signingCert,
@WebParam(name = "trustBundleRefreshInterval", targetNamespace = "")
int trustBundleRefreshInterval
) throws ConfigurationServiceException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy