Interface ConnectionPropertyType<T>
-
- All Superinterfaces:
org.jboss.shrinkwrap.descriptor.api.Child<T>
- All Known Implementing Classes:
ConnectionPropertyTypeImpl
public interface ConnectionPropertyType<T> extends org.jboss.shrinkwrap.descriptor.api.Child<T>This interface defines the contract for theconnection-propertyTypexsd type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Returns thenameattributeStringgetText()Returns the body text of the elementconnection-propertyTypeConnectionPropertyType<T>name(String name)Sets thenameattributeConnectionPropertyType<T>removeName()Removes thenameattributeConnectionPropertyType<T>text(String value)Sets the body text for the elementconnection-propertyType
-
-
-
Method Detail
-
text
ConnectionPropertyType<T> text(String value)
Sets the body text for the elementconnection-propertyType- Parameters:
connectionPropertyType- the value for the body textconnection-propertyType- Returns:
- the current instance of
ConnectionPropertyType
-
getText
String getText()
Returns the body text of the elementconnection-propertyType- Returns:
- the value defined for the text
connection-propertyType
-
name
ConnectionPropertyType<T> name(String name)
Sets thenameattribute- Parameters:
name- the value for the attributename- Returns:
- the current instance of
ConnectionPropertyType
-
getName
String getName()
Returns thenameattribute- Returns:
- the value defined for the attribute
name
-
removeName
ConnectionPropertyType<T> removeName()
Removes thenameattribute- Returns:
- the current instance of
ConnectionPropertyType
-
-