|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.harvard.cfa.vo.tapclient.vosi.Capability
public class Capability
A description of a general capability of the service--its behavioral characteristics and limitations--and how to use it. The information in this object is only as recent as the call to VosiService#getCapabilities that generated this object. To see if a service's capabilities have changed, call VosiService#getCapabilities again. The following example explores the VOSI capabilities response of a service to determine if it has the TAP service capability.
for (Capability capability: capabilities) {
System.out.println("This capability supports the following Standard: "+capability.getStandardId());
}
Capabilities
Constructor Summary | |
---|---|
protected |
Capability()
Constructs a Capability object. |
Method Summary | |
---|---|
java.lang.String |
getDescription()
Returns a description of what this Capability provides as part of the overall service. |
java.util.List<Interface> |
getInterfaces()
Returns a list of Interface objects which describe how to call the service to access this capability. |
java.lang.String |
getStandardId()
Returns a unique identifier for the VO standard that this Capability complies to. |
java.util.List<Validation> |
getValidations()
Returns a list of Validation objects which should indicate the quality of the capability description and whether its implementation is functionally with applicable standards |
void |
list(java.io.PrintStream output)
|
void |
list(java.io.PrintStream output,
java.lang.String indent)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected Capability()
Method Detail |
---|
public java.util.List<Validation> getValidations()
public java.lang.String getDescription()
public java.util.List<Interface> getInterfaces()
public java.lang.String getStandardId()
public void list(java.io.PrintStream output)
public void list(java.io.PrintStream output, java.lang.String indent)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |