Fuchan_Tan_3092
Feb 16, 2012Nimbostratus
localLBPersistenceMode constructor
Hi,
I am not able to create a LocalLBPersistenceMode class. The constructor requires a String as argument, however it complains that the constructor LocalLBPersistenceMode(String) is not visible.
Has anyone out there created a LocalLBProfilePersistence sucessfully using iControl.Assembler for java 11.1.1?
Any idea?
Thanks, Mike Tan
-------------------section of the code ---------------------------------
String [] localLBProfilePersistence = new String[1];
iControl.LocalLBPersistenceMode[] localLBPersistenceMode = new iControl.LocalLBPersistenceMode[1];
localLBPersistenceMode[0]= new LocalLBPersistenceMode(iControl.LocalLBPersistenceMode._PERSISTENCE_MODE_UIE);
//localLBPersistenceMode[0]= new LocalLBPersistenceMode();
i_interfaces.getLocalLBProfilePersistence().create(localLBProfilePersistence, localLBPersistenceMode);
--------------------------------------------------------------------