|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.cmis.interopserver.services.tie.TieSoapBindingSkeleton
public class TieSoapBindingSkeleton
| Constructor Summary | |
|---|---|
TieSoapBindingSkeleton()
|
|
TieSoapBindingSkeleton(Tie impl)
|
|
| Method Summary | |
|---|---|
org.cmis.interopserver.beans.TieIncident[] |
getAllIncidents(boolean includeAllVersions)
Fetches a list of all versions of incidents posted to this COG and saved by this COG suitable for displaying in a list |
org.cmis.interopserver.beans.AttachmentDescriptor[] |
getAttachmentList(java.lang.String vendorIncidentId)
This method takes an incident ID and version number and returns an array of AttachmentDescriptors for the given incident |
org.cmis.interopserver.beans.AttachmentDescriptor[] |
getAttachmentList(java.lang.String vendorIncidentId,
long version)
This method takes an incident ID and returns an array of AttachmentDescriptors for the given incident |
void |
getAttachments(java.lang.String vendorIncidentId,
org.cmis.interopserver.beans.AttachmentDescriptor[] attachments,
boolean formatAsDIME)
This method takes an incident ID, an array of file names and a boolean to specify whether attachments should be retrieved in DIME format or in conformance with the SOAP with Attachments specification (MIME). |
void |
getAttachments(java.lang.String vendorIncidentId,
long version,
org.cmis.interopserver.beans.AttachmentDescriptor[] attachments,
boolean formatAsDIME)
This method takes an incident ID, a version number, an array of file names and a boolean to specify whether attachments should be retrieved in DIME format or in conformance with the SOAP with Attachments specification (MIME). |
org.cmis.interopserver.beans.SimpleCOG[] |
getCogs()
Gets a list of valid SimpleCOGs that includes all possible COGs for a post operation such as postCAPAlert() or postIncident(). |
org.cmis.interopserver.beans.SimpleCOG[] |
getCOGsPostedTo(java.lang.String vendorIncidentId)
Gets the list of COGs that a particular incident was posted to in the latest version |
org.cmis.interopserver.beans.SimpleCOG[] |
getCOGsPostedTo(java.lang.String vendorIncidentId,
long version)
Gets the list of SimpleCOGs that a particular incident version was posted to |
org.cmis.interopserver.beans.TieIncident |
getIncident(java.lang.String vendorIncidentId)
This method takes an incident ID and returns detailed incident information returned in the form of a TieIncident object. |
org.cmis.interopserver.beans.TieIncident |
getIncident(java.lang.String vendorIncidentId,
long version)
This method takes an incident ID and version number and returns detailed incident information returned in the form of a TieIncident object. |
org.cmis.interopserver.beans.TieIncident[] |
getIncidentHistory(java.lang.String vendorIncidentId)
This method takes an incident ID and version and returns detailed incident information returned in the form of a TieIncident object. |
org.cmis.interopserver.beans.SimpleCOG |
getMyCog()
Gets the SimpleCOG of the caller |
static java.util.List |
getOperationDescByName(java.lang.String methodName)
Returns List of OperationDesc objects with this name |
static java.util.Collection |
getOperationDescs()
Returns Collection of OperationDescs |
java.lang.String[] |
getValidCategoryNames()
Fetches a list of valid category names |
java.lang.String[] |
getValidConfidenceNames()
Fetches a list of valid confidence names |
java.lang.String[] |
getValidNotificationLevelNames()
Fetches a list of valid notification level names |
java.lang.String[] |
getValidPhaseNames()
Fetches a list of valid phase names |
java.lang.String[] |
getValidSeverityNames()
Fetches a list of valid severity names |
java.lang.String[] |
getValidStatusNames()
Fetches a list of valid status names |
java.lang.String[] |
getValidTypeNames()
Fetches a list of valid type names |
java.lang.String |
ping()
This method takes no parameters and returns only "pong" indicating success. |
java.lang.String |
postIncident(org.cmis.interopserver.beans.TieIncident incidentInfo,
org.cmis.interopserver.beans.SimpleCOG[] postToCogs,
org.cmis.interopserver.beans.AttachmentDescriptor[] attachments)
This method takes three arguments: an instance of TieIncident, an array of SimpleCOGs and an array of AttachmentDescriptors. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public TieSoapBindingSkeleton()
public TieSoapBindingSkeleton(Tie impl)
| Method Detail |
|---|
public static java.util.List getOperationDescByName(java.lang.String methodName)
public static java.util.Collection getOperationDescs()
public org.cmis.interopserver.beans.TieIncident[] getAllIncidents(boolean includeAllVersions)
throws java.rmi.RemoteException
Tie
getAllIncidents in interface TieincludeAllVersions - if set to true will return all versions of all incidents, if false
this method returns a list of the latest version of all incidents
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.AttachmentDescriptor[] getAttachmentList(java.lang.String vendorIncidentId)
throws java.rmi.RemoteException
Tie
getAttachmentList in interface TievendorIncidentId - used to reference an incident
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.AttachmentDescriptor[] getAttachmentList(java.lang.String vendorIncidentId,
long version)
throws java.rmi.RemoteException
Tie
getAttachmentList in interface TievendorIncidentId - ID used to reference an incidentversion - Used to retrieve a particular version
java.rmi.RemoteException - An exception occurred remotely
public void getAttachments(java.lang.String vendorIncidentId,
org.cmis.interopserver.beans.AttachmentDescriptor[] attachments,
boolean formatAsDIME)
throws java.rmi.RemoteException
Tie
getAttachments in interface TievendorIncidentId - used to reference an incidentattachments - An array of AttachmentDescriptorsformatAsDIME - set to true if attachments should be retrieved in DIME format
java.rmi.RemoteException - An exception occurred remotely
public void getAttachments(java.lang.String vendorIncidentId,
long version,
org.cmis.interopserver.beans.AttachmentDescriptor[] attachments,
boolean formatAsDIME)
throws java.rmi.RemoteException
Tie
getAttachments in interface TievendorIncidentId - used to reference an incidentversion - used to retrieve a particular versionattachments - An array of AttachmentDescriptorsformatAsDIME - set to true if attachments should be retrieved in DIME format
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.SimpleCOG[] getCOGsPostedTo(java.lang.String vendorIncidentId)
throws java.rmi.RemoteException
Tie
getCOGsPostedTo in interface TievendorIncidentId - used to reference an incident
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.SimpleCOG[] getCOGsPostedTo(java.lang.String vendorIncidentId,
long version)
throws java.rmi.RemoteException
Tie
getCOGsPostedTo in interface TievendorIncidentId - used to reference an incidentversion - used to retrieve a particular version
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.SimpleCOG[] getCogs()
throws java.rmi.RemoteException
org.cmis.interopserver.services.base.BasepostCAPAlert() or postIncident(). All COGs EXCEPT the operator's COG
will be returned.
getCogs in interface org.cmis.interopserver.services.base.Basejava.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.TieIncident getIncident(java.lang.String vendorIncidentId)
throws java.rmi.RemoteException
Tie
getIncident in interface TievendorIncidentId - used to reference an incident
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.TieIncident getIncident(java.lang.String vendorIncidentId,
long version)
throws java.rmi.RemoteException
Tie
getIncident in interface TievendorIncidentId - ID used to reference an incidentversion - used to retrieve a particular version
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.TieIncident[] getIncidentHistory(java.lang.String vendorIncidentId)
throws java.rmi.RemoteException
Tie
getIncidentHistory in interface TievendorIncidentId - used to reference an incident
java.rmi.RemoteException - An exception occurred remotely
public org.cmis.interopserver.beans.SimpleCOG getMyCog()
throws java.rmi.RemoteException
org.cmis.interopserver.services.base.Base
getMyCog in interface org.cmis.interopserver.services.base.Basejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String ping()
throws java.rmi.RemoteException
org.cmis.interopserver.services.base.Base
ping in interface org.cmis.interopserver.services.base.Basejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String postIncident(org.cmis.interopserver.beans.TieIncident incidentInfo,
org.cmis.interopserver.beans.SimpleCOG[] postToCogs,
org.cmis.interopserver.beans.AttachmentDescriptor[] attachments)
throws java.rmi.RemoteException
Tie
postIncident in interface TieincidentInfo - Detailed incident information in the form of a TieIncidentpostToCogs - COGs who will receive the incident dataattachments - An array of AttachmentDescriptors describing what will be attached to
the message. Each localAbsoluteFileName should have the full path and name of a
file to be sent
java.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidCategoryNames()
throws java.rmi.RemoteException
Tie
getValidCategoryNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidNotificationLevelNames()
throws java.rmi.RemoteException
Tie
getValidNotificationLevelNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidPhaseNames()
throws java.rmi.RemoteException
Tie
getValidPhaseNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidSeverityNames()
throws java.rmi.RemoteException
Tie
getValidSeverityNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidStatusNames()
throws java.rmi.RemoteException
Tie
getValidStatusNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidTypeNames()
throws java.rmi.RemoteException
Tie
getValidTypeNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
public java.lang.String[] getValidConfidenceNames()
throws java.rmi.RemoteException
Tie
getValidConfidenceNames in interface Tiejava.rmi.RemoteException - An exception occurred remotely
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||