Author: jaz
Date: Thu Jan 4 15:46:49 2007
New Revision: 492816
URL:
http://svn.apache.org/viewvc?view=rev&rev=492816Log:
added missing file from previous commit
Added:
ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java (with props)
Added: ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java?view=auto&rev=492816==============================================================================
--- ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java (added)
+++ ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java Thu Jan 4 15:46:49 2007
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2001-2007 The Apache Software Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ *
http://www.apache.org/licenses/LICENSE-2.0+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.ofbiz.service;
+
+/**
+ * ModelServiceIface
+ */
+public class ModelServiceIface {
+
+ protected String service;
+ protected boolean optional;
+
+ public ModelServiceIface(String service, boolean optional) {
+ this.service = service;
+ this.optional = optional;
+ }
+
+ public String getService() {
+ return this.service;
+ }
+
+ public void setService(String service) {
+ this.service = service;
+ }
+
+ public boolean isOptional() {
+ return this.optional;
+ }
+
+ public void isOptional(boolean optional) {
+ this.optional = optional;
+ }
+}
Propchange: ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java
------------------------------------------------------------------------------
svn:keywords = "Date Rev Author URL Id"
Propchange: ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelServiceIface.java
------------------------------------------------------------------------------
svn:mime-type = text/plain