first import

This commit is contained in:
lucio.lelii 2020-12-03 14:43:19 +01:00
commit 467ed38a3a
17 changed files with 252 additions and 0 deletions

39
.classpath Normal file
View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>

36
.project Normal file
View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>context-manager-model</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.5

View File

@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="context-manager-model">
<wb-resource deploy-path="/" source-path="/src/main/java"/>
<wb-resource deploy-path="/" source-path="/src/main/resources"/>
</wb-module>
</project-modules>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<installed facet="java" version="1.5"/>
<installed facet="jst.utility" version="1.0"/>
</faceted-project>

View File

@ -0,0 +1,2 @@
disabled=06target
eclipse.preferences.version=1

26
pom.xml Normal file
View File

@ -0,0 +1,26 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.vremanagement</groupId>
<artifactId>context-manager-model</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Context Manager Model</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
<version>2.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.resources</groupId>
<artifactId>common-gcore-resources</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,21 @@
package org.gcube.vremanagement.contextmanager.model.collectors;
import java.util.List;
import org.gcube.common.resources.gcore.Resource;
public interface BackendConnector {
Resource find(String resourceId);
String createContext(String contextName, String parentContextId, List<String> resourceIds);
boolean removeContext(String contextId);
boolean addResourceToContext(String contextId, Resource resource);
boolean removeResourceFromContext(String contextId, Resource resource);
boolean updateResource(Resource resource);
}

View File

@ -0,0 +1,22 @@
package org.gcube.vremanagement.contextmanager.model.exceptions;
public class EntityNotFoundException extends Exception {
/**
*
*/
private static final long serialVersionUID = -1176276548412124027L;
public EntityNotFoundException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public EntityNotFoundException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
}

View File

@ -0,0 +1,25 @@
package org.gcube.vremanagement.contextmanager.model.exceptions;
public class InvalidContextException extends Exception {
/**
*
*/
private static final long serialVersionUID = -5837397038445859796L;
public InvalidContextException() {
super();
// TODO Auto-generated constructor stub
}
public InvalidContextException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public InvalidContextException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
}

View File

@ -0,0 +1,5 @@
package org.gcube.vremanagement.contextmanager.model.operators;
public class OperationParameters {
}

View File

@ -0,0 +1,11 @@
package org.gcube.vremanagement.contextmanager.model.operators.context;
import org.gcube.vremanagement.contextmanager.model.operators.OperationParameters;
public abstract interface ContextOperator {
public void onCreateContext(String token, String context, OperationParameters parameters);
public void onDisposeContext(String token, String context, OperationParameters parameters);
}

View File

@ -0,0 +1,5 @@
package org.gcube.vremanagement.contextmanager.model.operators.context;
public interface CustomContextOperator extends ContextOperator {
}

View File

@ -0,0 +1,5 @@
package org.gcube.vremanagement.contextmanager.model.operators.context;
public interface MandatoryContextOperator extends ContextOperator {
}

View File

@ -0,0 +1,11 @@
package org.gcube.vremanagement.contextmanager.model.operators.resource;
import org.gcube.vremanagement.contextmanager.model.operators.OperationParameters;
public interface ResourceOperator {
public void onResourceAdd(String token, String context, OperationParameters parameters);
public void onResourceRemove(String token, String context, OperationParameters parameters);
}

View File

@ -0,0 +1,18 @@
package org.gcube.vremanagement.contextmanager.model.types;
import java.util.List;
public class ContextList {
private List<String> contexts;
public ContextList(List<String> contexts) {
super();
this.contexts = contexts;
}
public List<String> getContexts() {
return contexts;
}
}