Remove obsolute methods
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@950295 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb22ec3f14
commit
5921316d0d
4 changed files with 0 additions and 55 deletions
|
@ -46,16 +46,6 @@ public interface ScopedImplementationProvider extends ImplementationProvider {
|
||||||
*/
|
*/
|
||||||
boolean isEagerInit();
|
boolean isEagerInit();
|
||||||
|
|
||||||
/**
|
|
||||||
* @return the maxAge
|
|
||||||
*/
|
|
||||||
long getMaxAge();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return the maxIdleTime
|
|
||||||
*/
|
|
||||||
long getMaxIdleTime();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a wrapper for the component instance for the scope management
|
* Create a wrapper for the component instance for the scope management
|
||||||
*
|
*
|
||||||
|
|
|
@ -166,11 +166,4 @@ public class JavaImplementationProvider implements ScopedImplementationProvider
|
||||||
return implementation.isEagerInit();
|
return implementation.isEagerInit();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getMaxAge() {
|
|
||||||
return implementation.getMaxAge();
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getMaxIdleTime() {
|
|
||||||
return implementation.getMaxIdleTime();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -161,24 +161,4 @@ public interface JavaImplementation extends BaseJavaImplementation {
|
||||||
*/
|
*/
|
||||||
void setJavaScope(JavaScopeImpl scope);
|
void setJavaScope(JavaScopeImpl scope);
|
||||||
|
|
||||||
/**
|
|
||||||
* @return the maxAge
|
|
||||||
*/
|
|
||||||
long getMaxAge();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param maxAge the maxAge to set
|
|
||||||
*/
|
|
||||||
void setMaxAge(long maxAge);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return the maxIdleTime
|
|
||||||
*/
|
|
||||||
long getMaxIdleTime();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param maxIdleTime the maxIdleTime to set
|
|
||||||
*/
|
|
||||||
void setMaxIdleTime(long maxIdleTime);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,8 +51,6 @@ public class JavaImplementationImpl extends BaseJavaImplementationImpl implement
|
||||||
private boolean eagerInit;
|
private boolean eagerInit;
|
||||||
private boolean allowsPassByReference;
|
private boolean allowsPassByReference;
|
||||||
private List<Method> allowsPassByReferenceMethods = new ArrayList<Method>();
|
private List<Method> allowsPassByReferenceMethods = new ArrayList<Method>();
|
||||||
private long maxAge = -1;
|
|
||||||
private long maxIdleTime = -1;
|
|
||||||
private JavaScopeImpl scope = JavaScopeImpl.STATELESS;
|
private JavaScopeImpl scope = JavaScopeImpl.STATELESS;
|
||||||
|
|
||||||
protected JavaImplementationImpl() {
|
protected JavaImplementationImpl() {
|
||||||
|
@ -143,20 +141,4 @@ public class JavaImplementationImpl extends BaseJavaImplementationImpl implement
|
||||||
this.scope = scope;
|
this.scope = scope;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getMaxAge() {
|
|
||||||
return maxAge;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxAge(long maxAge) {
|
|
||||||
this.maxAge = maxAge;
|
|
||||||
}
|
|
||||||
|
|
||||||
public long getMaxIdleTime() {
|
|
||||||
return maxIdleTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaxIdleTime(long maxIdleTime) {
|
|
||||||
this.maxIdleTime = maxIdleTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue