1 23 24 28 29 34 35 package com.sun.enterprise.management.support.oldconfig; 36 37 38 public interface OldWebContainerAvailabilityMBean extends OldProperties 39 { 40 public String getAvailabilityEnabled(); 41 public void setAvailabilityEnabled( final String value ); 42 43 public String getHttpSessionStorePoolName(); 44 public void setHttpSessionStorePoolName( final String value ); 45 46 public String getPersistenceFrequency(); 47 public void setPersistenceFrequency( final String value ); 48 49 public String getPersistenceScope(); 50 public void setPersistenceScope( final String value ); 51 52 public boolean getPersistenceStoreHealthCheckEnabled(); 53 public void setPersistenceStoreHealthCheckEnabled( final boolean value ); 54 55 public String getPersistenceType(); 56 public void setPersistenceType( final String value ); 57 58 public boolean getSsoFailoverEnabled(); 59 public void setSsoFailoverEnabled( final boolean value ); 60 61 62 public boolean destroyConfigElement(); 64 public String getDefaultAttributeValue( final String attributeName ); 65 } | Popular Tags |