Subversion Repositories SmartDukaan

Rev

Rev 5348 | Rev 5791 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5348 Rev 5407
Line 992... Line 992...
992
            log.error("Error while denying DOA", e);
992
            log.error("Error while denying DOA", e);
993
            return EXCEPTION;
993
            return EXCEPTION;
994
        }
994
        }
995
        return edit();
995
        return edit();
996
    }
996
    }
-
 
997
    
-
 
998
    public double getCustomerTrustLevel(long userId) {
-
 
999
    	try {
-
 
1000
			userContextServiceClient = new UserClient().getClient();
-
 
1001
			return userContextServiceClient.getTrustLevel(userId);
-
 
1002
		} catch (TException e) {
-
 
1003
			log.info("Exception while getting trustLevel for " +
-
 
1004
					"userId " + userId);
-
 
1005
		}
-
 
1006
		return 0;
-
 
1007
    }
997
 
1008
 
998
    public EscalationMatrix[] getEscalationMatrix () {
1009
    public EscalationMatrix[] getEscalationMatrix () {
999
        return CRMConstants.EscalationMatrix.values();
1010
        return CRMConstants.EscalationMatrix.values();
1000
    }
1011
    }
1001
 
1012