Borland(R) Enterprise Server VisiBroker(R) デベロッパーズガイド
Accountクラスに加える変更(サンプルbank_agentと比較して)は,もうBank.AccountPOAを継承しなくするということだけです。
// Server.java
public class AccountImpl implements Bank.AccountOperations {
public AccountImpl(float balance) {
_balance = balance;
}
public float balance() {
return _balance;
}
private float _balance;
}
All Rights Reserved. Copyright (C) 2012, 2015, Hitachi, Ltd.
COPYRIGHT (C) 1992-2004 Borland Software Corporation. All rights reserved.