01: /*
02: * Copyright 2006-2007 Luca Garulli (luca.garulli@assetdata.it)
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.romaframework.aspect.view;
18:
19: import java.io.InputStream;
20:
21: import org.romaframework.aspect.session.SessionInfo;
22: import org.romaframework.aspect.view.form.ContentComponent;
23: import org.romaframework.aspect.view.form.ContentForm;
24: import org.romaframework.aspect.view.screen.Screen;
25: import org.romaframework.core.aspect.Aspect;
26: import org.romaframework.core.schema.SchemaObject;
27:
28: /**
29: * View Aspect behavior interface.
30: *
31: * @author Luca Garulli (luca.garulli@assetdata.it)
32: *
33: */
34: public interface ViewAspect extends Aspect {
35:
36: public static final String ASPECT_NAME = "view";
37:
38: public abstract ContentForm createForm(SchemaObject iSchema,
39: ContentComponent iParent);
40:
41: public abstract String showForm(ContentForm iForm, String iWhere,
42: Screen iDesktop);
43:
44: public abstract void pushShowForm(SessionInfo iSession,
45: ContentForm iForm, String iWhere);
46:
47: public abstract void pushDownload(InputStream in, String iFileName,
48: String iContentType);
49:
50: public abstract void pushRefreshForm(SessionInfo session,
51: ContentComponent form);
52: }
|