Methods Summary |
---|
public java.lang.String | getEndpointName()Returns the relative name of the web service endpoint
StringTokenizer strTok = new StringTokenizer(name, "#");
String relId = null;
while (strTok.hasMoreElements()) {
relId = (String) strTok.nextElement();
}
return relId;
|
public boolean | getJbiEnabled()Returns true, if this web service endpoint JBI enabled
return jbiEnabled;
|
public int | getMaxHistorySize()Returns the max history size (size of stored monitoring stats)
return maxHistorySize;
|
public java.lang.String | getMonitoringLevel()Returns the monitoring level OFF, LOW or HIGH
return monitoringLevel;
|
public java.lang.String | getName()Returns the name of the web service endpoint
return name;
|
public com.sun.enterprise.admin.wsmgmt.config.spi.RegistryLocation[] | getRegistryLocation()Returns the registries where the web service end point artifacts are
published.
return null;
|
public com.sun.enterprise.admin.wsmgmt.config.spi.TransformationRule[] | getRequestTransformationRule()Returns the transformation rules defined for this endpoint
during request phase
if ( tRules != null) {
List tList = new ArrayList();
for (int index =0; index < tRules.length; index++) {
String phase = tRules[index].getApplyTo();
if ( (phase.equals(Constants.REQUEST) ) ||
(phase.equals(Constants.BOTH)) ) {
if ( tRules[index].isEnabled() == true) {
tList.add(new TransformationRuleImpl(tRules[index]));
}
}
}
if ( tList.size() > 0 ) {
TransformationRule[] transformRules = new
TransformationRuleImpl[tList.size()];
return (TransformationRule[]) tList.toArray(transformRules);
} else {
return null;
}
} else {
return null;
}
|
public com.sun.enterprise.admin.wsmgmt.config.spi.TransformationRule[] | getResponseTransformationRule()Returns the transformation rules defined for this endpoint
during response phase
if ( tRules != null) {
List tList = new ArrayList();
for (int index =0; index < tRules.length; index++) {
String phase = tRules[index].getApplyTo();
if ( (phase.equals(Constants.RESPONSE) ) ||
(phase.equals(Constants.BOTH)) ) {
if ( tRules[index].isEnabled() == true) {
tList.add(new TransformationRuleImpl(tRules[index]));
}
}
}
if ( tList.size() > 0 ) {
TransformationRule[] transformRules = new
TransformationRuleImpl[tList.size()];
return (TransformationRule[]) tList.toArray(transformRules);
} else {
return null;
}
} else {
return null;
}
|
public com.sun.enterprise.admin.wsmgmt.config.spi.TransformationRule[] | getTransformationRule()Returns the transformation rules defined for this endpoint
if ( tRules != null) {
TransformationRule[] transformRules = new
TransformationRuleImpl[tRules.length];
for (int index =0; index < tRules.length; index++) {
transformRules[index]= new TransformationRuleImpl(tRules[index]);
}
return transformRules;
} else {
return null;
}
|