}
public void setEndpoint(String endpoint, String authType, String key, String secret) throws SystemException {
lfTincanLrsEndpointPersistence.removeAll();
LFTincanLrsEndpoint newEntity = lfTincanLrsEndpointPersistence.create(counterLocalService.increment(LFTincanLrsEndpoint.class.getName()));
newEntity.setEndpoint(endpoint);
newEntity.setAuthType(authType);
newEntity.setKey(key);
newEntity.setSecret(secret);
lfTincanLrsEndpointPersistence.update(newEntity, true);
}