summaryrefslogtreecommitdiffstats
path: root/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo')
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DataObject.java31
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DuplicateTypeException.java27
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Property.java29
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Type.java62
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/annotation/Type.java34
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/DataFactory.java34
-rw-r--r--sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/TypeHelper.java52
7 files changed, 269 insertions, 0 deletions
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DataObject.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DataObject.java
new file mode 100644
index 0000000000..e18ceb1171
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DataObject.java
@@ -0,0 +1,31 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public interface DataObject<T> {
+ Object get(int index);
+ void set(int index, Object value);
+
+ Type<T> getType();
+
+ String getString(int index);
+ void setString(int index, String value);
+}
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DuplicateTypeException.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DuplicateTypeException.java
new file mode 100644
index 0000000000..5f96160870
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/DuplicateTypeException.java
@@ -0,0 +1,27 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public class DuplicateTypeException extends IllegalArgumentException {
+ public DuplicateTypeException(String message) {
+ super(message);
+ }
+}
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Property.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Property.java
new file mode 100644
index 0000000000..ed2646259d
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Property.java
@@ -0,0 +1,29 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public interface Property<T> {
+ String getName();
+ Type<T> getType();
+ int getIndex();
+ boolean isMany();
+ java.lang.reflect.Type getJavaType();
+}
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Type.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Type.java
new file mode 100644
index 0000000000..924ddc696d
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/Type.java
@@ -0,0 +1,62 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo;
+
+import java.util.List;
+import java.lang.reflect.*;
+import javax.xml.namespace.QName;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public interface Type<T> {
+ static final String SDO_NAMESPACE = "http://www.osoa.org/sdo";
+ static final QName BOOLEAN = new QName(SDO_NAMESPACE, "Boolean");
+ static final QName BYTE = new QName(SDO_NAMESPACE, "Byte");
+ static final QName BYTES = new QName(SDO_NAMESPACE, "Bytes");
+ static final QName CHARACTER = new QName(SDO_NAMESPACE, "Character");
+ static final QName DATE = new QName(SDO_NAMESPACE, "Date");
+ static final QName DOUBLE = new QName(SDO_NAMESPACE, "Double");
+ static final QName FLOAT = new QName(SDO_NAMESPACE, "Float");
+ static final QName INT = new QName(SDO_NAMESPACE, "Int");
+ static final QName LONG = new QName(SDO_NAMESPACE, "Long");
+ static final QName SHORT = new QName(SDO_NAMESPACE, "Short");
+ static final QName STRING = new QName(SDO_NAMESPACE, "String");
+
+ static final String JAVA_NAMESPACE = "http://www.osoa.org/sdo/java";
+ static final QName BOOLEAN_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Boolean");
+ static final QName CHARACTER_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Character");
+ static final QName BYTE_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Byte");
+ static final QName SHORT_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Short");
+ static final QName INTEGER_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Integer");
+ static final QName LONG_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Long");
+ static final QName FLOAT_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Float");
+ static final QName DOUBLE_OBJECT = new QName(JAVA_NAMESPACE, "java.lang.Double");
+
+ QName getName();
+
+ java.lang.reflect.Type getJavaType();
+
+ T newInstance();
+
+ List<Property> getProperties();
+
+ boolean isDataType();
+
+ Property<?> getProperty(String name);
+}
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/annotation/Type.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/annotation/Type.java
new file mode 100644
index 0000000000..20bacf2dad
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/annotation/Type.java
@@ -0,0 +1,34 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo.annotation;
+
+import static java.lang.annotation.ElementType.TYPE;
+import java.lang.annotation.Retention;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Target;
+
+/**
+ * @version $Rev$ $Date$
+ */
+@Target({TYPE})
+@Retention(RUNTIME)
+public @interface Type {
+ String namespace();
+
+ String name();
+}
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/DataFactory.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/DataFactory.java
new file mode 100644
index 0000000000..9f234129bc
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/DataFactory.java
@@ -0,0 +1,34 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo.helper;
+
+import javax.xml.namespace.QName;
+
+import org.osoa.sdo.Type;
+import org.osoa.sdo.DataObject;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public interface DataFactory {
+ <T> T create(Class<T> interfaceClass);
+
+ <T> T create(Type<T> type);
+
+ DataObject<?> create(QName name);
+}
diff --git a/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/TypeHelper.java b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/TypeHelper.java
new file mode 100644
index 0000000000..1e953cb6ee
--- /dev/null
+++ b/sandbox/jboynes/sdoproxy/src/main/java/org/osoa/sdo/helper/TypeHelper.java
@@ -0,0 +1,52 @@
+/**
+ *
+ * Copyright 2005 BEA Systems Inc.
+ * Copyright 2005 International Business Machines Corporation
+ *
+ * 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.osoa.sdo.helper;
+
+import java.util.List;
+import javax.xml.namespace.QName;
+
+import org.osoa.sdo.Property;
+import org.osoa.sdo.Type;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public interface TypeHelper {
+ /**
+ * Define a Type in the Java namespace based on a Java interface.
+ * Equivalent to define(new QName(Type.JAVA_NAMESPACE, interfaceClass.getName()), interfaceClass)
+ *
+ * @param interfaceClass a Java interface that defines the type
+ * @return a new Type defined from the Java interface
+ */
+ <T> Type<T> define(Class<T> interfaceClass);
+
+ /**
+ * Define a Type based on a Java interface.
+ * The name of the Type will be the interface's class name.
+ *
+ * @param name the name of the type
+ * @param interfaceClass a Java interface that defines the type
+ * @return a new Type defined from the Java interface
+ */
+ <T> Type<T> define(QName name, Class<T> interfaceClass);
+
+ Type<?> getType(QName name);
+
+ <T> Type<T> getType(Class<T> interfaceClass);
+}