Interface WebDescriptor
-
- All Known Subinterfaces:
AuthorizationConstraint,SecurityRole,WebResourceCollection
- All Known Implementing Classes:
AuthorizationConstraintImpl,ConnectorConfigProperty,EjbReferenceDescriptor,EntityManagerFactoryReferenceDescriptor,EntityManagerReferenceDescriptor,EnvironmentProperty,MessageDestinationReferenceDescriptor,ResourceEnvReferenceDescriptor,ResourceReferenceDescriptor,RoleReference,SecurityRoleDescriptor,ServiceReferenceDescriptor,WebResourceCollectionImpl
public interface WebDescriptorThis type represents a named descriptor that may be shown in a UI tool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Return a human readable description of this entity.StringgetLargeIconUri()Return the relative URI to the large icon for this descriptor.StringgetName()Return the human readable display name of this descriptor.StringgetSmallIconUri()Return the relative URI to the small icon for this descriptor.voidsetDescription(String description)voidsetLargeIconUri(String largeIconUri)voidsetName(String name)voidsetSmallIconUri(String smallIconUri)
-
-
-
Method Detail
-
getLargeIconUri
String getLargeIconUri()
Return the relative URI to the large icon for this descriptor.
-
setLargeIconUri
void setLargeIconUri(String largeIconUri)
-
getSmallIconUri
String getSmallIconUri()
Return the relative URI to the small icon for this descriptor.
-
setSmallIconUri
void setSmallIconUri(String smallIconUri)
-
getName
String getName()
Return the human readable display name of this descriptor.
-
setName
void setName(String name)
-
getDescription
String getDescription()
Return a human readable description of this entity.
-
setDescription
void setDescription(String description)
-
-