01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.config.schema.builder;
06:
07: import java.util.Map;
08:
09: public interface WebApplicationConfigBuilder {
10: public static final String ATTRIBUTE_NAME = "synchronous-write";
11:
12: void setWebApplicationName(String name);
13:
14: void setWebApplicationAttributes(Map attributes);
15: }
|