public interface Properties
{
public Object getProperty(String name);
public Object getProperty(String name, Object defaultVal);
public Object setProperty(String name, Object value);
public Object remove(String name);
public int size();
public String[] getNames();
}
public interface Properties
{
public Object getProperty(String name);
public Object getProperty(String name, Object defaultVal);
public Object setProperty(String name, Object value);
public Object remove(String name);
public int size();
public String[] getNames();
}
Copy to ClipboardCopied!Toggle word wrapToggle overflow
注記
java.util.Properties を使用する properties は、JBoss Enterprise Service Bus 内に実装されていません。これは、使用できるクライアントとサービスの種類が制限されるためです。Web サービススタックは、同じ理由でそれらを実装しません。この制限に対処するには、現在の抽象化内に java.util.Properties を組み込む必要があります。