KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > builder > WebApplicationConfigBuilder


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package com.tc.config.schema.builder;
6
7 import java.util.Map JavaDoc;
8
9 public interface WebApplicationConfigBuilder {
10   public static final String JavaDoc ATTRIBUTE_NAME = "synchronous-write";
11
12   void setWebApplicationName(String JavaDoc name);
13
14   void setWebApplicationAttributes(Map JavaDoc attributes);
15 }
16
Popular Tags