Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/type/ArtifactTypeFactory.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/type/ArtifactTypeFactory.java122
1 files changed, 61 insertions, 61 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/type/ArtifactTypeFactory.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/type/ArtifactTypeFactory.java
index c9bdc95fc46..dd48bd700f1 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/type/ArtifactTypeFactory.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/type/ArtifactTypeFactory.java
@@ -1,61 +1,61 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.core.model.type;
-
-import org.eclipse.osee.framework.core.enums.StorageState;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-import org.eclipse.osee.framework.core.model.cache.ArtifactTypeCache;
-import org.eclipse.osee.framework.core.model.cache.IOseeCache;
-import org.eclipse.osee.framework.core.model.cache.IOseeTypeFactory;
-import org.eclipse.osee.framework.core.util.Conditions;
-
-/**
- * @author Roberto E. Escobar
- */
-public class ArtifactTypeFactory implements IOseeTypeFactory {
-
- public ArtifactTypeFactory() {
- }
-
- public ArtifactType create(String guid, boolean isAbstract, String name) throws OseeCoreException {
- Conditions.checkNotNullOrEmpty(name, "artifact type name");
- String checkedGuid = Conditions.checkGuidCreateIfNeeded(guid);
- return new ArtifactType(checkedGuid, name, isAbstract);
- }
-
- public ArtifactType createOrUpdate(ArtifactTypeCache cache, String guid, boolean isAbstract, String name) throws OseeCoreException {
- ArtifactType artifactType = cache.getByGuid(guid);
- if (artifactType == null) {
- artifactType = create(guid, isAbstract, name);
- } else {
- cache.decache(artifactType);
- artifactType.setName(name);
- artifactType.setAbstract(isAbstract);
- }
- cache.cache(artifactType);
- return artifactType;
- }
-
- public ArtifactType createOrUpdate(IOseeCache<ArtifactType> cache, int uniqueId, StorageState storageState, String guid, boolean isAbstract, String name) throws OseeCoreException {
- ArtifactType artifactType = cache.getById(uniqueId);
- if (artifactType == null) {
- artifactType = create(guid, isAbstract, name);
- artifactType.setId(uniqueId);
- artifactType.setStorageState(storageState);
- } else {
- cache.decache(artifactType);
- artifactType.setName(name);
- artifactType.setAbstract(isAbstract);
- }
- cache.cache(artifactType);
- return artifactType;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.model.type;
+
+import org.eclipse.osee.framework.core.enums.StorageState;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.core.model.cache.ArtifactTypeCache;
+import org.eclipse.osee.framework.core.model.cache.IOseeCache;
+import org.eclipse.osee.framework.core.model.cache.IOseeTypeFactory;
+import org.eclipse.osee.framework.core.util.Conditions;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class ArtifactTypeFactory implements IOseeTypeFactory {
+
+ public ArtifactTypeFactory() {
+ }
+
+ public ArtifactType create(String guid, boolean isAbstract, String name) throws OseeCoreException {
+ Conditions.checkNotNullOrEmpty(name, "artifact type name");
+ String checkedGuid = Conditions.checkGuidCreateIfNeeded(guid);
+ return new ArtifactType(checkedGuid, name, isAbstract);
+ }
+
+ public ArtifactType createOrUpdate(ArtifactTypeCache cache, String guid, boolean isAbstract, String name) throws OseeCoreException {
+ ArtifactType artifactType = cache.getByGuid(guid);
+ if (artifactType == null) {
+ artifactType = create(guid, isAbstract, name);
+ } else {
+ cache.decache(artifactType);
+ artifactType.setName(name);
+ artifactType.setAbstract(isAbstract);
+ }
+ cache.cache(artifactType);
+ return artifactType;
+ }
+
+ public ArtifactType createOrUpdate(IOseeCache<ArtifactType> cache, int uniqueId, StorageState storageState, String guid, boolean isAbstract, String name) throws OseeCoreException {
+ ArtifactType artifactType = cache.getById(uniqueId);
+ if (artifactType == null) {
+ artifactType = create(guid, isAbstract, name);
+ artifactType.setId(uniqueId);
+ artifactType.setStorageState(storageState);
+ } else {
+ cache.decache(artifactType);
+ artifactType.setName(name);
+ artifactType.setAbstract(isAbstract);
+ }
+ cache.cache(artifactType);
+ return artifactType;
+ }
+}

Back to the top