org.jvnet.hk2.config.Attribute.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中org.jvnet.hk2.config.Attribute.<init>()方法的一些代码示例,展示了Attribute.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Attribute.<init>()方法的具体详情如下:
包路径:org.jvnet.hk2.config.Attribute
类名称:Attribute
方法名:<init>

Attribute.<init>介绍

暂无

代码示例

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the transactionService property.
 *
 * Transaction subsystem
 * 
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="OFF")
@Pattern(regexp="(OFF|LOW|HIGH)")
public String getTransactionService();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the intervalInSeconds property.
 *
 * Interval, in seconds, between health checks. A value of "0"  means that
 * the health check is disabled. Default is 30 seconds. Must be 0 or greater.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="30")
@Min(value=0)
public String getIntervalInSeconds();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the gmsEnabled property.
 *
 * When "gms-enabled" is set to "true", the GMS services will be
 * started as a lifecycle module in each the application server in the
 * cluster.
 *
 * @return true | false as a string, null means false
 */
@Attribute (defaultValue="true", dataType=Boolean.class, required=true)
@NotNull
String getGmsEnabled();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the ref property.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute(key=true)
@NotNull
@Pattern(regexp=NAME_APP_REGEX, message="{appref.invalid.name}", payload=ApplicationRef.class)
public String getRef();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the address property.
 *
 * Specifies the IP address or host-name.
 * 
 * @return possible object is
 *         {@link String }
 */
@Attribute
@NotNull
String getAddress();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the name property.
 * Defines the name of this realm
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute(key=true)
@NotNull
@Pattern(regexp=NAME_REGEX)
String getName();

代码示例来源:origin: org.glassfish.admin/config-api

/**
 * Gets the value of the maxMissedHeartbeats property.
 * <p/>
 * Maximum number of attempts to try before GMS confirms that a failure is
 * suspected in the group. Must be a positive integer.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute(defaultValue = "3")
@Min(value = 1)
String getMaxMissedHeartbeats();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the security property.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="OFF")
@Pattern(regexp="(OFF|LOW|HIGH)")
public String getSecurity();

代码示例来源:origin: org.glassfish.main.admin/config-api

/** Gets the name of the auth realm to be used for administration. This obsoletes/deprecates the similarly named
 *  attribute on JmxConnector. Note that this is of essence where admin access is done outside the containers.
 *  Container managed security is still applicable and is handled via security annotations and deployment
 *  descriptors of the admin applications (aka admin GUI application, MEjb application).
 *
 * @return name of the auth realm to be used for admin access
 */
@Attribute (defaultValue="admin-realm")
@NotNull
String getAuthRealmName();

代码示例来源:origin: org.glassfish.admin/config-api

/**
 * Identifies the name of the action MBean.
 * @return action name
 */
@Attribute(key=true)
@NotNull
@Pattern(regexp=NAME_REGEX)
public String getActionMbeanName();

代码示例来源:origin: org.glassfish.admin/config-api

/**
 * Gets the value of the shutdownTimeoutInSeconds property.
   *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="30")
@Min(value=1)
public String getShutdownTimeoutInSeconds();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the web-service-container property.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="OFF")
@Pattern(regexp="(OFF|LOW|HIGH)")
public String getWebServicesContainer();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the name property.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute(key=true)
@NotNull
public String getName();

代码示例来源:origin: org.glassfish.main.common/glassfish-api

/**
 *  Name of the configured object
 *
 * @return name of the configured object
 */
@Attribute(key=true)
@NotNull
@Pattern(regexp=NAME_APP_REGEX, message="{app.invalid.name}", payload=ApplicationName.class)
public String getName();

代码示例来源:origin: org.glassfish.main.orb/orb-enabler

/**
 * Gets the value of the messageFragmentSize property.
 *
 * GIOPv1.2 messages larger than this will get fragmented.
 * Minimum value is 128.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="1024")
@Min(value=128)
public String getMessageFragmentSize();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the cloud property.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="OFF")
@Pattern(regexp="(OFF|LOW|HIGH)")
public String getCloud();

代码示例来源:origin: org.glassfish.admin/config-api

/**
 * Gets the value of the implClassName property.
 * A String that represents fully qualified class name of
 * MBean implementation. This is read-only.
 * 
 * @return possible object is
 *         {@link String }
 */
@Attribute
@NotNull
public String getImplClassName();

代码示例来源:origin: org.glassfish.main.webservices/webservices-connector

/**
 * Gets the value of the connectorResourceJndiName property.
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute(key=true)
@NotNull
@Pattern(regexp=NAME_REGEX)
public String getConnectorResourceJndiName();

代码示例来源:origin: org.glassfish.main.ejb/gf-ejb-connector

/**
 * Gets the value of the idleTimeoutInSeconds property.
 *
 * Idle bean instance in pool becomes a candidate for deletion, when this
 * timeout expires
 *
 * @return possible object is
 *         {@link String }
 */
@Attribute (defaultValue="600")
@Min(value=0)
String getIdleTimeoutInSeconds();

代码示例来源:origin: org.glassfish.main.admin/config-api

/**
 * Gets the value of the sso-enabled property.  Possible values:  true/false/inherit
 *
 * @return possible object is {@link String }
 */
@Attribute(defaultValue = "inherit")
@Pattern(regexp = "(true|on|false|off|inherit)")
String getSsoEnabled();

相关文章