Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01

weblogic.descriptor.example
Interface ExampleCustomizedBean


public interface ExampleCustomizedBean

Defines a descriptor bean whose implemententation is customized by ExampleCustomizedBeanCustomizer. This interface illustrates each of the supported customization points.

This bean specifies the customizer ExampleCustomizedBeanCustomizer using a BeanAnnotations.CUSTOMIZER annotation in interface comment block.


Method Summary
 String customOperation(int value)
          Defines an operation whose implemention is defined by ExampleCustomizedBeanCustomizer.customOperation(int).
 String getGetterLikeOperation()
          Defines a method that looks like a getter but is in fact an operation.
 String getModifiableCustomizedProperty()
          Defines, in conjunction with ExampleCustomizedBean.setModifiableCustomizedProperty(java.lang.String), a modifiable String property named ModifiableCustomizedProperty whose implementation is customized by ExampleCustomizedBeanCustomizer.
 String getReadOnlyCustomizedProperty()
          Defines a read-only property named ReadOnlyCustomizedProperty whose implementation is customized by ExampleCustomizedBeanCustomizer.
 void setModifiableCustomizedProperty(String value)
          See ExampleCustomizedBean.getModifiableCustomizedProperty()
 

Method Detail

getReadOnlyCustomizedProperty

String getReadOnlyCustomizedProperty()
Defines a read-only property named ReadOnlyCustomizedProperty whose implementation is customized by ExampleCustomizedBeanCustomizer.


getModifiableCustomizedProperty

String getModifiableCustomizedProperty()
Defines, in conjunction with ExampleCustomizedBean.setModifiableCustomizedProperty(java.lang.String), a modifiable String property named ModifiableCustomizedProperty whose implementation is customized by ExampleCustomizedBeanCustomizer.


setModifiableCustomizedProperty

void setModifiableCustomizedProperty(String value)
See ExampleCustomizedBean.getModifiableCustomizedProperty()


customOperation

String customOperation(int value)
Defines an operation whose implemention is defined by ExampleCustomizedBeanCustomizer.customOperation(int).


getGetterLikeOperation

String getGetterLikeOperation()
Defines a method that looks like a getter but is in fact an operation. Its implementation is defined by ExampleCustomizedBeanCustomizer.getGetterLikeOperation(int).

This declaration uses the MethodAnnotations.OPERATION annotation in its comment block to specify that it be treated as an operation rather than a property method.


Copyright 1996, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01